
Open
Posted
•
Ends in 1 day
Paid on delivery
Ich plane einen schlanken One-Pager-Seite zur Adressprüfung mit Adressprüfungsalgorythmus, über den meine Kunden eigene Adresslisten hochladen, prüfen und anschließend – nach den ersten 30 kostenlosen Datensätzen – pro validiertem Eintrag bezahlen können. Kernpunkte des Auftrags 1. Upload-Strecke • Akzeptierte Formate: CSV, reine Textdateien oder Excel, typischer Umfang 1 000 – 5 000 Zeilen pro Datei. (können aber auch mehr sein) manuelle Möglichkeit zur Dateiprüfung sollte gegeben sein, z.B. bei Dateien mit mehreren Millionen Datensätzen • Fortschrittsanzeige während des Uploads und der Prüfung • festgelegter Datenaufbau sollte vorgegeben werden. Eine externe ID in der Datei sollte möglich sein. 2. Prüf-Algorithmus • Postleitzahl -Überprüfung • Straßenname -Überprüfung • Ortsname-Validierung • Hausnummerncheck (wenn eine Hausnummer vorhanden ist) Die Routine soll pro Datensatz ein eindeutiges Prüfergebnis (ok / Fehlercode) liefern und idealerweise ein korrigiertes Feld ausgeben, falls klar erkannt. 3. Abrechnung & Payment • Die ersten 30 Datensätze bleiben kostenfrei. • Danach automatische Preisberechnung anhand der Anzahl geprüfter Einträge. • Zahlung via PayPal (Einmalzahlung, keine Abo-Lösung). 4. Ergebnis-Bereitstellung • Download einer geprüften Datei im Ursprungsformat, ergänzt um Spalten für Status und eventuelle Korrekturvorschläge. • Kurzer PDF-Report mit Zusammenfassung (Anzahl geprüft, Fehlerverteilung). 5. Administration & Sicherheit • Einfaches Backend oder Konfig-Datei, um Preise oder Freikontingent anzupassen. • DSGVO-konforme Verarbeitung: verschlüsselte Übertragung, automatische Löschung der Dateien nach Abschluss. Lieferumfang – Voll funktionsfähiger One-Pager (HTML/CSS/JS oder Framework Ihrer Wahl) inkl. responsivem Design. – Server-Side Logik für Upload, Prüfung und Payment – Quellcode, Installationshinweise und kurze technische Dokumentation. - Inklusive lauffähiger Installation auf einem Server (Windows) Ich freue mich auf Vorschläge, wie Sie das Regelwerk effizient abbilden und die Zahlung reibungslos integrieren können. Bitte nennen Sie relevante Referenzen oder Libraries, die Sie einsetzen möchten. Details: Um eine MySQL-Datenbank als "Source of Truth" zu nutzen, müssen wir den JavaScript-Code (Node.js) mit einem Datenbank-Treiber wie mysql2 verbinden. Die Datengrundlage zur Prüfung liegt in einer MySQL Datenbank. Der Algorithmus muss hierbei besonders auf den Hausnummernbereich achten, da diese oft als Intervalle (z. B. 1–15 oder nur ungerade Nummern) gespeichert sind.1. Die Datenbank-Struktur (Beispiel) Damit die Abfrage effizient ist, sollte deine Tabelle etwa so aufgebaut sein: id; zip; city; street; house_start; house_end; type; Beispiel: 110115; Berlin; Berliner Straße;150;998;e; 220354; Hamburg;Neuer Wall;;;;n; Vorschlag für den Prozess der Adressprüfung: Implementierung in Node.js mit MySQL Wir nutzen mysql2/promise für eine saubere Asynchronität und das Paket levenshtein-edit-distance für die Tippfehler-Toleranz. JavaScriptconst mysql = require('mysql2/promise'); const levenshtein = require('levenshtein-edit-distance'); /** * Konfiguration der Datenbank-Verbindung */ const dbConfig = { host: 'localhost', user: 'root', password: 'your_password', database: 'address_db' }; async function validateAddress(input) { const connection = await [login to view URL](dbConfig); try { // 1. Suche nach PLZ und Ort (Exakte Suche zur Performance-Optimierung) // Wir holen alle Straßen für diese PLZ, um sie später per Fuzzy-Match zu prüfen const [rows] = await [login to view URL]( 'SELECT * FROM addresses WHERE zip = ?', [[login to view URL]()] ); if ([login to view URL] === 0) { return { valid: false, message: "PLZ nicht im System gefunden." }; } let bestMatch = null; let minDistance = 3; // Max. 3 Zeichen Abweichung erlaubt // 2. Fuzzy Matching für die Straße for (const entry of rows) { const distance = levenshtein([login to view URL](), [login to view URL]()); if (distance < minDistance) { minDistance = distance; bestMatch = entry; } } if (!bestMatch) { return { valid: false, message: "Straße nicht gefunden oder Schreibweise zu ungenau." }; } // 3. Hausnummern-Check (Bereichsprüfung) const hn = parseInt([login to view URL]); let hnValid = true; if (bestMatch.house_start && bestMatch.house_end) { const inRange = (hn >= bestMatch.house_start && hn <= bestMatch.house_end); // Optional: Prüfung auf gerade/ungerade (Parität) const parityMatch = [login to view URL] === 'all' || ([login to view URL] === 'even' && hn % 2 === 0) || ([login to view URL] === 'odd' && hn % 2 !== 0); if (!inRange || !parityMatch) { hnValid = false; } } return { valid: hnValid, status: hnValid ? "VALID" : "INVALID_HOUSE_NUMBER", correctedAddress: { street: [login to view URL], zip: [login to view URL], city: [login to view URL], houseNumber: [login to view URL] }, distance: minDistance }; } finally { await [login to view URL](); } } // --- BEISPIEL AUFRUF --- const testAddress = { street: "Berliner Strase", // Tippfehler zip: "10115", houseNumber: "22" }; validateAddress(testAddress).then([login to view URL]).catch([login to view URL]); Performance: Wir filtern zuerst nach der zip (Index in der DB setzen!), damit wir nicht tausende Straßen per JavaScript vergleichen müssen, sondern nur die ca. 20-100 Straßen eines Postleitzahlgebiets. Flexibilität: Der levenshtein-Algorithmus erkennt, dass "Berliner Strase" eigentlich "Berliner Straße" sein soll. Hausnummern-Logik: Durch die Prüfung von house_start, house_end und dem Typ (even (e)/odd(o)/neutral (n)) werden Fehler zu den Hausnummern abgefangen, wenn jemand eine Hausnummer 99 in einer Straße angibt, die nur bis 50 geht. Wichtige Datenbank-Optimierung: Damit die Abfrage bei vielen Daten schnell bleibt, sollte in unserer Datenbank noch Indizes auf die Spalten zip und city gelegt werden SQLCREATE INDEX idx_zip ON addresses(zip); Zudem sollte die Anfrage erweitert werden, dass in der Datenbank auch nach ähnlich klingenden Straßen und Orten gesucht werden kann. (Soundex)
Project ID: 40375942
57 proposals
Open for bidding
Remote project
Active 21 hours ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
57 freelancers are bidding on average €144 EUR for this job

I understand that you are looking for a slim one-page site for address verification with an algorithm, allowing customers to upload address lists, validate them, and pay per validated entry. The core features include CSV, text, or Excel file uploads, progress tracking, predefined data structure, and unique validation results per entry. I propose to implement the required features using JavaScript and MySQL, focusing on efficient address validation and payment integration. I am confident in delivering a fully functional solution that meets your needs. Please consider my experience and expertise in this area, as showcased in my 15-year-old profile. Looking forward to discussing the project details with you.
€123 EUR in 7 days
8.6
8.6

Interesting project, Ich werde den One-Pager mit Node.js, MySQL und PayPal-Integration liefern — Upload-Strecke, Prüfalgorithmus mit Levenshtein und Soundex, sowie den PDF-Report. Für die Hausnummern-Intervallprüfung werde ich einen zusammengesetzten Index auf (zip, street) setzen und die Paritätslogik (gerade/ungerade/neutral) direkt in der SQL-Query abbilden — das spart den JS-seitigen Loop bei großen PLZ-Gebieten erheblich. Questions: 1) Soll die manuelle Prüfung bei Millionen-Dateien eine Vorschau der ersten Zeilen mit Spalten-Mapping bieten? 2) Welche PayPal-Variante bevorzugen Sie — Checkout SDK oder klassische REST-API? Looking forward to discussing further. Best regards, Kamran
€232 EUR in 10 days
8.4
8.4

Hi there, Asad - I can deliver a lean, secure one-pager for Adressprüfung with a solid, scalable workflow: upload, address validation, and post-check billing, all while keeping GDPR-compliant data handling at the core. I’ve built Node.js backends with MySQL using mysql2/promise, implemented robust file uploads (CSV, TXT, Excel), progress indicators, and server-side validation that leverages indexed queries for fast lookups (zip, city, street) plus fuzzy matching for user-entered street names. The house-number checks will respect ranges and parity (even/odd) as described, and you’ll receive a corrected field when a clear improvement is detected. The output will include a re-downloadable corrected file in the original format plus a concise PDF summary of results. Payment via PayPal as a one-time charge after the first 30 free records is integrated with a clean, testable flow. I’ll also provide a simple admin/config file to adjust pricing and the free quota, and thorough installation notes for Windows-based hosting. I’ve shared an initial estimate based on your description, and once we go over a few technical or functional details, I’ll confirm the exact cost and delivery schedule. - How do you want to handle CSV with millions of rows during manual review—prefer streaming or batch processing? - Which libraries for PDF reporting do you prefer, and do you want per-record corrections highlighted? - Do you have preferred PayPal integration flow (SDK version, currency, test mode)
€75 EUR in 3 days
8.2
8.2

I have over 10+ years of experience Address verification algorithm & one-pager. Please feel free to further discuss the requirements and timeline for the project. I'd be happy to assist you. I am ready to start right now. You can visit my Profile https://www.freelancer.com/u/HiraMahmood4072 Thank you
€100 EUR in 1 day
6.3
6.3

Hello there, I’ve read your Adressprüfung Onepager concept and I’m confident I can deliver a clean, fast, single-developer solution that fits your budget. I’ll build a slim, responsive one-pager (HTML/CSS/JS or a framework of your choice) with a Node.js backend that handles upload (CSV, TXT, Excel), shows progress, and processes up to the first 30 records for free. After that, it will bill per validated entry via PayPal, as a one-off payment, not an ongoing subscription. I’ll implement the address-check routine using your MySQL dataset: exact zip/city/street lookups, a fuzzy street matching layer, and a robust house-number validation (including ranges and parity). The output includes a corrected field when confidently determinable and a per-record status code, plus a downloadable corrected file in the original format and a short PDF summary. Security and admin are baked in: an easy config (or small backend) to adjust prices and free quota, encrypted transfer and automatic deletion after processing, and DS-GVO compliant handling. I’ll deliver with installation docs and a ready-to-run server setup (Windows). Best regards, Billy Bryan
€250 EUR in 3 days
5.2
5.2

Hi there, I am a Data Scientist and am a professional responsible for extracting actionable insights and knowledge from large volumes of data. As an experienced Data Scientist in the field of machine learning, I am highly proficient in Python and have a deep understanding of algorithms and data structures. My skills make me a great fit for your project as I can guide you through comprehensive coverage of data structures and algorithms while providing patient and thorough explanations. I have over 12-plus years of experience with Python Library Pandas, Karas, TensorFlow, NumPy, PyCharm, Py torch, Open CV, NLP, and others. With over a decade's worth of experience under my belt, including expertise in NLP, Neural Networks, CNNs, RNNs, LSTM, GANs just to mention a few, I can provide you not only with knowledge but also how to apply it efficiently. Partnering with me ensures you have a patient, knowledgeable and skilled tutor who is dedicated to your success in this field. My top priority is to provide a high quality of work, https://www.freelancer.com/u/GdevDataSceince Let's discuss this further via chat, and I'll start your project right now. Thanks Gdev
€140 EUR in 7 days
5.1
5.1

Hi there, I see you're looking to build a streamlined one-page site for address validation, where customers can upload lists and pay for validated entries after a free trial. With 4+ years of experience in JavaScript and data processing, I can create a solid solution that meets your needs. I would set up an easy upload process for CSV, text, and Excel files, with a progress indicator to enhance user experience. The validation algorithm would effectively check postal codes, street names, and house numbers, providing clear feedback on each entry. For the payment system, I'll ensure a smooth transition to PayPal after the free limit is reached. One question I have is: do you have specific requirements for error codes or messages that should be returned when validation fails? Best regards, Arslan Shahid
€30 EUR in 3 days
5.1
5.1

Hello, I am Vishal Maharaj, a seasoned professional with 20 years of expertise in JavaScript, MySQL, HTML, and Node.js. I have carefully reviewed the project requirements outlined for the development of a slim One-Pager site for address verification, featuring an address verification algorithm allowing customers to upload, validate, and pay for entries post the initial 30 free records. To efficiently address the project, I propose implementing the solution using Node.js connected to a MySQL database using the mysql2 driver. The algorithm will focus on verifying postal codes, street names, city names, and house numbers, providing unique validation results per entry. Additionally, I will integrate PayPal for seamless payments, ensuring GDPR-compliant data processing and secure file deletion post-completion. I look forward to discussing the project further. Please feel free to initiate a chat to delve deeper into the technical aspects and implementation details. Cheers, Vishal Maharaj
€250 EUR in 5 days
5.8
5.8

Ich kann Ihnen helfen. Um Dateien mit Millionen von Datensätzen ohne Speicherüberlastung zu verarbeiten, implementiere ich eine Stream-basierte Logik, die die Daten häppchenweise verarbeitet, anstatt die gesamte Datei in den RAM zu laden. Da Levenshtein allein bei deutschen Straßennamen oft nicht ausreicht, ergänze ich die Suche um die „Kölner Phonetik“, um klangähnliche Fehler besser zu korrigieren. Um die Performance bei großen Listen zu garantieren, optimiere ich den MySQL-Zugriff durch Batch-Abfragen (Sammelabfragen), statt jede Zeile einzeln in einer Schleife zu prüfen. Für den stabilen Betrieb unter Windows setze ich die Anwendung so auf, dass sie auch bei langen Rechenprozessen reaktionsfähig bleibt. Die PayPal-Integration sichere ich über Webhooks ab, damit der Download-Link erst nach finaler Zahlungsbestätigung generiert wird, während ein automatisierter Cron-Job die DSGVO-konforme Löschung der Arbeitsdateien übernimmt.
€30 EUR in 7 days
4.7
4.7

Hi, There is strong interest in the project and full support can be provided to ensure its successful progress. I clearly understand the core requirements of your project. I will approach the work with attention to detail and strong communication. The final delivery will reflect your vision and desired results. With 6 years of experience as a senior software engineer, I’ve worked on a wide range of projects and helped solve many technical challenges. I’m confident I can handle your project and deliver strong results through clear communication and a smooth process. If anything about the requirements isn’t completely clear yet, we can discuss it together and refine the details as we move forward. If you want the best possible outcome, I would be grateful to be considered for this project. I always focus on delivering quality work on time so that the solutions I build help grow your business rather than slow it down. I’d like to clarify your requirements and confirm my understanding through a quick conversation. Once everything is clear, I can get started right away and keep communication smooth, especially with the time zone difference. I’d also appreciate it if you could take a moment to review my profile and feedback. I’m confident I can deliver results that exceed your expectations, and I’m fully ready to get started. best regards, Dax M
€130 EUR in 1 day
4.3
4.3

⚠️ If you're not happy, you don’t pay. ⚠️ Hi there, thank you for sharing the detailed project brief. I can build your address verification One-Pager with an address validation algorithm using Node.js and MySQL, ensuring a seamless payment integration with PayPal. I will deliver: • Custom upload process for CSV, text, or Excel files • Robust address validation algorithm for zip codes, street names, and house numbers • Flexible payment system with automatic pricing • Detailed result presentation and secure data processing You will also receive: • Guide for backend configuration • Encrypted data transmission and automatic file deletion I am confident I can execute your vision efficiently. Looking forward to discussing further steps. Best regards, Chirag.
€200 EUR in 7 days
4.4
4.4

Die meisten Skripte stürzen bei Millionen Datensätzen wegen RAM-Überlastung ab. Ihr Projekt erfordert eine High-Performance-Engine für komplexe Hausnummern-Logik und Paritätsprüfungen. Als Software-Architekt implementiere ich Ihre Lösung mit Fokus auf Effizienz: Optimierte Engine: Nutzung von Node.js-Streams für Datei-Uploads. Dies garantiert Stabilität auf Windows-Servern ohne den Prozess zu blockieren. Intelligentes Matching: Levenshtein-Distanz kombiniert mit SQL-Indizierung (PLZ/City) und Soundex für Korrekturen in Millisekunden. Präzisions-Logik: Umsetzung der Hausnummern-Validierung (house_start/end, Typ: e/o/n) zur Vermeidung von Fehlern. PayPal & DSGVO: Sicherer Checkout und verschlüsselte Datenlöschung. Ich liefere ein schlüsselfertiges System inklusive Dokumentation und sauberem Code. Wie groß ist Ihr aktueller Referenz-Datensatz in der MySQL-Datenbank? Sebastián Calvo | Wave Studio Design
€247 EUR in 7 days
4.5
4.5

As a seasoned programmer highly experienced in JavaScript, MySQL, and data analysis with Excel, I can deliver the seamless address verification algorithm you seek. Leveraging on my skills in mysql2/promise and the levenshtein-edit-distance package for error tolerance, I will ensure the algorithm effectively crosschecks your addresses by increasing the accuracy and performance of zip code and location searches. In addition, being adept at handling potentially large datasets during file uploads, I'll provide a convenient manual file verification option for even millions of data points. My competency extends beyond just the code. Given your data is stored in a MySQL database, I understand the importance of properly aligning your table structure with the algorithm's needs to facilitate efficient queries. Thus, I'll ensure your database design effectively handles nuances like 'house_start' and 'house_end' intervals. Additionally, my knack for DSGVO-compliant processing ensures all customer information is encrypted during transmission and promptly deleted after use.
€150 EUR in 3 days
4.5
4.5

Hi, Dear I’m confident I can build your complete address verification platform with a scalable MySQL-backed validation engine, secure file processing pipeline, and integrated PayPal billing system. With strong experience in Node.js, MySQL optimization, and high-volume data processing systems, I’ll ensure accuracy, performance, and clean extensibility for future rule expansions. I will start by designing the system architecture, including the upload pipeline, validation engine (PLZ, street, city, house number logic), and database indexing strategy optimized for large datasets (100k–millions of records). Next, I will implement the Node.js backend using mysql2/promise, build the address validation algorithm (including fuzzy matching via Levenshtein + optional Soundex support), integrate batch processing for large files, and implement streaming uploads with progress tracking. Finally, I will add PayPal integration (free 30-record tier + per-record billing), export engine (CSV/Excel + PDF summary report), admin configuration panel (pricing, quotas, deletion rules), and GDPR-safe file lifecycle management (auto-delete + encryption handling). Let’s align on your expected peak volume and hosting environment (Windows server specs) so I can tune the processing pipeline for maximum stability and speed. Looking forward to collaborating. Regards, Sean
€350 EUR in 7 days
4.2
4.2

As a experienced freelancer in Data Entry and JavaScript, I see a great fit between your project needs and my skillset. I have extensive experience with data processing, including using csv and Excel files, which aligns perfectly with your uploading and processing requirements. Moreover, the fact that you are using MySQL as your source of truth lines up well with my prior experience. I am fluent in both Node.js and mysql2/promise, essential elements for connecting JavaScript code to a mySQL database and managing asynchronous tasks efficiently. At last but not least, aligning my process with your suggestion - implementing on Node.js with MySQL and utilizing MySQL2 promise for easy async-await functionality - will help ensure uninterrupted flow through the different stages of the project. The delivery package you can expect from me would contain all you need to deploy a fully functional one-pager drenched in responsive design, accompanied by a clean server-side logic for upload, validation and payments. So, let's work together and create something powerful leveraging efficiencies of technology!
€100 EUR in 3 days
4.2
4.2

Hi there, I am A.R.M. MASUD, with a strong Data Science background.I am an experienced Machine Learning developer with expertise in designing, training, and deploying intelligent models that deliver real-world value. My background includes supervised and unsupervised learning, deep learning with TensorFlow and PyTorch, and data preprocessing using Pandas, NumPy, and Scikit-learn. I specialize in developing classification, regression, clustering, and predictive models, as well as computer vision and NLP solutions. I follow best practices in feature engineering, hyperparameter tuning, and model evaluation to ensure high accuracy and scalability. My focus is building end-to-end ML pipelines that are efficient, reliable, and tailored to your project’s requirements for maximum impact. https://www.freelancer.com/u/MZITSERVICES I appreciate the opportunity to submit this proposal and am excited about the possibility of working with you to bring your project to life. Thanks A.R.M MASUD
€140 EUR in 7 days
4.2
4.2

Dear Client, Greetings!! I’d love to help you build this address validation One Pager with a clean, scalable, and efficient approach. I will develop a streamlined system where users can upload CSV, TXT, or Excel files, with real time progress tracking and structured validation checks. I’ll include corrected address suggestions along with a confidence score for each entry. For the business logic, I will integrate a seamless flow, followed by automatic pricing and secure PayPal onetime payment before download. Users will receive validated files in the original format with added status and correction columns, along with a summarized PDF report. I’ll ensure performance even for large datasets through streaming and batch processing, and deliver a complete, responsive One Pager with documentation and deployment on your Windows server. I bring 7+ years of experience in backend systems, machine learning, data processing, , and intelligent validation workflows, and I’m confident in delivering a fast, reliable, and user friendly solution tailored to your needs. Looking forward to collaborating with you! Regards, Rojan U
€120 EUR in 7 days
3.3
3.3

Hi, Ich werde eine effiziente One-Pager-Lösung zur Adressprüfung entwickeln, die es Ihren Kunden ermöglicht, Adresslisten hochzuladen, zu validieren und nach den ersten 30 kostenlosen Datensätzen pro Eintrag zu bezahlen. Mit Node.js und einer MySQL-Datenbank werde ich einen leistungsfähigen Prüf-Algorithmus implementieren, der alle geforderten Validierungen durchführt: Postleitzahl, Straßenname, Ortsname und Hausnummer. Ich habe umfassende Erfahrung in der Arbeit mit MySQL und Node.js, einschließlich der Implementierung von Fuzzy-Matching-Algorithmen wie Levenshtein zur Fehlerkorrektur. Die sichere Verarbeitung nach DSGVO-Vorgaben ist für mich selbstverständlich. Ich werde zudem ein benutzerfreundliches Backend bereitstellen, um Preisanpassungen und Freikontingente zu ermöglichen. Könnten Sie mir mehr über Ihre spezifischen Anforderungen an die Datenstruktur und die gewünschten Fehlercodes mitteilen? Ich bin bereit, sofort zu starten und freue mich auf die Zusammenarbeit. Vielen Dank.
€156.50 EUR in 7 days
3.0
3.0

Hello, I checked your project "Adressprüfung Algorithmus & Onepager" and I already have a clear idea how to deliver this efficiently. I have solid experience in JavaScript, Data Processing, Data Entry, Excel, MySQL, HTML, Node.js, German Translator, and I’ve worked on similar projects where I delivered high-quality, scalable, and clean solutions. Why choose me? • Strong expertise in JavaScript, Data Processing, Data Entry, Excel, MySQL, HTML, Node.js, German Translator • Clean, optimized, and scalable code • Fast communication and daily updates • 100% focus on delivering results, not just code If needed, I can also suggest improvements to make your project even better. Let’s connect I’m ready to start right away. Best regards, Umer
€40 EUR in 1 day
2.9
2.9

Hi, I've thoroughly reviewed your project details regarding the one-page address validation system, and I am writing this bid by myself, confident in delivering a robust, scalable solution tailored to your needs. With extensive experience in Node.js, MySQL, and frontend development, I will implement your described algorithm using mysql2 and levenshtein for fuzzy matching. The upload and validation flow will be seamless, including progress indicators, file format support, and GDPR-compliant file handling. I plan to integrate PayPal for smooth transactional processes supporting your pricing model and implement administrative controls for pricing and free quotas. Expect a responsive design and full backend-to-frontend functionality delivered promptly. Let's discuss your server environment for deployment and confirm the preferred frameworks for frontend development. Could you please clarify if you prefer a specific frontend framework for the one-pager or is plain HTML/CSS/JS acceptable? Also, do you have existing PayPal merchant credentials for payment integration? Best regards,
€30 EUR in 5 days
2.2
2.2

Aichelberg, Germany
Payment method verified
Member since Mar 7, 2018
€250-750 EUR
€30-250 EUR
€30-250 EUR
€30-250 EUR
€250-750 EUR
₹750-1250 INR / hour
€8-30 EUR
$30-250 USD
$250-750 USD
$250-750 USD
$30-250 USD
$30-250 USD
₹1500-12500 INR
$188.16 USD
₹1500-12500 INR
₹1500-12500 INR
$30-250 USD
$250-750 NZD
₹12500-37500 INR
₹75000-150000 INR
₹12500-37500 INR
₹600-1500 INR
£10-25 GBP
$10-30 USD
$30-250 USD