partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 187ba0b21cd485f929e525e9d304e66282dd2e13
parent 786626a00b374e53d8d02f3f0b2e364aec94f086
Author: Felicitus <felicitus@felicitus.org>
Date:   Wed,  8 Jul 2015 01:52:35 +0200

Removed obsolete code

Diffstat:
Dtesting/PartTest.php | 45---------------------------------------------
Dtesting/README | 2--
Dtesting/Service.php | 59-----------------------------------------------------------
Dtesting/SetupDatabase.php | 96-------------------------------------------------------------------------------
Dtesting/genman.php | 35-----------------------------------
Dtesting/manufacturers.html | 355-------------------------------------------------------------------------------
Dtesting/setup.sql | 2481-------------------------------------------------------------------------------
Dtests/Auth/UserTest.php | 27---------------------------
Dtests/Logger/LoggerTest.php | 101-------------------------------------------------------------------------------
Dtests/Part/PartServiceTest.php | 140-------------------------------------------------------------------------------
Dtests/Service/ServiceTest.php | 20--------------------
Dtests/User/UserTest.php | 152-------------------------------------------------------------------------------
Dtests/UserPreference/UserPreferenceTest.php | 176-------------------------------------------------------------------------------
Dtests/Util/ConfigurationTest.php | 22----------------------
Dtests/bootstrap.php | 50--------------------------------------------------
Dtests/js/index.html | 23-----------------------
Dtests/js/tests/ExtJS-4.1.1-RC2-dockedToolbarOverflowBug.html | 42------------------------------------------
17 files changed, 0 insertions(+), 3826 deletions(-)

diff --git a/testing/PartTest.php b/testing/PartTest.php @@ -1,44 +0,0 @@ -<?php -namespace de\RaumZeitLabor\PartKeepr\Tests; -declare(encoding = 'UTF-8'); - -include("../src/backend/PartKeepr/PartKeepr.php"); - -use de\RaumZeitLabor\PartKeepr\Auth\User; -use de\RaumZeitLabor\PartKeepr\Footprint\Footprint; -use de\RaumZeitLabor\PartKeepr\Footprint\FootprintManager; -use de\RaumZeitLabor\PartKeepr\Category\Category; -use de\RaumZeitLabor\PartKeepr\Category\CategoryManager; -use de\RaumZeitLabor\PartKeepr\PartKeepr; -use de\RaumZeitLabor\PartKeepr\Part\Part; -use de\RaumZeitLabor\PartKeepr\Part\PartAttachment; -use de\RaumZeitLabor\PartKeepr\PartUnit\PartUnitManager; -use Doctrine\DBAL\Migrations\Migration, - Doctrine\DBAL\Migrations\Configuration\YamlConfiguration; - -PartKeepr::initialize(); - - -$aPartResults[] = array(); - -$dql = "SELECT pp.quantity, p.id FROM "; -$dql .= "de\RaumZeitLabor\PartKeepr\Project\ProjectPart pp JOIN pp.part p WHERE pp.project = :project"; - -$query = PartKeepr::getEM()->createQuery($dql); -$query->setParameter("project", 1); - -foreach ($query->getArrayResult() as $result) { - $part = Part::loadById($result["id"]); - - if (array_key_exists($result["id"], $aPartResults)) { - $aPartResults[$result["id"]]["quantity"] += $result["quantity"]; - } else { - $aPartResults[$result["id"]] = array( - "quantity" => $result["quantity"], - "part" => array("response" => array("totalCount" => 1, "data" => $part->serialize())), - "storageLocation_name" => $part->getStorageLocation()->getName() - ); - } -} - -print_r($aPartResults);- \ No newline at end of file diff --git a/testing/README b/testing/README @@ -1 +0,0 @@ -This directory contains test scripts and stuff you quickly hack together.- \ No newline at end of file diff --git a/testing/Service.php b/testing/Service.php @@ -1,58 +0,0 @@ -<?php -namespace de\RaumZeitLabor\PartKeepr\Tests; -declare(encoding = 'UTF-8'); - -include("../src/backend/PartKeepr/PartKeepr.php"); - -use de\RaumZeitLabor\PartKeepr\Auth\User; -use de\RaumZeitLabor\PartKeepr\PartKeepr; -use de\RaumZeitLabor\PartKeepr\Util\SerializableException; -use de\RaumZeitLabor\PartKeepr\Auth\UserManager; -use de\RaumZeitLabor\PartKeepr\Session\SessionManager; -use de\RaumZeitLabor\PartKeepr\Service\ServiceManager; - -PartKeepr::initialize(); - -/*class User { - public $username; - public $password; -}*/ - -//class Service { - -//} -/*class UserService extends Service { - - public function createUser (User $user) { - return new SoapVar($user, SOAP_ENC_OBJECT, "", "http://www.w3.org/2001/XMLSchema", "", "http://www.w3.org/2001/XMLSchema"); - } -}*/ - -/*$server = new SoapServer("test.wsdl", array("cache_wsdl" => WSDL_CACHE_NONE, "classmap" => array("User" => "User"))); -$server->setClass("UserService"); -$server->handle();*/ - - - - - - - - -$callStruct = array( - "service" => "de.RaumZeitLabor.PartKeepr.Auth.AuthManagerService", - "call" => "login", - "parameters" => array( - "username" => "2test", - "password" => "098f6bcd4621d373cade4e832627b4f6" - ) -); - -ServiceManager::call($callStruct); - - - - - -PartKeepr::getEM()->flush(); -?>- \ No newline at end of file diff --git a/testing/SetupDatabase.php b/testing/SetupDatabase.php @@ -1,96 +0,0 @@ -<?php -namespace PartKeepr\Testing; - -use PartKeepr\PartKeepr, - PartKeepr\Setup\Migration\PartDB\PartDBMigration, - PartKeepr\Util\Configuration, - \PartKeepr\PartBundle\Entity\PartCategoryManager; - - -use PartKeepr\Setup\Setup; - -include("../src/backend/PartKeepr/PartKeepr.php"); - -PartKeepr::initialize(); - -$ask = true; -$migration = false; - -echo "PartKeepr Setup\n"; -echo "Use SetupDatabase.php --help for help\n\n"; - -foreach ($_SERVER["argv"] as $arg) { - switch ($arg) { - case "--yes": - $ask = false; - break; - case "--migrate": - case "--migration": - $migration = true; - break; - case "--verbose": - Setup::setVerbose(true); - break; - case "--help": - echo "Usage: SetupDatabase.php [OPTION]\n\n"; - echo "Actions performed by this script:\n"; - echo "* Creates the schema\n"; - echo "* Sets up the basic data\n"; - echo "* Imports data from database partdb (if specified)\n\n"; - echo "Please make sure to enter your database settings in the file config.php.\n"; - echo "Use the file config.php.template as template for your configuration.\n\n"; - echo "Arguments:\n"; - echo " --yes Assumes 'YES' for the security prompt. USE WITH CAUTION!\n"; - echo " --migrate Also migrates the data from the old PartDB database\n"; - echo " --verbose Outputs verbose information about the setup process\n"; - echo " --help Displays this help\n\n"; - - die; - break; - } -} - -if ($ask) { - echo "If you are sure you want to do this, type YES and hit return.\n"; - - $fp = fopen('php://stdin', 'r'); - $data = fgets($fp, 1024); - - if ($data !== "YES\n") { - echo "Aborting.\n"; - die(); - } - -} - -echo "Performing actions...\n"; - -$setup = new Setup(); -$setup->setConsole(); -$setup->runCLIChecks(); -$setup->run(); - - -if ($migration) { - if (Configuration::getOption("partkeepr.migration.partdb.hostname", false) === false || - Configuration::getOption("partkeepr.migration.partdb.username", false) === false || - Configuration::getOption("partkeepr.migration.partdb.password", false) === false || - Configuration::getOption("partkeepr.migration.partdb.dbname", false) === false) { - - echo "Error migrating from partdb: One or more configuration settings are missing.\n"; - echo "Please make sure that you define the partkeepr.migration.partdb.* keys, as shown in config.php.template\n\n"; - echo "After adjusting the keys, you can safely re-run the setup, even if you already have worked with PartKeepr.\n"; - exit; - } - mysql_connect(Configuration::getOption("partkeepr.migration.partdb.hostname"), Configuration::getOption("partkeepr.migration.partdb.username"), Configuration::getOption("partkeepr.migration.partdb.password")); - mysql_query("SET CHARACTER SET UTF8"); - mysql_query("SET NAMES UTF8"); - mysql_select_db(Configuration::getOption("partkeepr.migration.partdb.dbname")); - - $migration = new PartDBMigration(); - $migration->setConsole(); - $migration->run(); -} - -echo "All done.\n\n"; -echo "Use the user 'admin' with password 'admin' to login. Access the frontend using the `frontend` directory.\n"; diff --git a/testing/genman.php b/testing/genman.php @@ -1,35 +0,0 @@ -<?php -include("../src/backend/PartKeepr/PartKeepr.php"); - -use de\RaumZeitLabor\PartKeepr\PartKeepr; - -//include("/usr/share/php/Doctrine/Symfony/Component/Yaml/Yaml.php"); -//include("/usr/share/php/Doctrine/Symfony/Component/Yaml/Dumper.php"); -//include("/usr/share/php/Doctrine/Symfony/Component/Yaml/Inline.php"); -PartKeepr::initialize(); - -$dom = new DOMDocument(); -$dom->loadHTMLFile("manufacturers.html"); - -$list = $dom->getElementsByTagName("tr"); - -$manufacturers = array(); - -foreach ($list as $node) { - $sub = $node->firstChild; - - $img = $sub->firstChild; - - $sub = $node->lastChild; - - $manName = trim($sub->textContent); - - if (!array_key_exists($manName, $manufacturers)) { - $manufacturers[$manName] = array(); - } - - $manufacturers[$manName][] = str_replace("../tools/iclogos/", "", $img->getAttribute("src")); - -} - -file_put_contents("../data/manufacturers/manufacturers.yaml", \Symfony\Component\Yaml\Yaml::dump($manufacturers)); diff --git a/testing/manufacturers.html b/testing/manufacturers.html @@ -1,355 +0,0 @@ -<html> - <body class="body"> -  <table> -<tr><td><img src="../tools/iclogos/acer.png"></td><td>Integrated Circuit Designs</td></tr> -<tr><td><img src="../tools/iclogos/actel.png"></td><td>ACTEL</td></tr> -<tr><td><img src="../tools/iclogos/advldev.png"></td><td>ALTINC</td></tr> -<tr><td><img src="../tools/iclogos/aeroflex1.png"></td><td>Aeroflex</td></tr> -<tr><td><img src="../tools/iclogos/aeroflex2.png"></td><td>Aeroflex</td></tr> -<tr><td><img src="../tools/iclogos/agilent.png"></td><td>Agilent Technologies</td></tr> -<tr><td><img src="../tools/iclogos/akm.png"></td><td>AKM Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/alesis.png"></td><td>Alesis Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/ali1.png"></td><td>ALi (Acer Laboratories Inc.)</td></tr> -<tr><td><img src="../tools/iclogos/ali2.png"></td><td>ALi (Acer Laboratories Inc.)</td></tr> -<tr><td><img src="../tools/iclogos/allayer.png"></td><td>Allayer Communications</td></tr> -<tr><td><img src="../tools/iclogos/allegro.png"></td><td>Allegro Microsystems</td></tr> -<tr><td><img src="../tools/iclogos/alliance.png"></td><td>Alliance Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/alphaind.png"></td><td>Alpha Industries</td></tr> -<tr><td><img src="../tools/iclogos/alphamic.png"></td><td>Alpha Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/alpha.png"></td><td>Alpha Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/altera.png"></td><td>Altera</td></tr> -<tr><td><img src="../tools/iclogos/amd.png"></td><td>Advanced Micro Devices (AMD)</td></tr> -<tr><td><img src="../tools/iclogos/ami1.png"></td><td>American Microsystems, Inc. (AMI)</td></tr> -<tr><td><img src="../tools/iclogos/ami2.png"></td><td>American Microsystems, Inc. (AMI)</td></tr> -<tr><td><img src="../tools/iclogos/amic.png"></td><td>Amic Technology</td></tr> -<tr><td><img src="../tools/iclogos/ampus.png"></td><td>Amphus</td></tr> -<tr><td><img src="../tools/iclogos/anachip.png"></td><td>Anachip Corp.</td></tr> -<tr><td><img src="../tools/iclogos/anadigic.png"></td><td>ANADIGICs</td></tr> -<tr><td><img src="../tools/iclogos/analog1.png"></td><td>Analog Devices</td></tr> -<tr><td><img src="../tools/iclogos/analog.png"></td><td>Analog Devices</td></tr> -<tr><td><img src="../tools/iclogos/anasys.png"></td><td>Analog Systems</td></tr> -<tr><td><img src="../tools/iclogos/anchorch.png"></td><td>Anchor Chips</td></tr> -<tr><td><img src="../tools/iclogos/apex1.png"></td><td>Apex Microtechnology</td></tr> -<tr><td><img src="../tools/iclogos/apex.png"></td><td>Apex Microtechnology</td></tr> -<tr><td><img src="../tools/iclogos/ark.png"></td><td>ARK Logic</td></tr> -<tr><td><img src="../tools/iclogos/asd.png"></td><td>ASD</td></tr> -<tr><td><img src="../tools/iclogos/astec.png"></td><td>Astec Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/atc.png"></td><td>ATC (Analog Technologie)</td></tr> -<tr><td><img src="../tools/iclogos/atecom.png"></td><td>ATecoM</td></tr> -<tr><td><img src="../tools/iclogos/ati.png"></td><td>ATI Technologies</td></tr> -<tr><td><img src="../tools/iclogos/atmel.png"></td><td>Atmel</td></tr> -<tr><td><img src="../tools/iclogos/att.png"></td><td>AT&amp;T</td></tr> -<tr><td><img src="../tools/iclogos/audiocod.png"></td><td>AudioCodes</td></tr> -<tr><td><img src="../tools/iclogos/auravis.png"></td><td>Aura Vision</td></tr> -<tr><td><img src="../tools/iclogos/aureal.png"></td><td>Aureal</td></tr> -<tr><td><img src="../tools/iclogos/austin.png"></td><td>Austin Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/averlog.png"></td><td>Avance Logic</td></tr> -<tr><td><img src="../tools/iclogos/belfuse.png"></td><td>Bel Fuse</td></tr> -<tr><td><img src="../tools/iclogos/benchmrq.png"></td><td>Benchmarq Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/bi.png"></td><td>BI Technologies</td></tr> -<tr><td><img src="../tools/iclogos/bowmar_white.png"></td><td>Bowmar/White</td></tr> -<tr><td><img src="../tools/iclogos/bright.png"></td><td>Brightflash</td></tr> -<tr><td><img src="../tools/iclogos/broadcom.png"></td><td>Broadcom</td></tr> -<tr><td><img src="../tools/iclogos/brooktre.png"></td><td>Brooktree(now Rockwell)</td></tr> -<tr><td><img src="../tools/iclogos/burrbrwn.png"></td><td>Burr Brown</td></tr> -<tr><td><img src="../tools/iclogos/calmicro.png"></td><td>California Micro Devices</td></tr> -<tr><td><img src="../tools/iclogos/calogic.png"></td><td>Calogic</td></tr> -<tr><td><img src="../tools/iclogos/catalys1.png"></td><td>Catalyst Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/catalyst.png"></td><td>Catalyst Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/ccube.png"></td><td>Centon Electronics</td></tr> -<tr><td><img src="../tools/iclogos/ceramate1.png"></td><td>Ceramate Technical</td></tr> -<tr><td><img src="../tools/iclogos/ceramate2.png"></td><td>Ceramate Technical</td></tr> -<tr><td><img src="../tools/iclogos/cherry.png"></td><td>Cherry Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/chipcon1.png"></td><td>Chipcon AS</td></tr> -<tr><td><img src="../tools/iclogos/chipcon2.png"></td><td>Chipcon AS</td></tr> -<tr><td><img src="../tools/iclogos/chips.png"></td><td>Chips</td></tr> -<tr><td><img src="../tools/iclogos/chrontel.png"></td><td>Chrontel</td></tr> -<tr><td><img src="../tools/iclogos/cirrus.png"></td><td>Cirrus Logic</td></tr> -<tr><td><img src="../tools/iclogos/comcore.png"></td><td>ComCore Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/conexant.png"></td><td>Conexant</td></tr> -<tr><td><img src="../tools/iclogos/cosmo.png"></td><td>Cosmo Electronics</td></tr> -<tr><td><img src="../tools/iclogos/crystal.png"></td><td>Chrystal</td></tr> -<tr><td><img src="../tools/iclogos/cygnal.png"></td><td>Cygnal</td></tr> -<tr><td><img src="../tools/iclogos/cypres1.png"></td><td>Cypress Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/cypress.png"></td><td>Cypress Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/cyrix.png"></td><td>Cyrix Corporation</td></tr> -<tr><td><img src="../tools/iclogos/daewoo.png"></td><td>Daewoo Electronics Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/dallas1.png"></td><td>Dallas Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/dallas2.png"></td><td>Dallas Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/dallas3.png"></td><td>Dallas Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/davicom.png"></td><td>Davicom Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/ddd.png"></td><td>Data Delay Devices</td></tr> -<tr><td><img src="../tools/iclogos/diamond.png"></td><td>Diamond Technologies</td></tr> -<tr><td><img src="../tools/iclogos/diotec.png"></td><td>DIOTEC</td></tr> -<tr><td><img src="../tools/iclogos/dtc1.png"></td><td>DTC Data Technology</td></tr> -<tr><td><img src="../tools/iclogos/dtc2.png"></td><td>DTC Data Technology</td></tr> -<tr><td><img src="../tools/iclogos/dvdo.png"></td><td>DVDO</td></tr> -<tr><td><img src="../tools/iclogos/edi.png"></td><td>EG&amp;G</td></tr> -<tr><td><img src="../tools/iclogos/egg.png"></td><td>Elan Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/elan.png"></td><td>ELANTEC</td></tr> -<tr><td><img src="../tools/iclogos/elantec1.png"></td><td>ELANTEC</td></tr> -<tr><td><img src="../tools/iclogos/elantec.png"></td><td>ELANTEC</td></tr> -<tr><td><img src="../tools/iclogos/elec_arrays.png"></td><td>Electronic Arrays</td></tr> -<tr><td><img src="../tools/iclogos/elite[1].png"></td><td>Elite Flash Storage Technology Inc. (EFST)</td></tr> -<tr><td><img src="../tools/iclogos/emmicro.png"></td><td>EM Microelectronik - Marin</td></tr> -<tr><td><img src="../tools/iclogos/enhmemsy.png"></td><td>Enhanced Memory Systems</td></tr> -<tr><td><img src="../tools/iclogos/ensoniq.png"></td><td>Ensoniq Corp</td></tr> -<tr><td><img src="../tools/iclogos/eon.png"></td><td>EON Silicon Devices</td></tr> -<tr><td><img src="../tools/iclogos/epson1.png"></td><td>Epson</td></tr> -<tr><td><img src="../tools/iclogos/epson2.png"></td><td>Epson</td></tr> -<tr><td><img src="../tools/iclogos/ericsson.png"></td><td>Ericsson</td></tr> -<tr><td><img src="../tools/iclogos/ess.png"></td><td>ESS Technology</td></tr> -<tr><td><img src="../tools/iclogos/etc.png"></td><td>Electronic Technology</td></tr> -<tr><td><img src="../tools/iclogos/exar.png"></td><td>EXAR</td></tr> -<tr><td><img src="../tools/iclogos/excelsemi1.png"></td><td>Excel Semiconductor Inc.</td></tr> -<tr><td><img src="../tools/iclogos/excelsemi2.png"></td><td>Excel Semiconductor Inc.</td></tr> -<tr><td><img src="../tools/iclogos/exel.png"></td><td>Excel Semiconductor Inc.</td></tr> -<tr><td><img src="../tools/iclogos/fairchil.png"></td><td>Fairschild</td></tr> -<tr><td><img src="../tools/iclogos/freescale.png"></td><td>Freescale Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/fujielec.png"></td><td>Fujitsu</td></tr> -<tr><td><img src="../tools/iclogos/fujitsu2.png"></td><td>Fujitsu</td></tr> -<tr><td><img src="../tools/iclogos/galileo.png"></td><td>Galileo Technology</td></tr> -<tr><td><img src="../tools/iclogos/galvant.png"></td><td>Galvantech</td></tr> -<tr><td><img src="../tools/iclogos/gecples.png"></td><td>GEC Plessey</td></tr> -<tr><td><img src="../tools/iclogos/gennum.png"></td><td>Gennum</td></tr> -<tr><td><img src="../tools/iclogos/ge.png"></td><td>General Electric (Harris)</td></tr> -<tr><td><img src="../tools/iclogos/gi1.png"></td><td>General Instruments</td></tr> -<tr><td><img src="../tools/iclogos/gi.png"></td><td>General Instruments</td></tr> -<tr><td><img src="../tools/iclogos/glink.png"></td><td>G-Link Technology</td></tr> -<tr><td><img src="../tools/iclogos/goal1.png"></td><td>Goal Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/goal2.png"></td><td>Goal Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/goldstar1.png"></td><td>Goldstar</td></tr> -<tr><td><img src="../tools/iclogos/goldstar2.png"></td><td>Goldstar</td></tr> -<tr><td><img src="../tools/iclogos/gould.png"></td><td>Gould</td></tr> -<tr><td><img src="../tools/iclogos/greenwich.png"></td><td>Greenwich Instruments</td></tr> -<tr><td><img src="../tools/iclogos/gsemi.png"></td><td>General Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/harris1.png"></td><td>Harris Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/harris2.png"></td><td>Harris Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/hfo.png"></td><td>VEB</td></tr> -<tr><td><img src="../tools/iclogos/hitachi.png"></td><td>Hitachi Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/holtek.png"></td><td>Holtek</td></tr> -<tr><td><img src="../tools/iclogos/hp.png"></td><td>Hewlett Packard</td></tr> -<tr><td><img src="../tools/iclogos/hualon.png"></td><td>Hualon</td></tr> -<tr><td><img src="../tools/iclogos/hynix.png"></td><td>Hynix Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/hyundai2.png"></td><td>Hyundai</td></tr> -<tr><td><img src="../tools/iclogos/icdesign.png"></td><td>IC Design</td></tr> -<tr><td><img src="../tools/iclogos/icd.png"></td><td>Integrated Circuit Systems (ICS)</td></tr> -<tr><td><img src="../tools/iclogos/ichaus1.png"></td><td>IC - Haus</td></tr> -<tr><td><img src="../tools/iclogos/ichaus.png"></td><td>IC - Haus</td></tr> -<tr><td><img src="../tools/iclogos/icsi.png"></td><td>ICSI (Integrated Circuit Solution Inc.)</td></tr> -<tr><td><img src="../tools/iclogos/ics.png"></td><td>Integrated Circuit Systems (ICS)</td></tr> -<tr><td><img src="../tools/iclogos/icube.png"></td><td>I-Cube</td></tr> -<tr><td><img src="../tools/iclogos/icworks.png"></td><td>IC Works</td></tr> -<tr><td><img src="../tools/iclogos/idt1.png"></td><td>Integrated Device Technology (IDT)</td></tr> -<tr><td><img src="../tools/iclogos/idt.png"></td><td>Integrated Device Technology (IDT)</td></tr> -<tr><td><img src="../tools/iclogos/igstech.png"></td><td>IGS Technologies</td></tr> -<tr><td><img src="../tools/iclogos/impala.png"></td><td>IMPALA Linear</td></tr> -<tr><td><img src="../tools/iclogos/imp.png"></td><td>IMP</td></tr> -<tr><td><img src="../tools/iclogos/infineon.png"></td><td>Infineon</td></tr> -<tr><td><img src="../tools/iclogos/inmos.png"></td><td>INMOS</td></tr> -<tr><td><img src="../tools/iclogos/intel2.png"></td><td>Intel</td></tr> -<tr><td><img src="../tools/iclogos/intresil4.png"></td><td>Intersil</td></tr> -<tr><td><img src="../tools/iclogos/intrsil1.png"></td><td>Intersil</td></tr> -<tr><td><img src="../tools/iclogos/intrsil2.png"></td><td>Intersil</td></tr> -<tr><td><img src="../tools/iclogos/intrsil3.png"></td><td>Intersil</td></tr> -<tr><td><img src="../tools/iclogos/ir.png"></td><td>International Rectifier</td></tr> -<tr><td><img src="../tools/iclogos/isd.png"></td><td>Information Storage Devices</td></tr> -<tr><td><img src="../tools/iclogos/issi.png"></td><td>ISSI (Integrated Silicon Solution, Inc.)</td></tr> -<tr><td><img src="../tools/iclogos/ite.png"></td><td>Integrated Technology Express</td></tr> -<tr><td><img src="../tools/iclogos/itt.png"></td><td>ITT Semiconductor (Micronas Intermetall)</td></tr> -<tr><td><img src="../tools/iclogos/ixys.png"></td><td>IXYS</td></tr> -<tr><td><img src="../tools/iclogos/kec.png"></td><td>Korea Electronics (KEC)</td></tr> -<tr><td><img src="../tools/iclogos/kota.png"></td><td>Kota Microcircuits</td></tr> -<tr><td><img src="../tools/iclogos/lattice1.png"></td><td>Lattice Semiconductor Corp.</td></tr> -<tr><td><img src="../tools/iclogos/lattice2.png"></td><td>Lattice Semiconductor Corp.</td></tr> -<tr><td><img src="../tools/iclogos/lattice3.png"></td><td>Lattice Semiconductor Corp.</td></tr> -<tr><td><img src="../tools/iclogos/lds1.png"></td><td>Lansdale Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/lds.png"></td><td>Lansdale Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/levone.png"></td><td>Level One Communications</td></tr> -<tr><td><img src="../tools/iclogos/lgs1.png"></td><td>LG Semicon (Lucky Goldstar Electronic Co.)</td></tr> -<tr><td><img src="../tools/iclogos/lgs.png"></td><td>LG Semicon (Lucky Goldstar Electronic Co.)</td></tr> -<tr><td><img src="../tools/iclogos/linear.png"></td><td>Linear Technology</td></tr> -<tr><td><img src="../tools/iclogos/linfin.png"></td><td>Linfinity Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/liteon.png"></td><td>Lite-On</td></tr> -<tr><td><img src="../tools/iclogos/lucent.png"></td><td>Lucent Technologies (AT&amp;T Microelectronics)</td></tr> -<tr><td><img src="../tools/iclogos/macronix.png"></td><td>Macronix International</td></tr> -<tr><td><img src="../tools/iclogos/marvell.png"></td><td>Marvell Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/matsush1.png"></td><td>Matsushita Panasonic</td></tr> -<tr><td><img src="../tools/iclogos/matsushi.png"></td><td>Matsushita Panasonic</td></tr> -<tr><td><img src="../tools/iclogos/maxim.png"></td><td>Maxim Dallas</td></tr> -<tr><td><img src="../tools/iclogos/mediavi1.png"></td><td>Media Vision</td></tr> -<tr><td><img src="../tools/iclogos/mediavi2.png"></td><td>Media Vision</td></tr> -<tr><td><img src="../tools/iclogos/me.png"></td><td>Microchip (Arizona Michrochip Technology)</td></tr> -<tr><td><img src="../tools/iclogos/mhs2.png"></td><td>Matra MHS</td></tr> -<tr><td><img src="../tools/iclogos/mhs.png"></td><td>Matra MHS</td></tr> -<tr><td><img src="../tools/iclogos/micrel1.png"></td><td>Micrel Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/micrel2.png"></td><td>Micrel Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/microchp.png"></td><td>Microchip (Arizona Michrochip Technology)</td></tr> -<tr><td><img src="../tools/iclogos/micronas.png"></td><td>Micronas</td></tr> -<tr><td><img src="../tools/iclogos/micronix.png"></td><td>Micronix Integrated Systems</td></tr> -<tr><td><img src="../tools/iclogos/micron.png"></td><td>Micron Technology, Inc.</td></tr> -<tr><td><img src="../tools/iclogos/microsemi1.png"></td><td>Microsemi</td></tr> -<tr><td><img src="../tools/iclogos/microsemi2.png"></td><td>Microsemi</td></tr> -<tr><td><img src="../tools/iclogos/minicirc.png"></td><td>Mini-Circuits</td></tr> -<tr><td><img src="../tools/iclogos/mitel.png"></td><td>Mitel Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/mitsubis.png"></td><td>Mitsubishi Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/mlinear.png"></td><td>Micro Linear</td></tr> -<tr><td><img src="../tools/iclogos/mmi.png"></td><td>MMI (Monolithic Memories, Inc.)</td></tr> -<tr><td><img src="../tools/iclogos/mosaic.png"></td><td>Mosaic Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/moselvit.png"></td><td>Mosel Vitelic</td></tr> -<tr><td><img src="../tools/iclogos/mos.png"></td><td>MOS Technologies</td></tr> -<tr><td><img src="../tools/iclogos/mostek1.png"></td><td>Mostek</td></tr> -<tr><td><img src="../tools/iclogos/mostek2.png"></td><td>Mostek</td></tr> -<tr><td><img src="../tools/iclogos/mostek3.png"></td><td>Mostek</td></tr> -<tr><td><img src="../tools/iclogos/mosys.png"></td><td>MoSys</td></tr> -<tr><td><img src="../tools/iclogos/motorol1.png"></td><td>Motorola</td></tr> -<tr><td><img src="../tools/iclogos/motorol2.png"></td><td>Motorola</td></tr> -<tr><td><img src="../tools/iclogos/mpd.png"></td><td>Microtune</td></tr> -<tr><td><img src="../tools/iclogos/msystem.png"></td><td>M-Systems</td></tr> -<tr><td><img src="../tools/iclogos/murata1.png"></td><td>Murata Manufacturing</td></tr> -<tr><td><img src="../tools/iclogos/murata.png"></td><td>Murata Manufacturing</td></tr> -<tr><td><img src="../tools/iclogos/mwave.png"></td><td>MWave (IBM)</td></tr> -<tr><td><img src="../tools/iclogos/myson.png"></td><td>Myson Technology</td></tr> -<tr><td><img src="../tools/iclogos/nec1.png"></td><td>NEC Electronics</td></tr> -<tr><td><img src="../tools/iclogos/nec2.png"></td><td>NEC Electronics</td></tr> -<tr><td><img src="../tools/iclogos/nexflash.png"></td><td>NexFlash Technologies</td></tr> -<tr><td><img src="../tools/iclogos/njr.png"></td><td>New Japan Radio</td></tr> -<tr><td><img src="../tools/iclogos/ns1.png"></td><td>National Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/ns2.png"></td><td>National Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/nvidia.png"></td><td>NVidia Corporation</td></tr> -<tr><td><img src="../tools/iclogos/oak.png"></td><td>Oak Technology</td></tr> -<tr><td><img src="../tools/iclogos/oki1.png"></td><td>Oki Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/oki.png"></td><td>Oki Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/opti.png"></td><td>Opti</td></tr> -<tr><td><img src="../tools/iclogos/orbit.png"></td><td>Orbit Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/oren.png"></td><td>Oren Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/perform.png"></td><td>Performance Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/pericom.png"></td><td>Pericom Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/phaslink.png"></td><td>PhaseLink Laboratories</td></tr> -<tr><td><img src="../tools/iclogos/philips.png"></td><td>Philips Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/plx.png"></td><td>PLX Technology</td></tr> -<tr><td><img src="../tools/iclogos/pmc.png"></td><td>PMC- Sierra</td></tr> -<tr><td><img src="../tools/iclogos/pmi.png"></td><td>Precision Monolithics</td></tr> -<tr><td><img src="../tools/iclogos/ptc.png"></td><td>Princeton Technology</td></tr> -<tr><td><img src="../tools/iclogos/pwrsmart.png"></td><td>PowerSmart</td></tr> -<tr><td><img src="../tools/iclogos/qlogic.png"></td><td>QuickLogic</td></tr> -<tr><td><img src="../tools/iclogos/qualcomm.png"></td><td>Qlogic</td></tr> -<tr><td><img src="../tools/iclogos/quality.png"></td><td>Quality Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/rabbit.png"></td><td>Rabbit Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/ramtron.png"></td><td>Ramtron International Co.</td></tr> -<tr><td><img src="../tools/iclogos/raytheon.png"></td><td>Raytheon Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/rca.png"></td><td>RCA Solid State</td></tr> -<tr><td><img src="../tools/iclogos/realtek.png"></td><td>Realtek Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/rectron.png"></td><td>Rectron</td></tr> -<tr><td><img src="../tools/iclogos/rendit.png"></td><td>Rendition</td></tr> -<tr><td><img src="../tools/iclogos/renesas.png"></td><td>Renesas Technology</td></tr> -<tr><td><img src="../tools/iclogos/rockwell.png"></td><td>Rockwell</td></tr> -<tr><td><img src="../tools/iclogos/rohm.png"></td><td>Rohm Corp.</td></tr> -<tr><td><img src="../tools/iclogos/s3.png"></td><td>S3</td></tr> -<tr><td><img src="../tools/iclogos/sage.png"></td><td>Sage</td></tr> -<tr><td><img src="../tools/iclogos/saifun.png"></td><td>Saifun Semiconductors Ltd.</td></tr> -<tr><td><img src="../tools/iclogos/sames.png"></td><td>Sames</td></tr> -<tr><td><img src="../tools/iclogos/samsung.png"></td><td>Samsung</td></tr> -<tr><td><img src="../tools/iclogos/sanken1.png"></td><td>Sanken</td></tr> -<tr><td><img src="../tools/iclogos/sanken.png"></td><td>Sanken</td></tr> -<tr><td><img src="../tools/iclogos/sanyo1.png"></td><td>Sanyo</td></tr> -<tr><td><img src="../tools/iclogos/sanyo.png"></td><td>Sanyo</td></tr> -<tr><td><img src="../tools/iclogos/scenix.png"></td><td>Scenix</td></tr> -<tr><td><img src="../tools/iclogos/sec1.png"></td><td>Samsung Electronics</td></tr> -<tr><td><img src="../tools/iclogos/sec.png"></td><td>Samsung Electronics</td></tr> -<tr><td><img src="../tools/iclogos/seeq.png"></td><td>SEEQ Technology</td></tr> -<tr><td><img src="../tools/iclogos/seikoi.png"></td><td>Seiko Instruments</td></tr> -<tr><td><img src="../tools/iclogos/semelab.png"></td><td>Seiko Instruments</td></tr> -<tr><td><img src="../tools/iclogos/semtech.png"></td><td>Semtech</td></tr> -<tr><td><img src="../tools/iclogos/sgs1.png"></td><td>SGS-Ates</td></tr> -<tr><td><img src="../tools/iclogos/sgs2.png"></td><td>SGS-Thomson Microelectonics ST-M)</td></tr> -<tr><td><img src="../tools/iclogos/sharp.png"></td><td>Sharp Microelectronics (USA)</td></tr> -<tr><td><img src="../tools/iclogos/shindgen.png"></td><td>Shindengen</td></tr> -<tr><td><img src="../tools/iclogos/siemens1.png"></td><td>Siemens Microelectronics, Inc.</td></tr> -<tr><td><img src="../tools/iclogos/siemens2.png"></td><td>Siemens Microelectronics, Inc.</td></tr> -<tr><td><img src="../tools/iclogos/sierra.png"></td><td>Sierra</td></tr> -<tr><td><img src="../tools/iclogos/sigmatel.png"></td><td>Sigma Tel</td></tr> -<tr><td><img src="../tools/iclogos/signetic.png"></td><td>Signetics</td></tr> -<tr><td><img src="../tools/iclogos/siliconlabs.png"></td><td>Silicon Laboratories</td></tr> -<tr><td><img src="../tools/iclogos/siliconm.png"></td><td>Silicon Magic</td></tr> -<tr><td><img src="../tools/iclogos/silicons.png"></td><td>Simtec Corp.</td></tr> -<tr><td><img src="../tools/iclogos/siliconx.png"></td><td>Siliconix</td></tr> -<tr><td><img src="../tools/iclogos/silnans.png"></td><td>Siliconians</td></tr> -<tr><td><img src="../tools/iclogos/simtek.png"></td><td>Simtec Corp.</td></tr> -<tr><td><img src="../tools/iclogos/sipex.png"></td><td>Sipex</td></tr> -<tr><td><img src="../tools/iclogos/sis.png"></td><td>Silicon Integrated Systems</td></tr> -<tr><td><img src="../tools/iclogos/smc1.png"></td><td>SMC</td></tr> -<tr><td><img src="../tools/iclogos/smsc1.png"></td><td>Standard Microsystems</td></tr> -<tr><td><img src="../tools/iclogos/smsc.png"></td><td>Standard Microsystems</td></tr> -<tr><td><img src="../tools/iclogos/sony.png"></td><td>Sony Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/space.png"></td><td>Space Electronics</td></tr> -<tr><td><img src="../tools/iclogos/spectek.png"></td><td>Spectek</td></tr> -<tr><td><img src="../tools/iclogos/spt.png"></td><td>Signal Processing Technologies</td></tr> -<tr><td><img src="../tools/iclogos/sss.png"></td><td>Solid State Scientific</td></tr> -<tr><td><img src="../tools/iclogos/sst.png"></td><td>Silicon Storage Technology (SST)</td></tr> -<tr><td><img src="../tools/iclogos/st.png"></td><td>STMicroelectronics</td></tr> -<tr><td><img src="../tools/iclogos/summit.png"></td><td>SUMMIT Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/synergy.png"></td><td>Synergy Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/synertek.png"></td><td>Synertek</td></tr> -<tr><td><img src="../tools/iclogos/taiwsemi.png"></td><td>Taiwan Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/tdk.png"></td><td>TDK Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/teccor.png"></td><td>Teccor Electronics</td></tr> -<tr><td><img src="../tools/iclogos/telcom.png"></td><td>TelCom Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/teledyne.png"></td><td>Teledyne</td></tr> -<tr><td><img src="../tools/iclogos/telefunk.png"></td><td>Telefunken</td></tr> -<tr><td><img src="../tools/iclogos/teltone.png"></td><td>Teltone</td></tr> -<tr><td><img src="../tools/iclogos/thomscsf.png"></td><td>Thomson-CSF</td></tr> -<tr><td><img src="../tools/iclogos/ti1.png"></td><td>Texas Instruments</td></tr> -<tr><td><img src="../tools/iclogos/ti.png"></td><td>Texas Instruments</td></tr> -<tr><td><img src="../tools/iclogos/toko.png"></td><td>Toko Amerika</td></tr> -<tr><td><img src="../tools/iclogos/toshiba1.png"></td><td>Toshiba (US)</td></tr> -<tr><td><img src="../tools/iclogos/toshiba2.png"></td><td>Toshiba (US)</td></tr> -<tr><td><img src="../tools/iclogos/toshiba3.png"></td><td>Toshiba (US)</td></tr> -<tr><td><img src="../tools/iclogos/trident.png"></td><td>Trident</td></tr> -<tr><td><img src="../tools/iclogos/triquint.png"></td><td>TriQuint Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/triscend.png"></td><td>Triscend</td></tr> -<tr><td><img src="../tools/iclogos/tseng.png"></td><td>Tseng Labs</td></tr> -<tr><td><img src="../tools/iclogos/tundra.png"></td><td>Tundra</td></tr> -<tr><td><img src="../tools/iclogos/turbo_ic.png"></td><td>Turbo IC</td></tr> -<tr><td><img src="../tools/iclogos/ubicom.png"></td><td>Ubicom</td></tr> -<tr><td><img src="../tools/iclogos/umc.png"></td><td>United Microelectronics Corp (UMC)</td></tr> -<tr><td><img src="../tools/iclogos/unitrode.png"></td><td>Unitrode</td></tr> -<tr><td><img src="../tools/iclogos/usar1.png"></td><td>USAR Systems</td></tr> -<tr><td><img src="../tools/iclogos/usar.png"></td><td>USAR Systems</td></tr> -<tr><td><img src="../tools/iclogos/utmc.png"></td><td>United Technologies Microelectronics Center (UTMC)</td></tr> -<tr><td><img src="../tools/iclogos/utron.png"></td><td>Utron</td></tr> -<tr><td><img src="../tools/iclogos/v3.png"></td><td>V3 Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/vadem.png"></td><td>Vadem</td></tr> -<tr><td><img src="../tools/iclogos/vanguard.png"></td><td>Vanguard International Semiconductor</td></tr> -<tr><td><img src="../tools/iclogos/vantis.png"></td><td>Vantis</td></tr> -<tr><td><img src="../tools/iclogos/via.png"></td><td>Via Technologies</td></tr> -<tr><td><img src="../tools/iclogos/virata.png"></td><td>Virata</td></tr> -<tr><td><img src="../tools/iclogos/vishay.png"></td><td>Vishay</td></tr> -<tr><td><img src="../tools/iclogos/vistech.png"></td><td>Vision Tech</td></tr> -<tr><td><img src="../tools/iclogos/vitelic.png"></td><td>Vitelic</td></tr> -<tr><td><img src="../tools/iclogos/vlsi.png"></td><td>VLSI Technology</td></tr> -<tr><td><img src="../tools/iclogos/volterra.png"></td><td>Volterra</td></tr> -<tr><td><img src="../tools/iclogos/vtc.png"></td><td>VTC</td></tr> -<tr><td><img src="../tools/iclogos/wafscale.png"></td><td>Waferscale Integration (WSI)</td></tr> -<tr><td><img src="../tools/iclogos/wdc1.png"></td><td>Western Digital</td></tr> -<tr><td><img src="../tools/iclogos/wdc2.png"></td><td>Western Digital</td></tr> -<tr><td><img src="../tools/iclogos/weitek.png"></td><td>Weitek</td></tr> -<tr><td><img src="../tools/iclogos/winbond.png"></td><td>Winbond</td></tr> -<tr><td><img src="../tools/iclogos/wolf.png"></td><td>Wofson Microelectronics</td></tr> -<tr><td><img src="../tools/iclogos/xemics.png"></td><td>Xwmics</td></tr> -<tr><td><img src="../tools/iclogos/xicor1.png"></td><td>Xicor</td></tr> -<tr><td><img src="../tools/iclogos/xicor.png"></td><td>Xicor</td></tr> -<tr><td><img src="../tools/iclogos/xilinx.png"></td><td>Xilinx</td></tr> -<tr><td><img src="../tools/iclogos/yamaha.png"></td><td>Yamaha</td></tr> -<tr><td><img src="../tools/iclogos/zetex.png"></td><td>Zetex Semiconductors</td></tr> -<tr><td><img src="../tools/iclogos/zilog1.png"></td><td>Zilog</td></tr> -<tr><td><img src="../tools/iclogos/zilog2.png"></td><td>Zilog</td></tr> -<tr><td><img src="../tools/iclogos/zilog3.png"></td><td>Zilog</td></tr> -<tr><td><img src="../tools/iclogos/zilog4.png"></td><td>Zilog</td></tr> -<tr><td><img src="../tools/iclogos/zmda.png"></td><td>ZMD (Zentrum Mikroelektronik Dresden)</td></tr> -<tr><td><img src="../tools/iclogos/zoran.png"></td><td>Zoran</td></tr> -</table> - </body> -</html> - - diff --git a/testing/setup.sql b/testing/setup.sql @@ -1,2481 +0,0 @@ --- phpMyAdmin SQL Dump --- version 3.1.2 --- http://www.phpmyadmin.net --- --- Host: localhost --- Generation Time: Jun 22, 2011 at 06:56 AM --- Server version: 5.1.51 --- PHP Version: 5.3.6-pl0-gentoo - -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - --- --- Database: `partdb` --- - --- -------------------------------------------------------- - --- --- Table structure for table `categories` --- - -CREATE TABLE IF NOT EXISTS `categories` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` mediumtext NOT NULL, - `parentnode` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `parentnode` (`parentnode`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=205 ; - --- --- Dumping data for table `categories` --- - -INSERT INTO `categories` (`id`, `name`, `parentnode`) VALUES -(8, 'SPG Regler verschieben', 7), -(199, '1 Zubehör', 150), -(200, '3 Spindeltrimmer', 149), -(10, 'Kondensatoren', 9), -(15, 'Folienkondensatoren', 10), -(14, 'Elektrolytkondensatoren', 10), -(16, 'Polystyrol MKS MKY', 15), -(41, '3 Elektromechanische Bauelemente', 0), -(40, '2 Passive Bauelemente ', 0), -(39, '1 Aktive Bauelemente', 0), -(22, 'Aluminium-Elko', 14), -(43, '5 Leitung und Leiter', 0), -(42, '4 Schwingungserzeugende Bauelemente', 0), -(25, 'Kabel', 6), -(26, 'Koaxialkabel', 6), -(27, 'Leiterplatten', 6), -(45, '7 Sensoren', 0), -(44, '6 Aktoren', 0), -(46, '8 Module & Systeme', 0), -(33, 'Energiequellen', 32), -(34, 'Röhren', 32), -(35, 'Halbleiter', 32), -(36, 'Optoelektronische Bauelemente', 32), -(47, '9 Mechanische Elemente', 0), -(48, 'A Verbrauchsmaterial', 0), -(49, '1 Schrumpfschlauch', 48), -(50, '2 Klebetechnik', 48), -(51, '1 Schrauben', 47), -(52, '2 Mutter', 47), -(54, '3 Unterlagscheiben', 47), -(59, '5 Gehäuse', 47), -(58, '6 Kühltechnik', 47), -(60, '4 Abstandshalter', 47), -(61, '1 Schaltnetzteile', 46), -(62, '1 Mikrofon', 45), -(63, '1 Elektromotoren', 44), -(64, '2 Schrittmotoren', 44), -(65, '3 Elektromagnet', 44), -(66, '4 Lautsprecher', 44), -(67, '1 Schwingquarze', 42), -(68, '2 Quarzoszillatoren', 42), -(69, '1 Leitung', 43), -(70, '2 Koaxialkabel', 43), -(71, '3 Flachbandleitung', 43), -(72, '4 Litze', 43), -(73, '5 Drähte', 43), -(74, '6 Leiterplatinen', 43), -(75, '1 Halbleiter', 39), -(76, '5 Röhren', 39), -(77, '1 Nixie-Röhre', 76), -(78, '4 Energiequellen', 39), -(79, '1 Batterie', 78), -(80, '2 Akku', 78), -(81, '3 Solarzelle', 78), -(82, '4 # Peltier-Element ', 78), -(83, '5 Generator', 78), -(84, '3 Optoelektronische Bauelemente', 39), -(85, '1 Laserdiode', 84), -(86, '2 Leuchtdioden', 84), -(87, '3 LCD', 84), -(88, '4 Lichtschranke', 84), -(89, '5 Fotohalbleiter', 84), -(90, '1 Fotodiode', 89), -(91, '2 Fototransistor', 89), -(92, '3 Solid-state-Relais ', 89), -(93, '4 CCD & CMOS-Sensoren ', 89), -(94, '1 Universal', 86), -(95, '2 RGB', 86), -(96, '3 HighPower', 86), -(97, '4 LED Array ', 86), -(98, '5 7-Segment ', 86), -(99, '6 Zubehör', 86), -(100, '1 Dioden', 75), -(101, '2 Transistoren', 75), -(102, '3 Thyristor', 75), -(103, '4 Diac', 75), -(104, '5 Triac', 75), -(105, '6 Piezoelemente', 75), -(106, '1 NPN', 101), -(107, '2 PNP', 101), -(108, '3 Darlington-Transistor ', 101), -(109, '4 Sperrschicht-Feldeffekttransistor (JFET) ', 101), -(110, '5 Metalloxid-Feldeffekttransistor (MOSFET) ', 101), -(111, '6 Leistungs-Metalloxid-Feldeffekttransistor (Power MOSFET) ', 101), -(112, '1 Universaldioden', 100), -(113, '2 Gleichrichter', 100), -(114, '3 Zener-Diode', 100), -(115, '4 Schottky-Diode ', 100), -(116, '5 Kapazitätsdiode', 100), -(117, '1 Widerstand', 40), -(118, '2 Kondensatoren', 40), -(119, '3 Induktive Bauelemente', 40), -(120, '4 Sonstige passive Bauelemente', 40), -(121, '1 elektrische Leuchtmittel ', 120), -(122, '2 Memristor', 120), -(123, '3 Fluxkompensatoren', 120), -(124, '1 unter 88 Meilen / Stunde', 123), -(125, '2 über 88 Meilen / Stunde', 123), -(126, '1 Induktivität', 119), -(127, '2 Spule', 119), -(128, '3 Drossel', 119), -(129, '4 Transformatoren', 119), -(130, '5 Übertrager', 119), -(131, '1 Keramikkondensator', 118), -(132, '2 Kunststoff-Folienkondensator ', 118), -(133, '3 Gold-Cap ', 118), -(134, '4 Styroflexkondensator', 118), -(135, '5 Elektrolytkondensatoren', 118), -(136, '6 Glimmerkondensatoren', 118), -(137, '7 Variable Kondensatoren', 118), -(138, '1 Aluminium-Elektrolytkondensatoren', 135), -(139, '2 Tantal-Elektrolytkondensator ', 135), -(140, '3 Bipolar-Elektrolytkondensator ', 135), -(141, '1 Polyester MKT MKH', 132), -(142, '2 Polycarbonat MKM MKC ', 132), -(143, '3 Zelluloseazetat MKU MKL ', 132), -(144, '4 Polystyrol MKS MKY ', 132), -(145, '5 Polypropylen MKP ', 132), -(146, '1 Festwiderstände', 117), -(147, '2 Nichtlineare Widerstände', 117), -(148, '3 Varistoren', 117), -(149, '4 Variable Widerstände ', 117), -(150, '1 Potentiometer', 149), -(151, '2 Trimwiederstand', 149), -(152, '1 Kaltleiter (PTC) ', 147), -(153, '2 PT100', 147), -(154, '3 Heißleiter (NTC) ', 147), -(155, '1 Kohleschickt', 146), -(156, '2 Metallschicht', 146), -(157, '3 Shunt', 146), -(158, '4 Heizwiderstand', 146), -(159, '5 Fotowiderstand', 146), -(160, '1 Schalter', 41), -(161, '2 Taster', 41), -(162, '3 Verbinder', 41), -(163, '4 Relais', 41), -(164, '5 Schütze', 41), -(165, '6 Leitungs-, Motorschutzschalter ', 41), -(166, '1 Schraubklemmen', 162), -(167, '2 Löttechnik', 162), -(168, '3 Steckverbinder', 162), -(169, '1 Koaxial', 168), -(170, '2 Rund', 168), -(171, '3 Rechteckig ', 168), -(172, '4 Reihenklemmen', 168), -(173, '5 Leiterplattenverbinder', 168), -(174, '6 Steckverbinderzubehör', 168), -(175, '7 Fassungen & Sockel', 168), -(176, '1 IC Sockel', 175), -(177, '2 Integrierte Schaltkreise (ICs) ', 39), -(178, '1 ROM', 177), -(179, '2 RAM', 177), -(180, '3 Mikroprozessoren', 177), -(181, '4 Analog ICs ', 177), -(182, '5 Logikgatter', 177), -(183, '1 TTL', 182), -(184, '2 CMOS', 182), -(185, '6 Operationsverstärker', 177), -(186, '7 Spannungsregler', 177), -(187, '8 Optokoppler', 177), -(188, '9 Digital-Analog-Umsetzer, Analog-Digital-Umsetzer ', 177), -(189, 'A GAL, PAL, FPGA', 177), -(190, '8 Laborstecker', 168), -(191, '7 Brückengleichrichter', 75), -(192, '7 Sicherungen & Zubehör', 41), -(193, '5 Lüfter', 44), -(194, '6 Lampen', 84), -(195, '7 Glasfasertechnik', 84), -(196, '5 Widerstandsnetzwerke', 117), -(197, '1 SMD', 196), -(198, '6 Drahtwiderstand', 146), -(201, '7 Drahtstifte', 47), -(202, '8 Federn', 47), -(203, '9 Dübel', 47), -(204, 'A Sonstiges', 47); - --- -------------------------------------------------------- - --- --- Table structure for table `datasheets` --- - -CREATE TABLE IF NOT EXISTS `datasheets` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `part_id` int(11) NOT NULL DEFAULT '0', - `datasheeturl` varchar(255) NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `part_id` (`part_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ; - --- --- Dumping data for table `datasheets` --- - -INSERT INTO `datasheets` (`id`, `part_id`, `datasheeturl`) VALUES -(1, 2, 'http://www.datasheetcatalog.org/datasheet/motorola/MCT7809BD2T.pdf'), -(3, 675, 'http://www.produktinfo.conrad.com/datenblaetter/525000-549999/526326-da-01-ml-LOETSTIFTE_de_en_fr.pdf'), -(4, 1384, 'http://www.datasheetarchive.com/pdf/getfile.php?dir=Databooks-5&file=Document5341124.pdf&scan='), -(5, 1385, 'http://www.datasheetarchive.com/pdf/getfile.php?dir=Datasheets-26&file=DSA-518121.pdf&scan='), -(6, 1386, 'http://www.google.de/url?sa=t&source=web&cd=1&ved=0CBUQFjAA&url=ftp%3A%2F%2Fserver.goodall.com%2Fhardware%2Fic-docs%2FHM6116-70(0611W652).pdf&ei=LWXWTcq6Ec-UswbBq_WTBw&usg=AFQjCNE5Vn6bf1KqBCixGbU6RjhD0drwtQ'), -(7, 1387, 'http://www.datasheetarchive.com/pdf/getfile.php?dir=Datasheets-22&file=DSA-422815.pdf&scan='), -(8, 1388, 'http://www.datasheetcatalog.org/datasheets/480/186041_DS.pdf'), -(9, 1392, 'http://www.datasheetarchive.com/pdf/getfile.php?dir=Databooks-5&file=Document534145.pdf&scan='), -(10, 1393, 'http://www.datasheetarchive.com/pdf/getfile.php?dir=Datasheets-21&file=DSA-413540.pdf&scan='), -(11, 1395, 'http://www.datasheetcatalog.org/datasheets/270/176929_DS.pdf'), -(12, 1398, 'http://www.datasheetcatalog.org/datasheets/90/176972_DS.pdf'), -(13, 1402, 'http://www.datasheetcatalog.org/datasheets/208/489187_DS.pdf'), -(14, 1403, 'http://www.datasheetcatalog.org/datasheets/208/489187_DS.pdf'), -(15, 1404, 'http://www.datasheetcatalog.org/datasheets/185/489201_DS.pdf'), -(16, 1405, 'http://www.discriminator.nl/ic/tba120u.pdf'), -(17, 1406, 'http://www.national.com/ds/LM/LM1877.pdf'), -(18, 1491, 'http://www.datasheetcatalog.org/datasheet/TelComSemiconductor/mXyzrvwv.pdf'); - --- -------------------------------------------------------- - --- --- Table structure for table `footprints` --- - -CREATE TABLE IF NOT EXISTS `footprints` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(64) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=46 ; - --- --- Dumping data for table `footprints` --- - -INSERT INTO `footprints` (`id`, `name`) VALUES -(1, 'TO220'), -(2, 'TO220-3'), -(3, 'TO92-3'), -(4, 'RM2,5'), -(5, 'RM5'), -(6, 'RM7,5'), -(7, 'RM10'), -(8, 'ohne'), -(9, 'TO220-7'), -(10, 'TO3-3'), -(11, 'TO3-4'), -(12, 'DIP8'), -(13, 'DIP14'), -(14, 'DIP16'), -(15, 'DIP18'), -(16, 'DIP20'), -(17, 'DIP6'), -(19, 'TO39'), -(20, 'TO18'), -(21, 'TO126'), -(23, 'DIP28'), -(24, 'SOP28'), -(25, 'SOIC20'), -(26, 'P-DSO-20'), -(27, 'SOIC16'), -(28, 'SOIC14'), -(29, 'P-SOJ-20'), -(30, 'SIP8'), -(31, 'SIP9'), -(32, 'SIP4'), -(33, 'SIP10'), -(34, 'SIP6'), -(35, 'SIP11'), -(36, 'SIP7'), -(37, 'DIP10'), -(38, 'TO-251AA '), -(39, 'DIP40'), -(40, 'SIP5'), -(41, 'F-124'), -(42, 'TO225A'), -(43, 'DIP24'), -(44, 'TO-66'), -(45, 'DIP48'); - --- -------------------------------------------------------- - --- --- Table structure for table `parts` --- - -CREATE TABLE IF NOT EXISTS `parts` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_category` int(11) NOT NULL DEFAULT '0', - `name` mediumtext NOT NULL, - `instock` int(11) NOT NULL DEFAULT '0', - `mininstock` int(11) NOT NULL DEFAULT '0', - `comment` mediumtext NOT NULL, - `id_footprint` int(11) NOT NULL DEFAULT '0', - `id_storeloc` int(11) NOT NULL DEFAULT '0', - `id_supplier` int(11) NOT NULL DEFAULT '0', - `supplierpartnr` mediumtext NOT NULL, - PRIMARY KEY (`id`), - KEY `id_storeloc` (`id_storeloc`), - KEY `id_category` (`id_category`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1567 ; - --- --- Dumping data for table `parts` --- - -INSERT INTO `parts` (`id`, `id_category`, `name`, `instock`, `mininstock`, `comment`, `id_footprint`, `id_storeloc`, `id_supplier`, `supplierpartnr`) VALUES -(1, 186, 'L7805CV', 83, 0, 'neu, ST Microelectronics', 2, 1, 1, ''), -(2, 186, 'MC7805CT', 51, 0, 'neu, Motorola', 2, 2, 1, ''), -(3, 186, 'MC78T05CT', 10, 0, 'neu, Motorola', 2, 3, 1, ''), -(4, 186, 'MC7808AC', 24, 0, 'neu, Samsung', 2, 4, 1, ''), -(5, 186, 'L7812CV', 88, 0, 'neu, ST Microelectronics', 2, 5, 1, ''), -(6, 186, 'L78S24CV', 26, 0, 'neu, ST Microelectronics', 2, 6, 1, ''), -(7, 186, 'L7905CV', 1, 0, 'neu, SGS-Thomson Microelectonics', 2, 12, 1, ''), -(8, 186, '79L05A', 16, 0, 'neu,', 3, 7, 1, ''), -(9, 144, '33nF 100V MKS-3', 136, 0, 'neu, WIMA', 6, 8, 1, ''), -(10, 138, '47µF 35V radial', 90, 0, 'neu, Cosonic', 5, 35, 1, ''), -(11, 138, '1000µF 25V radial', 53, 0, 'neu, Jamicon', 5, 19, 1, ''), -(12, 138, '1µF 16V Radial', 17, 0, 'neu, Lelon', 5, 20, 1, ''), -(13, 138, '10µF 63V radial', 90, 0, 'neu, SAMHWA', 5, 34, 1, ''), -(14, 138, '22µF 63V radial', 92, 0, 'neu, Rubycon', 5, 36, 1, ''), -(15, 138, '470µF 16V axial', 10, 0, 'neu, Frolyt', 8, 38, 1, ''), -(16, 135, '820nF 250V MKC1863 axial', 14, 0, 'neu, EAO', 8, 18, 1, ''), -(17, 138, '20µF 350V axial', 10, 0, 'neu, RFT', 8, 37, 1, ''), -(18, 60, 'Distanzhülsen 5mm Kunststoff', 8, 0, 'neu', 8, 9, 1, ''), -(19, 60, 'Distanzhülsen 10mm Kunststoff', 31, 0, 'neu', 8, 9, 1, ''), -(20, 60, 'Distanzhülsen 15mm Kunststoff', 15, 0, 'neu', 8, 9, 1, ''), -(21, 60, 'Distanzhülsen 20mm Kunststoff', 10, 0, 'neu', 8, 9, 1, ''), -(22, 60, 'Distanzhülsen 24mm Kunststoff', 10, 0, 'neu', 8, 9, 1, ''), -(23, 60, 'Distanzhülsen 30mm Kunststoff', 10, 0, 'neu', 8, 9, 1, ''), -(24, 60, 'Distanzhülsen 35mm Kunststoff', 10, 0, 'neu', 8, 9, 1, ''), -(25, 60, 'Distanzhülsen 11mm Metall', 17, 0, 'neu', 8, 9, 1, ''), -(26, 60, 'Distanzhülsen 3mm Metall', 8, 0, 'neu', 8, 9, 1, ''), -(27, 60, 'Distanzhülsen 6mm Kunststoff', 2, 0, 'neu', 8, 9, 1, ''), -(28, 176, 'IC-Sockel 6-polig, gedreht', 3, 0, 'neu', 8, 10, 1, ''), -(29, 176, 'IC-Sockel 8-polig, gedreht', 9, 0, 'neu', 8, 10, 1, ''), -(30, 176, 'IC-Sockel 14-polig, gedreht', 4, 0, 'neu', 8, 10, 1, ''), -(31, 176, 'IC-Sockel 16-polig, gedreht', 22, 0, 'neu', 8, 10, 1, ''), -(32, 176, 'IC-Sockel 6-polig, Federkontakt', 1, 0, 'neu', 8, 10, 1, ''), -(33, 176, 'IC-Sockel 8-polig, Federkontakt', 6, 0, 'neu', 8, 10, 1, ''), -(34, 176, 'IC-Sockel 14-polig, Federkontakt', 32, 0, 'neu', 8, 10, 1, ''), -(35, 176, 'IC-Sockel 16-polig, Federkontakt', 33, 0, '', 8, 10, 1, 'neu'), -(36, 176, 'IC-Sockel 20-polig, Federkontakt', 4, 0, 'neu', 8, 10, 1, ''), -(37, 176, 'IC-Sockel 14-polig, 90 Grad, gedreht', 13, 0, 'gebraucht', 8, 10, 1, ''), -(38, 176, 'Carrier IC-Fassung / Präzisionskontak vergoldet gedreht ', 34, 0, '', 4, 10, 1, ''), -(39, 68, 'Quarzoszillator 18,432MHz', 11, 0, 'gebraucht', 8, 11, 1, ''), -(40, 68, 'Quarzoszillator 10,000000MHz', 1, 0, 'gebraucht', 8, 11, 1, ''), -(41, 68, 'Standardquarz 4,000000MHz', 2, 0, 'gebraucht', 8, 11, 1, ''), -(42, 68, 'Standardquarz 24,00000MHz', 3, 0, 'gebraucht', 8, 11, 1, ''), -(43, 68, 'Standardquarz 4,433619MHz', 2, 0, 'gebraucht', 8, 11, 1, ''), -(44, 68, 'Standardquarz 16,000000MHz', 16, 0, 'gebraucht', 8, 11, 1, ''), -(45, 186, 'L200C', 4, 0, 'neu, ST Microelektronics', 9, 12, 1, ''), -(46, 186, 'L200C', 1, 0, 'neu, SGS-Thomson Microelectonics', 9, 12, 1, ''), -(47, 186, 'UA7805C', 4, 0, 'neu, Texas Instruments', 2, 12, 1, ''), -(48, 186, '7806CV', 8, 0, 'neu, TSL', 2, 12, 1, ''), -(49, 186, '7808 mix', 1, 0, 'gebraucht', 2, 12, 1, ''), -(50, 186, 'UA7808CSP', 2, 0, 'neu, Thomson-CSF', 2, 12, 1, ''), -(51, 186, 'L7809CV', 1, 0, 'neu, ST Microelektronics', 2, 12, 1, ''), -(52, 186, '7812 mix', 4, 0, 'gebraucht', 2, 12, 1, ''), -(53, 186, 'UA7812C', 5, 0, 'neu, Texas Instruments', 2, 12, 1, ''), -(54, 186, '7815 mix', 3, 0, 'gebraucht', 2, 12, 1, ''), -(55, 186, 'UA7815CSP', 1, 0, 'neu, ST Microelektronics ', 2, 12, 1, ''), -(56, 186, 'L7815C-V', 1, 0, 'neu, ST Microelektronics ', 2, 12, 1, ''), -(57, 186, 'L7815CV', 1, 0, 'neu, SGS-Thomson Microelectonics ', 2, 12, 1, ''), -(58, 186, '7905 mix', 1, 0, 'gebraucht', 2, 12, 1, ''), -(59, 186, 'L7905CV', 1, 0, 'neu, ST Microelectronics', 2, 12, 1, ''), -(60, 186, 'L7905CV', 1, 0, 'neu, SGS-Thomson Microelectonics', 2, 12, 1, ''), -(61, 186, 'MC7906CT', 2, 0, 'neu, Motorola', 2, 12, 1, ''), -(62, 186, '7912 mix', 1, 0, 'gebraucht', 2, 12, 1, ''), -(63, 186, '7915 mix', 3, 0, 'gebraucht', 2, 12, 1, ''), -(64, 77, 'ZM1000R', 13, 0, 'gebraucht, Valvo / (Philips)', 8, 21, 1, ''), -(65, 112, '1N4148', 67, 0, 'neu', 8, 13, 1, ''), -(66, 113, '1N4007', 44, 0, 'neu', 8, 13, 1, ''), -(67, 113, '1N4001', 50, 0, 'neu', 8, 13, 1, ''), -(68, 113, '1N4004', 20, 0, 'neu', 8, 13, 1, ''), -(69, 113, '1N4003', 50, 0, 'neu', 8, 13, 1, ''), -(70, 100, 'B0580', 62, 0, 'neu, Siemens ,(0,4A Schottky?)', 6, 39, 1, ''), -(71, 145, '0,27µF 250V MKP1841', 26, 1, 'neu, ERO', 8, 40, 1, ''), -(72, 141, '220nF 160V MKT', 29, 0, 'neu, ERO', 7, 41, 1, ''), -(73, 186, 'LM320K-15', 3, 0, '', 11, 22, 1, ''), -(74, 186, 'LM320K-5', 1, 0, '', 11, 22, 1, ''), -(75, 186, 'LM320K-12', 1, 0, '', 11, 22, 1, ''), -(76, 186, 'LM340K-15', 3, 0, '', 11, 22, 1, ''), -(77, 106, '2N3055', 4, 0, '', 11, 22, 1, ''), -(78, 107, 'MJ900', 3, 0, '', 11, 23, 1, ''), -(79, 106, 'MJ3000', 2, 0, '', 11, 23, 1, ''), -(80, 186, 'SG7815ACK', 3, 0, '', 11, 23, 1, ''), -(81, 171, 'SUB-D 15-polig Stecker', 2, 0, '', 8, 24, 1, ''), -(82, 171, 'SUB-D 15-polig Stecker High Density 3-reihig', 7, 0, '', 8, 24, 1, ''), -(83, 171, 'SUB-D 15-polig Buchse High Density 3-reihig', 7, 0, '', 8, 24, 1, ''), -(84, 171, 'SUB-D 9-polig Buchse', 6, 0, '', 8, 25, 1, ''), -(85, 171, 'SUB-D 9-polig Stecker', 30, 0, '', 8, 25, 1, ''), -(86, 171, 'SUB-D 25-polig Stecker', 7, 0, '', 8, 26, 1, ''), -(87, 171, 'SUB-D 25-polig Buchse', 23, 0, '', 8, 42, 1, ''), -(88, 171, 'SUB-D 25-polig Buchse Print,gewingelt', 4, 0, '', 8, 26, 1, ''), -(89, 171, 'SUB-D 25-polig Stecker Print,gewingelt', 1, 0, '', 8, 26, 1, ''), -(90, 171, 'SUB-D 9-polig Stecker Print,gewingelt', 1, 0, '', 8, 26, 1, ''), -(91, 190, 'Bananenbuchse 4mm rot', 23, 0, '', 8, 27, 1, ''), -(92, 190, 'Bananenbuchse 4mm schwarz', 40, 0, '', 8, 27, 1, ''), -(93, 138, '1000µF 10V', 5, 0, 'neu', 5, 14, 1, ''), -(94, 138, '560µF 25V', 5, 0, 'neu', 5, 14, 1, ''), -(95, 138, '1000µF 16V', 13, 0, 'neu, Rubycon', 5, 14, 1, ''), -(96, 140, '1,5µF 35V axial', 5, 0, 'neu', 8, 14, 1, ''), -(97, 140, '4,7µF 100V axial', 9, 0, 'neu', 8, 14, 1, ''), -(98, 142, '680nF 400V MKC1866', 2, 0, 'neu, ERO', 8, 15, 1, ''), -(99, 145, '250nF 400V ', 3, 0, 'neu, ERO', 8, 15, 1, ''), -(100, 142, '100nF 250V MKC', 3, 0, 'neu, Siemens', 8, 15, 1, ''), -(101, 145, '33nF 400V', 15, 0, 'neu, ERO', 8, 15, 1, ''), -(102, 145, '100nF 275V', 5, 0, 'neu', 8, 15, 1, ''), -(103, 145, '150nF 250V', 11, 0, 'neu', 8, 15, 1, ''), -(104, 141, '10nF 250V MKT', 14, 0, 'neu, ERO', 7, 15, 1, ''), -(105, 141, '2,2µF 250V MKT axial', 2, 0, 'neu', 8, 15, 1, ''), -(106, 138, '220µF 35V', 8, 0, 'neu, Rubycon', 5, 15, 1, ''), -(107, 138, '47µF 50V radial', 3, 0, 'neu, SME', 4, 15, 1, ''), -(108, 145, '56nF 1000V', 4, 0, 'neu, ERO', 8, 16, 1, ''), -(109, 141, '680nF 250V MKT', 5, 0, 'neu, ERO', 8, 16, 1, ''), -(110, 141, '10nF 1000V MKT axial', 4, 0, 'neu, ERO', 8, 16, 1, ''), -(111, 138, '47µF 25V axial Philips Typ 021', 14, 0, 'neu, Philips', 8, 16, 1, ''), -(112, 138, '22µF 50V ', 57, 0, 'neu, Frolyt', 4, 16, 1, ''), -(113, 138, '10µF 25V axial', 2, 0, 'neu, Cosonic', 8, 17, 1, ''), -(114, 186, 'MA7812', 2, 0, 'neu, Tesla', 11, 17, 1, ''), -(115, 106, 'BUV21', 2, 0, 'SGS-Thomson Microelectonics', 11, 17, 1, ''), -(116, 113, 'BYX55/600', 5, 0, 'Schnelle Silizium Gleichrichter 2A 350 / 600 V', 8, 17, 1, ''), -(117, 112, 'D6-800-KL01', 2, 0, ' T-4/VE=10 800V D6-800-KL01/AEG', 8, 17, 1, ''), -(118, 185, 'UA741CP', 6, 0, '', 12, 60, 1, ''), -(119, 181, 'SAB0600', 3, 0, 'Three-Tone Chime', 12, 60, 1, ''), -(120, 181, 'NE555', 7, 0, '', 12, 60, 1, ''), -(121, 181, 'LM386N', 4, 0, 'Low Voltage Audio Power Amplifier', 12, 60, 1, ''), -(122, 185, 'LM324N', 21, 0, '', 13, 60, 1, ''), -(123, 181, 'HCF4052BE', 4, 0, 'ANALOG MULTIPLEXERS-DEMULTIPLEXERS', 14, 60, 1, ''), -(124, 184, 'HCF4071BE', 2, 0, '', 13, 60, 1, ''), -(125, 184, 'HCF4510BE', 11, 0, '', 14, 60, 1, ''), -(126, 184, 'TC4093BP', 3, 0, '', 13, 60, 1, ''), -(127, 184, 'TC4013BP', 6, 0, '', 13, 60, 1, ''), -(128, 183, 'SN74ALS580AN', 2, 0, '', 16, 61, 1, ''), -(129, 181, 'TDA4718A', 2, 0, 'Control IC for Single-Ended and Push-Pull Switched-Mode Power Supplies SMPS', 15, 61, 1, ''), -(130, 181, 'TL497', 11, 0, 'SWITCHING VOLTAGE REGULATORS', 13, 61, 1, ''), -(131, 181, 'TL494', 5, 0, 'SWITCHMODE PULSE WIDTH MODULATION CONTROL CIRCUIT', 14, 60, 1, ''), -(132, 181, 'SG3525A', 10, 0, 'PULSE WIDTH MODULATOR CONTROL CIRCUITS', 14, 61, 1, ''), -(133, 181, 'LM3524N', 7, 0, 'Op-amp', 14, 61, 1, ''), -(134, 179, 'HYB511000A-70', 15, 0, '', 15, 61, 1, ''), -(135, 181, 'CA3524E', 4, 0, 'Regulating Pulse Width Modulator', 14, 61, 1, ''), -(136, 183, 'SN74S182N', 1, 0, '', 14, 61, 1, ''), -(137, 181, 'LM723', 1, 0, 'Voltage Regulator', 13, 61, 1, ''), -(138, 107, 'BC307', 1, 0, '', 19, 62, 1, ''), -(139, 106, 'BC238B', 7, 0, '', 3, 62, 1, ''), -(140, 106, 'BCY59', 6, 0, '', 20, 62, 1, ''), -(141, 107, 'BCY79', 2, 0, '', 20, 62, 1, ''), -(142, 107, '2N4033', 2, 0, '', 19, 62, 1, ''), -(143, 106, 'BD115', 3, 0, '', 19, 62, 1, ''), -(144, 106, 'BD187', 4, 0, '', 2, 62, 1, ''), -(145, 106, 'BD135', 3, 0, '', 2, 62, 1, ''), -(146, 106, '2N3019', 13, 0, '', 19, 62, 1, ''), -(147, 106, '2N2219', 3, 0, '', 19, 62, 1, ''), -(148, 192, 'Feinsicherung 5*20 125mA ', 1, 0, '', 8, 63, 1, ''), -(149, 192, 'Feinsicherung 5*20 250mA träge', 2, 0, '', 8, 63, 1, ''), -(150, 192, 'Feinsicherung 5*20 315mA träge', 4, 0, '', 8, 63, 1, ''), -(151, 192, 'Feinsicherung 5*20 500mA träge', 5, 0, '', 8, 63, 1, ''), -(152, 192, 'Feinsicherung 5*20 630mA träge', 2, 0, '', 8, 63, 1, ''), -(153, 192, 'Feinsicherung 5*20 1,25A träge', 1, 0, '', 8, 63, 1, ''), -(154, 192, 'Feinsicherung 5*20 1,25A träge', 1, 0, '', 8, 63, 1, ''), -(155, 192, 'Feinsicherung 5*20 2A träge', 2, 0, '', 8, 63, 1, ''), -(156, 192, 'Feinsicherung 5*20 2A mittelträge', 3, 0, '', 8, 63, 1, ''), -(157, 192, 'Feinsicherung 5*20 2,5A mittelträge', 6, 0, '', 8, 63, 1, ''), -(158, 192, 'Feinsicherung 5*20 2,5A flink', 1, 0, '', 8, 63, 1, ''), -(159, 192, 'Feinsicherung 5*20 4A träge', 1, 0, '', 8, 63, 1, ''), -(160, 192, 'Feinsicherung 5*20 4A mittelträge', 1, 0, '', 8, 63, 1, ''), -(161, 192, 'Feinsicherung 5*20 1,6A flink', 1, 0, '', 8, 63, 1, ''), -(162, 192, 'Feinsicherung 5*20 400mA träge', 1, 0, '', 8, 64, 1, ''), -(163, 192, 'Feinsicherung 5*20 10A flink', 2, 5, '', 8, 64, 1, ''), -(164, 192, 'Feinsicherung 5*20 3,15A träge', 1, 0, '', 8, 64, 1, ''), -(165, 138, '2,2µF 100V', 32, 0, 'neu, THRS', 4, 64, 1, ''), -(166, 138, '22µF 50V ', 2, 0, 'neu', 4, 64, 1, ''), -(167, 157, '0,33&#937;', 3, 0, '', 8, 64, 1, ''), -(168, 131, '68nF', 2, 0, 'neu', 4, 64, 1, ''), -(169, 131, '330pF', 62, 0, 'neu', 4, 64, 1, ''), -(170, 113, '1N3900R', 2, 0, '', 8, 64, 1, ''), -(171, 104, 'MAC212-8', 2, 0, 'neu, Motorola', 2, 64, 1, ''), -(172, 107, 'BD140', 9, 0, '', 2, 65, 1, ''), -(173, 106, 'BD137', 23, 0, 'neu', 2, 65, 1, ''), -(174, 106, 'BF337', 3, 0, '', 19, 65, 1, ''), -(175, 108, 'BD680', 3, 0, '', 2, 65, 1, ''), -(176, 106, 'BC141', 5, 0, '', 19, 65, 1, ''), -(177, 107, 'BC161', 8, 0, '', 19, 65, 1, ''), -(178, 186, 'MC7818', 1, 0, 'neu, Motorola', 2, 65, 1, ''), -(179, 106, 'BD249', 2, 0, '', 2, 65, 1, ''), -(180, 107, 'BD250', 2, 0, '', 2, 65, 1, ''), -(181, 107, 'BD246', 5, 0, '', 2, 65, 1, ''), -(182, 106, '2SD560', 4, 0, '', 2, 66, 1, ''), -(183, 106, '2SD986', 4, 0, '', 2, 66, 1, ''), -(184, 108, '2SB601', 2, 0, '', 2, 66, 1, ''), -(185, 107, '2SB772', 3, 0, '', 21, 66, 1, ''), -(186, 107, '2SB744', 2, 0, '', 21, 66, 1, ''), -(187, 107, 'BD244', 2, 0, '', 2, 66, 1, ''), -(188, 106, '2SD882', 2, 0, '', 21, 66, 1, ''), -(189, 106, 'BD243', 2, 0, '', 2, 66, 1, ''), -(190, 106, '2N2219', 3, 0, '', 19, 66, 1, ''), -(191, 102, 'TIC126', 5, 0, '', 2, 66, 1, ''), -(192, 106, 'BD587', 2, 0, 'neu, TFK', 2, 67, 1, ''), -(193, 186, 'LM317', 1, 0, '', 2, 67, 1, ''), -(194, 102, 'BST C1040', 4, 0, '', 2, 67, 1, ''), -(195, 115, 'mbr2045CT', 2, 0, '', 2, 67, 1, ''), -(196, 106, 'BF881', 3, 0, '', 2, 67, 1, ''), -(197, 107, 'BSV15', 6, 0, '', 19, 67, 1, ''), -(198, 106, 'BSX45', 3, 0, '', 19, 67, 1, ''), -(199, 106, 'BF197', 2, 0, '', 8, 67, 1, ''), -(200, 107, '2SB370', 2, 0, 'neu, Hitachi', 8, 67, 1, ''), -(201, 106, 'BF196', 4, 0, '', 8, 67, 1, ''), -(202, 106, 'BC172', 4, 0, '', 3, 68, 1, ''), -(203, 106, 'BC237', 5, 0, '', 3, 68, 1, ''), -(204, 106, 'BC170', 2, 0, '', 3, 68, 1, ''), -(205, 106, 'BC547', 24, 0, '', 3, 68, 1, ''), -(206, 106, 'BC107', 27, 0, '', 20, 68, 1, ''), -(207, 107, 'BC252', 3, 0, '', 3, 68, 1, ''), -(208, 107, 'BC558', 3, 0, '', 3, 68, 1, ''), -(209, 107, 'BC308', 2, 0, '', 3, 68, 1, ''), -(210, 106, 'BC207', 10, 0, '', 8, 68, 1, ''), -(211, 107, 'BF179', 21, 0, '', 19, 68, 1, ''), -(212, 194, 'Signallampe rot 230V 10mm mit Kabel', 10, 0, 'neu', 8, 43, 1, ''), -(213, 199, 'Potiknopf mit Makierung grau/rot für 6mm Achse', 23, 0, 'neu', 8, 44, 1, ''), -(214, 132, '220nF 63V', 51, 0, 'neu', 7, 45, 1, ''), -(215, 131, '22pF ?', 25, 0, 'neu, PRÜFEN des Wertes!', 5, 152, 1, ''), -(216, 166, '3/2-5,08 Printklemme 2-polig', 34, 0, 'neu, Phönix', 5, 29, 1, ''), -(217, 138, '30000µF 25V', 2, 0, 'incl. Halter und Schrauben', 8, 101, 1, ''), -(218, 138, '50000µF 50V', 2, 0, '', 8, 101, 1, ''), -(219, 138, '50000µF 15V', 1, 0, 'incl. Schrauben', 8, 101, 1, ''), -(220, 138, '26000µF 25V', 2, 1, '', 8, 101, 1, ''), -(221, 138, '60000µF 15V', 1, 0, '', 8, 101, 1, ''), -(222, 138, '5000µF 70V', 1, 0, '', 8, 101, 1, ''), -(223, 118, 'BETR.KONDENSATOR MFB MP 4/402 4µF 400V', 1, 0, '', 8, 101, 1, ''), -(224, 160, 'Leistungsschalter 3Phasen 380V 20A', 1, 0, 'Neu, Tip 4G 16-10-U', 8, 101, 1, ''), -(225, 126, '2*210µH 2*10A/500V', 1, 0, '', 8, 101, 1, ''), -(226, 46, 'DC-DC Converter 36-63/22V/250mA Printmontage', 1, 0, '', 8, 101, 1, ''), -(227, 102, '2N686 incl. Kühlkörper', 2, 0, '', 8, 101, 1, ''), -(228, 113, 'SSIE0820 incl Kühlkörper', 3, 0, '', 8, 101, 1, ''), -(229, 138, '20000µF 16V', 1, 0, '', 8, 101, 1, ''), -(230, 138, '4700µF 63V', 1, 0, '', 8, 101, 1, ''), -(231, 150, 'Poti mix', 6, 0, 'gebraucht', 8, 46, 1, ''), -(232, 46, 'Regelverstärker TVR04 Kathrein 10"', 1, 0, 'neu', 8, 111, 1, ''), -(233, 112, '1A Diode ^ 1N4148', 648, 0, 'neu', 8, 69, 1, ''), -(234, 47, 'Klebesockel für Kabelbinder 25*25mm', 79, 0, 'neu', 8, 111, 1, ''), -(235, 112, 'BAW76', 5000, 0, 'neu, Telefunken, ca. Stückzahl', 8, 121, 1, ''), -(236, 71, 'Flachbandleitung AWG28 20-polig in cm', 200, 0, 'neu', 8, 101, 1, ''), -(237, 178, '27256 mix', 14, 0, '', 23, 70, 1, ''), -(238, 178, '2764', 12, 0, '', 23, 70, 1, ''), -(239, 179, 'KM62256BLG-10 SMD', 4, 0, 'neu, Samsung', 24, 71, 1, ''), -(240, 179, 'D43256agu-10LL SMD', 10, 0, 'neu, NEC', 24, 71, 1, ''), -(241, 179, 'MB84256A-10L', 6, 0, 'neu, Fujitsu', 24, 71, 1, ''), -(242, 183, 'DM74ALS244AWM SMD', 11, 0, 'neu', 25, 71, 1, ''), -(243, 184, 'FZL4146G', 16, 0, 'neu, Siemens', 26, 71, 1, ''), -(244, 183, 'DM74ALS573BWM SMD', 6, 0, 'neu', 25, 71, 1, ''), -(245, 183, 'DM74ALS273WM SMD', 5, 0, 'neu', 25, 71, 1, ''), -(246, 183, 'PC74HC373T SMD', 4, 0, 'neu, Philips', 25, 71, 1, ''), -(247, 183, 'SN74ALS574B SMD', 10, 0, 'neu, TI', 25, 71, 1, ''), -(248, 183, 'SN74HCT245 SMD', 6, 0, 'neu, TI', 25, 71, 1, ''), -(249, 183, 'PC74HC139T SMD', 8, 0, 'neu, Philips', 27, 72, 1, ''), -(250, 183, 'PC74HC123T SMD', 3, 0, 'neu, Philips', 27, 72, 1, ''), -(251, 183, 'PC74HC30T SMD', 6, 0, 'neu, Philips', 27, 72, 1, ''), -(252, 183, 'PC74HC175T SMD', 6, 0, 'neu, Philips', 27, 72, 1, ''), -(253, 183, 'DM74LS22M SMD', 6, 0, 'neu', 27, 72, 1, ''), -(254, 184, 'HC4050 SMD', 7, 0, 'neu, Motorola', 27, 72, 1, ''), -(255, 184, 'HC595A SMD', 6, 0, 'neu, Motorola', 27, 72, 1, ''), -(256, 184, 'MC14014B SMD', 3, 0, 'neu, Motorola', 27, 72, 1, ''), -(257, 183, '74F194D SMD', 11, 0, 'neu, Signetics', 27, 72, 1, ''), -(258, 183, '74F74D SMD', 3, 0, 'neu, Signetics', 27, 72, 1, ''), -(259, 190, 'Bananenbuchse 4mm hellrot', 13, 0, '', 8, 73, 1, ''), -(260, 190, 'Bananenbuchse 4mm gelb', 9, 0, '', 8, 73, 1, ''), -(261, 190, 'Bananenbuchse 4mm blau', 9, 0, '', 8, 73, 1, ''), -(262, 190, 'Polklemme 4mm rot', 1, 0, 'Hirschmann', 8, 73, 1, ''), -(263, 100, 'B0580 geb.', 7, 0, 'Siemens', 6, 73, 1, ''), -(264, 100, 'B0540', 5, 0, 'Siemens', 6, 73, 1, ''), -(265, 100, 'C1740', 2, 0, 'Siemens', 6, 73, 1, ''), -(266, 106, 'BF258', 7, 0, 'neu', 19, 73, 1, ''), -(267, 107, 'BC160', 2, 0, '', 19, 73, 1, ''), -(268, 167, 'Lötösen M3', 98, 0, 'neu', 8, 73, 1, ''), -(269, 98, '7-Segment-Anzeige mix', 6, 0, '', 8, 74, 1, ''), -(270, 98, 'HD2121G 7-Segment-Anzeige 2 Digit', 1, 0, 'neu', 8, 74, 1, ''), -(271, 94, 'Flächen LED rot 5*3mm', 16, 0, '', 4, 74, 1, ''), -(272, 94, 'LED 5mm mit Kunststoffsockel 90 Grad grün', 2, 0, '', 4, 74, 1, ''), -(273, 94, 'LED 5mm mit Kunststoffsockel 90 Grad rot', 12, 0, '', 4, 74, 1, ''), -(274, 183, 'DM74LS136M SMD', 3, 0, 'neu', 27, 74, 1, ''), -(275, 183, 'MM74HC00 SMD', 5, 0, 'neu', 27, 74, 1, ''), -(276, 183, 'LS279A SMD', 3, 0, 'neu, TI', 27, 74, 1, ''), -(277, 183, 'ALS32 SMD', 6, 0, 'neu, TI', 28, 74, 1, ''), -(278, 183, 'ALS38A SMD', 2, 0, 'neu, TI', 28, 74, 1, ''), -(279, 151, 'Trimmer, liegend, 470 Ohm', 4, 0, 'neu', 8, 75, 1, ''), -(280, 151, 'Trimmer, stehend, 500 Ohm', 1, 0, '', 8, 75, 1, ''), -(281, 151, 'Trimmer, stehend, 220 Ohm', 4, 0, '', 8, 75, 1, ''), -(282, 151, 'Trimmer, stehend, 470 Ohm', 1, 0, '', 8, 75, 1, ''), -(283, 151, 'Trimmer, liegend, 150 Ohm', 1, 0, '', 8, 75, 1, ''), -(284, 151, 'Trimmer, liegend, 100 Ohm', 5, 0, '', 8, 75, 1, ''), -(285, 151, 'Trimmer, stehend, 100 Ohm', 1, 0, '', 8, 75, 1, ''), -(286, 151, 'Trimmer, liegend, 1 M-Ohm', 1, 0, '', 8, 75, 1, ''), -(287, 151, 'Trimmer, stehend, 1 M-Ohm', 3, 0, '', 8, 75, 1, ''), -(288, 151, 'Trimmer, liegend, 2 M-Ohm', 1, 0, '', 8, 75, 1, ''), -(289, 151, 'Trimmer, liegend, 2,2 M-Ohm', 5, 0, '', 8, 75, 1, ''), -(290, 151, 'Trimmer, liegend, 4 M-Ohm', 1, 0, '', 8, 75, 1, ''), -(291, 151, 'Trimmer, liegend, 4,7 M-Ohm', 2, 0, '', 8, 75, 1, ''), -(292, 151, 'Trimmer, stehend, 4,7 M-Ohm', 2, 0, '', 8, 75, 1, ''), -(293, 151, 'Trimmer, liegend, 1 K-Ohm', 1, 0, '', 8, 75, 1, ''), -(294, 151, 'Trimmer, stehend, 1 K-Ohm', 1, 0, '', 8, 75, 1, ''), -(295, 151, 'Trimmer, liegend, 2,2 K-Ohm', 4, 0, '', 8, 75, 1, ''), -(296, 151, 'Trimmer, liegend, 2,5 K-Ohm', 1, 0, '', 8, 75, 1, ''), -(297, 151, 'Trimmer, stehend, 2,2 K-Ohm', 3, 0, '', 8, 75, 1, ''), -(298, 151, 'Trimmer, stehend, 2,5 K-Ohm', 2, 0, '', 8, 75, 1, ''), -(299, 151, 'Trimmer, stehend, 4,7 K-Ohm', 10, 0, '', 8, 76, 1, ''), -(300, 151, 'Trimmer, stehend, 5 K-Ohm', 4, 0, '', 8, 76, 1, ''), -(301, 151, 'Trimmer, liegend, 4,7 K-Ohm', 23, 0, '', 8, 76, 1, ''), -(302, 151, 'Trimmer, liegend, 5 K-Ohm', 2, 0, '', 8, 76, 1, ''), -(303, 151, 'Trimmer, liegend, 10 K-Ohm', 31, 0, '', 8, 427, 1, ''), -(304, 151, 'Trimmer, stehend, 10 K-Ohm', 6, 0, '', 8, 427, 1, ''), -(305, 151, 'Trimmer, liegend, 22 K-Ohm', 15, 0, '', 8, 76, 1, ''), -(306, 151, 'Trimmer, stehend, 22 K-Ohm', 9, 0, '', 8, 76, 1, ''), -(307, 151, 'Trimmer, liegend, 47 K-Ohm', 10, 0, '', 8, 76, 1, ''), -(308, 151, 'Trimmer, liegend, 50 K-Ohm', 1, 0, '', 8, 76, 1, ''), -(309, 151, 'Trimmer, stehend, 47 K-Ohm', 4, 0, '', 8, 76, 1, ''), -(310, 151, 'Trimmer, stehend, 50 K-Ohm', 5, 0, '', 8, 76, 1, ''), -(311, 151, 'Trimmer, liegend, 100 K-Ohm', 30, 0, '', 8, 76, 1, ''), -(312, 151, 'Trimmer, liegend, 100 K-Ohm mit Schalter', 1, 0, '', 8, 76, 1, ''), -(313, 151, 'Trimmer, Lötösen, 100 K-Ohm mit Schalter ', 1, 0, '', 8, 76, 1, ''), -(314, 151, 'Trimmer, stehend, 100 K-Ohm', 9, 0, '', 8, 76, 1, ''), -(315, 151, 'Trimmer, liegend, 150 K-Ohm', 3, 0, '', 8, 76, 1, ''), -(316, 151, 'Trimmer, liegend, 220 K-Ohm', 14, 0, '', 8, 76, 1, ''), -(317, 151, 'Trimmer, stehend, 220 K-Ohm', 9, 0, '', 8, 76, 1, ''), -(318, 151, 'Trimmer, stehend, 250 K-Ohm', 1, 0, '', 8, 76, 1, ''), -(319, 151, 'Trimmer, liegend, 470 K-Ohm', 8, 0, '', 8, 76, 1, ''), -(320, 151, 'Trimmer, liegend, 500 K-Ohm', 3, 0, '', 8, 76, 1, ''), -(321, 151, 'Trimmer, stehend, 470 K-Ohm', 1, 0, '', 8, 76, 1, ''), -(322, 151, 'Trimmer, stehend, 500 K-Ohm', 3, 0, '', 8, 76, 1, ''), -(323, 183, 'DM74ALS541WM SMD', 1, 0, 'neu', 25, 426, 1, ''), -(324, 183, 'PC74HC157T SMD', 1, 0, 'neu, Philips', 27, 426, 1, ''), -(325, 185, 'LM319D SMD', 1, 0, 'neu', 28, 426, 1, ''), -(326, 179, 'M5M5256BFP SMD', 1, 0, 'neu, Mitsubishi Semiconductor', 24, 426, 1, ''), -(327, 181, 'ADG508AKR SMD', 1, 0, 'neu', 27, 426, 1, ''), -(328, 179, 'HYB514400AJ-70 SMD', 2, 0, 'neu, Siemens', 29, 426, 1, ''), -(329, 179, '424400-70', 1, 0, 'neu, NEC', 29, 426, 1, ''), -(330, 179, '814400A-70 SMD', 1, 0, 'neu', 29, 426, 1, ''), -(331, 112, '1N3881 incl. Kühlkörper', 1, 0, '', 8, 252, 1, ''), -(332, 102, 'BST C0326S6 incl. Kühlkörper', 2, 0, '', 8, 252, 1, ''), -(333, 112, 'BY250', 1, 0, '', 8, 247, 1, ''), -(334, 112, 'BYW80', 1, 0, '', 8, 266, 1, ''), -(335, 113, 'BYX55/350', 1, 0, '', 8, 247, 1, ''), -(336, 112, 'BY188A', 1, 0, '', 8, 426, 1, ''), -(337, 112, 'MR854', 1, 0, '', 8, 247, 1, ''), -(338, 114, 'ZPY15', 1, 0, '', 8, 426, 1, ''), -(339, 114, 'ZD15', 1, 0, '', 8, 247, 1, ''), -(340, 113, 'BYY36', 1, 0, '', 8, 247, 1, ''), -(341, 100, 'Dioden mix', 100, 0, '', 8, 252, 1, ''), -(342, 166, '3/3-7,62 Printklemme 2-polig', 46, 0, 'neu, Phönix', 6, 113, 1, ''), -(343, 47, 'Knickschutztülle vergoldet Draht gewickelt Cinch', 674, 1, 'neu', 8, 112, 1, ''), -(344, 155, '3k&#937; 5% 1/4W', 198, 1, 'neu', 8, 47, 1, '1/4W 3,0K'), -(345, 155, '10&#937; 5% 1/4W', 60, 1, 'neu', 8, 48, 1, '1/4W 10'), -(346, 156, '3,65k&#937; 1% 1/4W', 199, 1, 'neu', 8, 49, 1, 'METALL 3,65K'), -(347, 156, '5,61k&#937; 1% 1/4W', 79, 1, 'neu', 8, 50, 1, 'METALL 5,61K'), -(348, 155, '2k&#937; 5% 1/4W', 182, 1, 'neu', 8, 51, 1, '1/4W 2,0K'), -(349, 156, '1,2M&#937; 1% 1/8W', 81, 1, 'neu', 8, 51, 1, ''), -(350, 155, '200k&#937; 5% 1/4W', 7, 1, 'neu', 8, 206, 1, '1/4W 100K'), -(1239, 176, 'IC-Steckverbindung Polzahl=2 x 7', 4, 0, 'neu', 13, 235, 1, ''), -(352, 155, '1,4&#937; 5% 1/4W', 50, 1, 'neu', 8, 55, 1, '1/4W 4,7'), -(353, 171, 'Flachstecker 6,3x0,8 Messing Loch M3', 1, 0, '', 8, 114, 1, '732850'), -(354, 170, 'DIN-Diodenstecker, 5-polig, Lötanschlüssen', 11, 1, 'neu', 8, 31, 1, 'DINS 50G'), -(355, 170, 'DIN-Kupplung, 5-polig, halbrund', 10, 1, 'neu', 8, 30, 1, 'MAK 50S'), -(356, 169, 'BNC-Crimp-Stecker für RG 58, 50 Ohm', 17, 1, 'neu', 8, 32, 1, 'UG 88U-C58'), -(357, 131, '100nF', 97, 1, 'neu', 5, 151, 2, 'KERKO 100N'), -(358, 131, '27pF', 40, 1, 'neu', 4, 151, 2, 'KERKO 27P'), -(359, 171, 'Stiftleiste 36', 16, 1, 'neu', 4, 58, 2, 'SL 1X36G 2,54'), -(360, 171, 'USB-Einbaubuchse Typ B', 9, 1, 'gewinkelt für Printmontage', 8, 59, 3, ''), -(361, 162, 'Aderendhülsen 0.75mm² mit Kragen', 100, 0, 'neu', 8, 77, 2, 'AEHI 0,5-100'), -(362, 58, 'Kühlkörper 28x28mm Höhe 11.5mm', 12, 1, 'Höhe 11.5mm', 8, 141, 3, ''), -(363, 58, 'Kühlkörper 28x28mm Höhe 9mm', 2, 1, '', 8, 141, 3, ''), -(364, 58, 'Kühlkörper 43x44mm Höhe 17,5mm', 9, 0, '', 8, 142, 3, ''), -(365, 195, 'Agilent HFBR 53D5EM Fiber Optic Transceiver for Gigabit Ethernet 850n Laser', 5, 0, '', 8, 143, 3, ''), -(366, 195, 'ATM Multimode Fiber Transceivers for SONET OC-3/SDH STM-1', 4, 0, '', 8, 143, 3, ''), -(367, 197, '1kOhm +-2% 100mW', 6, 0, '', 27, 145, 3, ''), -(368, 197, '68 Ohm +-2% 100mW', 7, 0, '', 27, 145, 3, ''), -(369, 197, '100Ohm +-2% 100mW', 1, 0, '', 27, 145, 3, ''), -(370, 97, 'LED 3x Grün mit Fassung', 4, 0, '', 8, 147, 3, ''), -(371, 94, 'LED 2-farbig? mit Sockel', 2, 0, 'Achtung Pinbelegung unbekannt', 8, 147, 3, ''), -(372, 68, 'Quarzoszillator 19,440 MHz', 5, 0, '', 8, 11, 3, ''), -(373, 58, 'Lüfter 80mm 5V 0.58A', 4, 0, 'Comair Rotron', 8, 148, 3, ''), -(374, 58, 'Lüfter 128mm 12V 0.98A', 4, 0, 'Nidec Beta V, Metallgehäuse', 8, 148, 3, ''), -(375, 58, 'Lüfter 60mm 12V 0.09A', 3, 0, '', 8, 148, 3, ''), -(376, 58, 'Lüfter 60mm 5V 0.36A', 1, 0, '', 8, 148, 3, ''), -(377, 58, 'Lüfter 60mm 12V 1.4W', 1, 0, '', 8, 148, 3, ''), -(378, 58, 'Lüfter 40mm 12V 0.08A', 1, 0, '', 8, 148, 3, ''), -(379, 160, 'Netzschalter250V 16A 2fach', 2, 0, '', 8, 147, 3, ''), -(380, 94, 'LED 7x2mm mit Gehäuse ACHTUNG!', 2, 0, 'Achtung keine Infos vorhanden. War in Netzteilschaltung, evtl. abweichende Spannung!', 8, 147, 3, ''), -(381, 58, 'Kühlkörper für Pentium MMX', 1, 0, '', 8, 142, 3, ''), -(382, 58, 'Kühlkörper 24x27mm mit überstehendem Gitter 41mm, Höhe 12mm', 1, 0, '', 8, 142, 3, ''), -(383, 195, 'HP / Agilent QFBR 5235 Gigabit Ethernet Transceiver?', 12, 0, 'Achtung keine Details/ kein Datenblatt gefunden', 8, 149, 3, ''), -(384, 195, 'Abdeckkappe SC-Connector (doppelte Ausführung)', 14, 0, '', 8, 144, 3, ''), -(385, 195, 'Abdeckkappe SC-Connector (einzelne Ausführung)', 10, 0, 'ACHTUNG für SC-Connector werden 2 Kappen benötigt! Krumme Zahlen beim Bestand sind zu vermeiden!', 8, 144, 3, ''), -(386, 131, '470pF', 99, 10, '', 5, 150, 3, ''), -(394, 176, 'IC-Sockel 28-polig, Federkontakt', 9, 1, '', 8, 10, 3, ''), -(388, 131, '100nF', 90, 1, 'Aus "Pollin-Spammt-Dich-Mit-Kondensatoren-zu"-Sortiment', 4, 151, 3, ''), -(389, 131, '680pF', 100, 10, '', 5, 56, 3, ''), -(390, 131, '820pF', 143, 10, '', 5, 152, 3, ''), -(391, 131, '1,5pF', 108, 10, 'Aus "Pollin-Spammt-Dich-Mit-Kondensatoren-zu"-Sortiment', 4, 152, 3, ''), -(392, 131, '1,5pF', 52, 1, 'Aus "Pollin-Spammt-Dich-Mit-Kondensatoren-zu"-Sortiment', 4, 153, 3, ''), -(393, 131, '18pF', 143, 5, 'Aus "Pollin-Spammt-Dich-Mit-Kondensatoren-zu"-Sortiment', 5, 57, 3, ''), -(395, 183, '74F641N', 9, 1, '', 16, 155, 3, ''), -(396, 183, 'SN74LS244N', 12, 1, '', 16, 155, 3, ''), -(397, 183, 'SN74AS162N', 10, 1, '', 14, 155, 3, ''), -(398, 183, 'MC74F521N', 9, 1, '', 16, 155, 3, ''), -(399, 183, 'SN74LS279N', 12, 1, '', 14, 155, 3, ''), -(400, 183, '74F1245N', 10, 1, '', 16, 155, 3, ''), -(401, 183, 'SN74LS195AN', 12, 1, '', 14, 155, 3, ''), -(402, 183, '74HCT541B1', 10, 1, '', 16, 155, 3, ''), -(403, 114, 'ZF 3,6V 0,5W', 30, 6, '', 8, 153, 3, 'ZF 3,6'), -(404, 183, '74HC573N', 4, 0, '', 16, 30, 3, ''), -(405, 183, '74ALS573N', 1, 0, '', 16, 71, 3, ''), -(406, 183, '74F244N', 1, 0, '', 16, 155, 3, ''), -(407, 183, '74LS367A', 3, 0, '', 14, 155, 3, ''), -(408, 183, '74C151N', 4, 0, '', 14, 155, 3, ''), -(409, 183, '74HC151N', 4, 0, '', 14, 155, 3, ''), -(410, 196, '1 * 7 82K&#937;', 5, 0, 'neu', 30, 78, 1, ''), -(411, 196, '1 * 8 82k&#937;', 5, 0, 'neu', 31, 78, 3, ''), -(412, 196, '1 * 7 6,8k&#937;', 8, 0, 'neu', 30, 78, 1, ''), -(413, 196, '1 * 8 15k&#937;', 5, 0, 'neu', 31, 78, 1, ''), -(414, 196, '1 * 8 22k&#937;', 2, 0, 'neu', 31, 78, 1, ''), -(415, 196, '1 * 9 5,6k&#937;', 5, 0, 'neu', 33, 78, 1, ''), -(416, 196, '1 * 7 12k&#937;', 2, 0, 'neu', 30, 78, 1, ''), -(417, 196, '1 * 9 150k&#937;', 1, 0, 'neu', 33, 78, 1, ''), -(418, 196, '1 * 9 100k&#937;', 4, 0, 'neu', 33, 78, 1, ''), -(419, 196, '1 * 8 1,2k&#937;', 3, 0, 'neu', 31, 78, 1, ''), -(420, 196, '1 * 8 270&#937;', 9, 0, 'neu', 31, 79, 1, ''), -(424, 196, '1 * 6 6,8k&#937;', 4, 0, 'neu', 30, 79, 1, ''), -(422, 196, '1 * 7 680&#937;', 7, 0, 'neu', 30, 79, 1, ''), -(423, 196, '1 * 5 5,6k&#937;', 3, 0, 'neu', 34, 79, 1, ''), -(425, 196, '1 * 7 820&#937;', 2, 0, 'neu', 30, 79, 1, ''), -(426, 196, '1 * 8 560k&#937;', 2, 0, 'neu', 31, 79, 1, ''), -(427, 196, '1 * 9 220k&#937;', 4, 0, 'neu', 33, 79, 1, ''), -(428, 196, '1 * 7 2,2k&#937;', 3, 0, 'neu', 30, 79, 1, ''), -(429, 196, '2 * 2 2,2k&#937;', 3, 0, 'neu', 32, 79, 1, ''), -(430, 196, '1 * 8 820&#937;', 1, 0, 'nessi', 31, 79, 1, ''), -(431, 196, '1 * 9 56k&#937;', 1, 0, 'neu', 33, 80, 1, ''), -(432, 196, '1 * 9 6,8k&#937;', 1, 0, 'neu', 33, 80, 1, ''), -(433, 196, '1 * 8 180k&#937;', 1, 0, 'neu', 31, 80, 1, ''), -(434, 196, '1 * 10 390&#937;', 1, 0, 'neu', 35, 80, 1, ''), -(435, 196, '1 * 7 82&#937;', 1, 0, 'neu', 30, 80, 1, ''), -(436, 196, '1 * 7 1,2k&#937;', 1, 0, 'neu', 30, 80, 1, ''), -(437, 196, '1 * 6 220k&#937;', 1, 0, 'neu', 36, 80, 1, ''), -(438, 196, '1 * 5 12k&#937;', 1, 0, 'neu', 34, 80, 1, ''), -(439, 196, '1 * 8 68k&#937;', 7, 0, 'neu', 31, 80, 1, ''), -(444, 113, '1N4001', 50, 1, '0,02€', 8, 84, 2, '1N 4001'), -(445, 156, '10k&#937; 1% 0,6W ', 98, 1, '0,025€', 8, 84, 2, 'METALL 10,0k'), -(442, 196, '1 * 7 27k&#937;', 3, 0, 'neu', 30, 81, 1, ''), -(443, 196, '1 * 8 3,9k&#937;', 3, 0, 'neu', 31, 80, 1, ''), -(446, 156, '140&#937; 1% 0,6W', 98, 1, '0,025€', 8, 84, 2, 'METALL 140'), -(447, 156, '150&#937; 1% 0,6W ', 98, 1, '0,025€', 8, 84, 2, 'METALL 150'), -(448, 156, '390&#937; 5% 0,6W', 34, 1, '', 8, 84, 1, 'METALL 390'), -(449, 171, 'Wannenstecker 10polig', 7, 5, '0,09€', 37, 81, 2, 'WSL 10G'), -(450, 138, '470µF 25V', 9, 5, '0,06€', 5, 81, 2, 'RAD 470/25'), -(451, 138, '100µF 25V', 20, 5, '0,04€', 4, 81, 2, 'RAD 100/25'), -(452, 101, 'IRLU 024N', 10, 0, '0,42€', 38, 81, 2, 'IRLU 024N'), -(453, 171, 'Buchsenleiste 20', 10, 1, '', 4, 58, 2, 'BL 1X20G 2,54'), -(454, 131, '22pF', 50, 1, '0,06€', 4, 81, 2, 'KERKO 22P'), -(455, 171, 'Wannenstecker 6polig', 10, 1, '0,19€', 17, 81, 2, 'WSL 6G'), -(456, 171, 'Pfostenbuchse 6polig', 10, 1, '0,22€', 17, 81, 2, 'PFL 6'), -(457, 45, 'Termperatursensor KTY 81-220', 9, 1, '0,52€', 4, 81, 2, 'KTY 81-220'), -(458, 181, 'NE556', 2, 1, '0,28€', 13, 81, 2, 'NE 556 DIL'), -(459, 155, '2,7k&#937; 5% 1/2W', 60, 1, 'neu', 8, 82, 1, ''), -(460, 198, '91k&#937; 1% 1 Watt', 5, 0, 'neu', 8, 82, 1, ''), -(461, 198, '270&#937; 5% 6 Watt', 4, 0, 'neu', 8, 82, 1, ''), -(462, 155, '6.8k&#937; 1/2W', 28, 0, 'neu', 8, 82, 1, ''), -(463, 156, '511k&#937; 1% 1/4W', 47, 0, 'neu', 8, 82, 1, ''), -(464, 156, '10k&#937; 1% 1/4W', 140, 0, 'neu', 8, 83, 1, ''), -(465, 155, '390&#937; 5% 1/4W', 46, 0, 'neu', 8, 83, 1, ''), -(466, 155, '82&#937; 5% 1/4W', 28, 0, 'neu', 8, 83, 1, ''), -(467, 155, '820&#937; 5% 1/4W', 83, 0, 'neu', 8, 83, 1, ''), -(468, 155, '390&#937; 5% 1/4W', 29, 0, 'neu', 8, 84, 1, ''), -(469, 155, '100k&#937; 5% 1/4W', 28, 0, 'neu', 8, 85, 1, ''), -(470, 155, '4,7&#937; 1/4W 5%', 7, 0, 'neu', 8, 85, 1, ''), -(471, 155, '61k&#937; 5% 1/4W', 2, 0, 'neu', 8, 85, 1, ''), -(472, 155, '15k&#937; 1/4W 5%', 53, 0, 'neu', 8, 86, 1, ''), -(473, 155, '4,7k&#937; 1/2W 5%', 24, 0, 'neu', 8, 86, 1, ''), -(474, 155, '270k&#937; 5% 1/4W', 32, 0, 'neu', 8, 86, 1, ''), -(475, 155, '200&#937; 5% 1/4W', 31, 0, 'neu', 8, 86, 1, ''), -(476, 156, '180k&#937; 1/4W 1%', 14, 0, 'neu', 8, 86, 1, ''), -(477, 155, '1k&#937; 1/4W 5%', 26, 0, 'neu', 8, 87, 1, ''), -(478, 155, '3,3k&#937; 5% 1/4W', 29, 0, 'neu', 8, 87, 1, ''), -(479, 155, '3.3k&#937; 5% 1/8W', 9, 0, 'neu', 8, 87, 1, ''), -(480, 156, '3&#937; 1/4W 1%', 1, 0, 'neu', 8, 88, 1, ''), -(481, 156, '22&#937; 1/4W 1%', 7, 0, 'neu', 8, 88, 1, ''), -(482, 156, '39&#937; 1/4W 1%', 3, 0, 'neu', 8, 88, 1, ''), -(483, 156, '620&#937; 1/4W 1%', 6, 0, 'neu', 8, 88, 1, ''), -(484, 156, '820&#937; 1/4W 1%', 1, 0, 'neu', 8, 88, 1, ''), -(485, 156, '1k&#937; 1/4W 1%', 28, 0, 'neu', 8, 89, 1, ''), -(486, 156, '1,2k&#937; 1/4W 1%', 1, 0, 'neu', 8, 89, 1, ''), -(487, 156, '1,5k&#937; 1/4W 1%', 38, 0, 'neu', 8, 89, 1, ''), -(488, 156, '2k&#937; 1/4W 1%', 9, 0, 'neu', 8, 89, 1, ''), -(489, 156, '2,2k&#937; 1/4W 1%', 11, 0, 'neu', 8, 89, 1, ''), -(490, 155, '220&#937; 1/4W 5%', 5, 0, 'neu', 8, 87, 1, ''), -(491, 155, '2,18k&#937;', 1, 0, 'neu', 8, 87, 1, ''), -(492, 156, '4,7&#937; 1/4W 1%', 7, 0, 'neu', 8, 90, 1, ''), -(493, 156, '6,8k&#937; 1/4W 1%', 1, 0, 'neu', 8, 90, 1, ''), -(494, 156, '10k&#937; 1/4W 1%', 17, 0, 'neu', 8, 90, 1, ''), -(495, 156, '13k&#937; 1/4W 1%', 1, 0, 'neu', 8, 90, 1, ''), -(496, 156, '15k&#937; 1/4W 1%', 5, 0, 'neu', 8, 90, 1, ''), -(497, 156, '18k&#937; 1/4W 1%', 7, 0, 'neu', 8, 91, 1, ''), -(498, 156, '22k&#937; 1/4W 1%', 4, 0, 'neu', 8, 91, 1, ''), -(499, 156, '51k&#937; 1/4W 1%', 4, 0, 'neu', 8, 91, 1, ''), -(500, 156, '56k&#937; 1/4W 1%', 6, 0, 'neu', 8, 91, 1, ''), -(501, 156, '68k&#937; 1/4W 1%', 36, 0, 'neu', 8, 91, 1, ''), -(502, 156, '82k&#937; 1/4W 1%', 1, 0, 'neu', 8, 92, 1, ''), -(503, 156, '100k&#937; 1/4W 1%', 13, 0, 'neu', 8, 92, 1, ''), -(504, 156, '150k&#937; 1/4W 1%', 1, 0, 'neu', 8, 92, 1, ''), -(505, 156, '220k&#937; 1/4W ', 24, 0, 'neu', 8, 92, 1, ''), -(506, 156, '470k&#937; 1/4W 1%', 14, 0, 'neu', 8, 92, 1, ''), -(507, 156, '560k&#937; 1/4W 1%', 8, 0, 'neu', 8, 93, 1, ''), -(508, 156, '680k&#937; 1/4W 1%', 1, 0, 'neu', 8, 93, 1, ''), -(509, 156, '680&#937; 1/4W 1%', 1, 0, 'neu', 8, 93, 1, ''), -(510, 156, '1M&#937; 1/4W 1%', 14, 0, 'neu', 8, 93, 1, ''), -(511, 156, '4,42&#937; 1/4W 1%', 1, 0, 'neu', 8, 93, 1, ''), -(512, 198, '22&#937; 4W 10%', 18, 0, 'neu', 8, 174, 1, ''), -(513, 155, '150k&#937; 1W 5%', 24, 0, 'neu', 8, 175, 1, ''), -(514, 155, '1,8k&#937; 1/4W 5%', 95, 0, 'neu', 8, 176, 1, ''), -(515, 155, '180&#937; 3W 5%', 20, 0, 'neu', 8, 177, 1, ''), -(516, 198, '560&#937; 5% 5W', 7, 0, 'neu', 8, 178, 1, ''), -(517, 155, '120k&#937; 5% 2W', 17, 0, 'neu', 8, 179, 1, ''), -(518, 198, '220&#937; 5%10W stehend', 7, 0, 'neu', 8, 227, 1, ''), -(519, 58, 'Diverse Kühlkörper (ohne Lagerbestand)', 1, 0, 'neu', 8, 187, 1, ''), -(520, 198, '25k&#937; 50W', 1, 0, 'gebraucht', 8, 159, 1, ''), -(521, 170, 'DIN-Buchsen 5 polig, Lötanschlüsse, halbrund', 11, 0, 'neu', 8, 181, 1, ''), -(522, 160, 'Stufendrehschalter 6 Positionen, 2x2 Pol, Lötanschluss', 4, 0, 'gebraucht', 8, 182, 1, ''), -(523, 150, '47k&#937; Potentiometer, diverse', 7, 0, 'neu, diverse Modelle', 8, 183, 1, ''), -(524, 150, '10k&#937; Potentiometer, diverse', 6, 0, 'neu+gebraucht, diverse', 8, 158, 1, ''), -(525, 118, '1µF Mix, diverse Bauformen und Typen, zum basteln', 1, 0, 'diverse Bauformen und Typen', 8, 159, 1, ''), -(526, 118, '6,8µF Mix, diverse Bauformen und Typen zum Basteln', 1, 0, 'diverse Bauformen und Typen zum Basteln und Experimentieren', 8, 160, 1, ''), -(527, 118, '220µF Mix, diverse Typen zum Basteln', 1, 0, 'diverse Typen und Bauformen', 8, 161, 1, ''), -(528, 118, '680µF Mix, diverse Bauformen und Typen zum Basteln', 1, 0, 'diverse Typen und Bauformen', 8, 162, 1, ''), -(529, 118, '4,7µF Mix, diverse Typen zum Basteln', 1, 0, 'diverse Bauformen und Typen zum Experimentieren', 8, 163, 1, ''), -(530, 118, '470µF Mix, diverse Typen zum Basteln', 1, 0, 'Diverse Bauformen und Typen zum basteln und experimentieren', 8, 164, 1, ''), -(531, 156, '4,7k&#937; 1/4W 1%', 1, 0, 'neu', 8, 94, 1, ''), -(532, 156, '18,7k&#937; 1/4W 1%', 2, 0, 'neu', 8, 94, 1, ''), -(533, 156, '825&#937; 1/4W 1%', 6, 0, 'neu', 8, 94, 1, ''), -(534, 156, '866&#937; 1/4W 1%', 3, 0, 'neu', 8, 94, 1, ''), -(535, 156, '1,69k&#937; 1/4W 1%', 2, 0, 'neu', 8, 94, 1, ''), -(536, 156, '1,87k&#937; 1/4W 1%', 2, 0, 'neu', 8, 95, 1, ''), -(537, 156, '5,11k&#937; 1/4W 1%', 1, 0, 'neu', 8, 95, 1, ''), -(538, 156, '6,81k&#937; 1/4W 1%', 2, 0, 'neu', 8, 95, 1, ''), -(539, 156, '21,5k&#937; 1/4W 1%', 3, 0, 'neu', 8, 95, 1, ''), -(540, 156, '68,1k&#937; 1/4W 1%', 3, 0, 'neu', 8, 95, 1, ''), -(664, 135, '100µF 10V axial', 2, 0, 'neu', 8, 205, 1, ''), -(542, 198, '1,2M&#937; 1/4W 1%', 1, 0, 'neu', 8, 96, 1, ''), -(543, 156, '15&#937; 1/4W 1%', 1, 0, 'neu', 8, 96, 1, ''), -(570, 156, '39k&#937; 1% 0,5W', 1, 0, 'neu', 8, 96, 1, ''), -(545, 156, '13&#937; 1/4W 1%', 1, 0, 'neu', 8, 96, 1, ''), -(546, 156, '470&#937; 1/4W 1%', 2, 0, 'neu', 8, 97, 1, ''), -(547, 156, '68&#937; 1/4W 1%', 1, 0, 'neu', 8, 97, 1, ''), -(548, 156, '62&#937; 1/4W 1%', 1, 0, 'neu', 8, 97, 1, ''), -(549, 198, '6,81&#937; 1W 1%', 1, 0, 'neu', 8, 97, 1, ''), -(550, 198, '1,96k&#937; 1/2W 1%', 3, 0, 'neu', 8, 97, 1, ''), -(551, 156, '390&#937; 1/4W 1%', 13, 0, 'neu', 8, 98, 1, ''), -(552, 156, '7,5&#937; 1/4W 1%', 1, 0, 'neu', 8, 98, 1, ''), -(553, 156, '2,2M&#937; 1/4W 1%', 3, 0, 'neu', 8, 98, 1, ''), -(554, 156, '3,3k&#937; 1/4W 1%', 5, 0, 'neu', 8, 98, 1, ''), -(555, 156, '150k&#937; 1/2W 1%', 3, 0, 'neu', 8, 98, 1, ''), -(556, 156, '150&#937; 1/2W 1%', 1, 0, 'neu', 8, 100, 1, ''), -(557, 156, '2,2k&#937; 1/2W 1%', 1, 0, 'neu', 8, 100, 1, ''), -(558, 156, '68k&#937; 1/2W 1%', 1, 0, 'neu', 8, 100, 1, ''), -(559, 156, '75k&#937; 1/2W 1%', 1, 0, 'neu', 8, 100, 1, ''), -(560, 156, '82k&#937; 1/2W 1%', 1, 0, 'neu', 8, 100, 1, ''), -(561, 198, '10,1k&#937; 1W 1%', 4, 0, 'neu', 8, 188, 1, ''), -(562, 155, '56&#937; 1W 5%', 1, 0, 'neu', 8, 188, 1, ''), -(563, 155, '150&#937; 1/4W 5%', 7, 0, 'neu', 8, 188, 1, ''), -(564, 155, '390k&#937; 1/4W 5%', 2, 0, 'neu', 8, 188, 1, ''), -(565, 155, '5,83k&#937; 1/4W 5%', 1, 0, 'neu', 8, 188, 1, ''), -(566, 114, 'ZPY 4,7', 2, 0, 'neu', 8, 189, 1, ''), -(568, 156, '100&#937; 1% 1/4W', 13, 0, 'neu', 8, 190, 1, ''), -(569, 156, '82&#937; 1% 1/4W', 1, 0, 'neu', 8, 190, 1, ''), -(571, 156, '16k&#937; 1% 1/4W', 2, 0, 'neu', 8, 190, 1, ''), -(572, 156, '75k&#937; 1% 1/4W', 1, 0, 'neu', 8, 190, 1, ''), -(573, 156, '178k&#937; 1% 1/4W', 1, 0, 'neu', 8, 190, 1, ''), -(574, 156, '5,6k&#937; 1% 0,5W', 3, 0, 'neu', 8, 99, 1, ''), -(575, 156, '1,96k&#937; 1% 0,5W', 1, 0, 'neu', 8, 99, 1, ''), -(576, 156, '21,5k&#937; 1% 0,5W', 1, 0, 'neu', 8, 99, 1, ''), -(577, 155, '330&#937; 5% 1/4W', 73, 5, 'neu', 8, 99, 4, ''), -(578, 156, '330&#937; 1% 1/4W', 57, 0, 'neu', 8, 99, 4, ''), -(579, 180, 'Atmega 8515L 8PU', 4, 0, 'neu', 39, 191, 5, ''), -(580, 176, 'IC-Sockel 40-polig', 7, 0, 'neu', 39, 191, 5, ''), -(581, 138, '470µF 16V', 7, 0, 'neu', 5, 203, 5, ''), -(582, 138, '1000µF 16V', 2, 0, 'neu', 4, 203, 5, ''), -(583, 138, '10µF 35V', 10, 0, 'neu', 4, 203, 5, ''), -(584, 138, '1µF 35V', 10, 0, 'neu', 4, 203, 5, ''), -(585, 138, '47µF 16V', 5, 0, 'neu', 4, 203, 5, ''), -(586, 138, '470µF 35V', 1, 0, 'neu', 5, 203, 5, ''), -(587, 138, '2200µF 16V', 5, 0, 'neu', 5, 203, 5, ''), -(588, 107, 'BC557B Transistor PNP TO-92 45V 0,1A 0,5W', 11, 0, 'neu', 3, 203, 5, ''), -(589, 111, 'IRF620 Leistungs-MOSFET P-Ch TO-220AB 200V 3,5A', 7, 0, 'neu', 1, 203, 5, ''), -(590, 132, '100nF 63V', 5, 0, 'neu', 5, 203, 5, ''), -(591, 198, '2,5k&#937; 50W', 1, 0, 'gebraucht', 8, 191, 1, ''), -(592, 150, '1k&#937; &#8960; 6mm linear', 29, 0, 'neu?', 8, 191, 1, ''), -(593, 168, 'Stiftleiste 20pol', 4, 0, 'neu', 4, 58, 5, ''), -(594, 114, 'BZX 6,2', 4, 0, 'neu', 8, 189, 1, ''), -(595, 156, '820k&#937; 10% 1/4W', 10, 0, 'neu', 8, 189, 1, ''), -(596, 155, '470&#937; 5% 1/4W', 80, 0, 'neu', 8, 189, 1, ''), -(597, 155, '470k&#937; 5% 1/2W', 15, 0, 'neu', 8, 189, 1, ''), -(598, 155, '4,7k&#937; 1/4W 5%', 10, 0, 'neu', 8, 193, 1, ''), -(599, 156, '100k&#937; 1/2W 1%', 1, 0, 'neu', 8, 193, 1, ''), -(600, 155, '100k&#937; 5% 1/2W', 7, 0, 'neu', 8, 193, 1, ''), -(601, 114, 'Z1 V3', 4, 0, 'neu', 8, 193, 1, ''), -(656, 156, '6,8&#937; 1W 1%', 5, 0, 'neu', 8, 193, 1, ''), -(603, 156, '46,4k&#937; 1% 1/4W', 4, 0, 'neu', 8, 192, 1, ''), -(604, 155, '1M&#937; 5% 1/4W', 3, 0, 'neu', 8, 192, 1, ''), -(1236, 155, '560k&#937; 5% 1/4W', 1, 0, '', 8, 192, 1, ''), -(606, 156, '4,3&#937; 1% 1/4W', 7, 0, 'neu', 8, 192, 1, ''), -(607, 155, '100&#937; 5% 1/4W', 15, 0, 'neu', 8, 194, 1, ''), -(608, 155, '47&#937; 5% 1/4W', 12, 0, 'neu', 8, 194, 1, ''), -(609, 156, '200&#937; 1% 1/4W', 1, 0, 'neu', 8, 194, 1, ''), -(610, 156, '2&#937; 1% 1/4W', 1, 0, 'neu', 8, 194, 1, ''), -(611, 198, '8,2k&#937; 5% 25W', 3, 0, 'neu', 8, 194, 1, ''), -(612, 112, '1N4146', 19, 0, 'neu', 8, 198, 1, ''), -(613, 156, '56k&#937; 1% 5W', 10, 0, 'neu', 8, 167, 1, ''), -(614, 156, '8,2k&#937; 5% 4W', 9, 0, 'neu', 8, 166, 1, ''), -(615, 156, '332&#937; 1% 1/2W', 2, 0, 'neu', 8, 198, 1, ''), -(616, 156, '3,6k&#937; 1% 1/2W', 2, 0, 'neu', 8, 198, 1, ''), -(617, 156, '1&#937; 1% 1/2W', 33, 0, 'neu', 8, 198, 1, ''), -(618, 156, '2k&#937; 1% 1/2W', 6, 0, 'neu', 8, 198, 1, ''), -(619, 198, '100&#937; 1% 10W', 5, 0, 'neu', 8, 200, 1, ''), -(620, 198, '560&#937; 1% 10W', 1, 0, 'neu', 8, 200, 1, ''), -(621, 198, '820&#937; 1% 10W', 1, 0, 'neu', 8, 200, 1, ''), -(622, 198, '400&#937; 5% 10W', 1, 0, 'neu', 8, 200, 1, ''), -(623, 198, '470&#937; 5% 5W', 9, 0, 'neu', 8, 200, 1, ''), -(624, 186, 'SFC2815EC 5V 3A?', 1, 0, 'neu, keine weiteren Daten', 2, 195, 1, ''), -(625, 186, 'SFC2805EC 5V 1.5A', 1, 0, 'neu', 2, 195, 1, ''), -(626, 106, 'BD241A', 1, 0, 'neu', 8, 195, 1, ''), -(627, 107, 'BD242A', 1, 0, 'neu', 2, 195, 1, ''), -(628, 185, 'CA3140E ', 3, 0, '4.5MHz, Bimos Operational Amplifier With MOSFET Input/bipolar Output, neu', 12, 195, 1, ''), -(629, 185, 'SFC2741DC', 4, 0, 'neu, SFC2741DC\r\nSingle General Purpose Op Amp - comp, ovrld protected\r\nVarious\r\n\r\nInput Bias Current Max. (A)=800n\r\nV(io) Max. (V)=7.5m\r\nI(io) Max. (A)=300n\r\nCom Mode Inp Range (VICR)=12', 12, 195, 1, ''), -(630, 186, '2915 SP 7918', 1, 0, 'neu', 2, 195, 1, ''), -(631, 198, '1,5&#937; 20W 20%', 1, 0, 'neu', 8, 195, 1, ''), -(632, 198, '0,27&#937; 3W 5%', 1, 0, 'neu', 8, 195, 1, ''), -(633, 198, '39&#937; 4W 10%', 1, 0, 'neu', 8, 195, 1, ''), -(634, 156, '27k&#937; 1/4W 1%', 1, 0, 'neu', 8, 201, 1, ''), -(635, 156, '27&#937; 1/2W 1%', 1, 0, 'neu', 8, 201, 1, ''), -(636, 156, '300&#937; 1/4W 1%', 1, 0, 'neu', 8, 201, 1, ''), -(637, 156, '301&#937; 1/4W 1%', 2, 0, 'neu', 8, 201, 1, ''), -(638, 156, '4,7M&#937; 1/4W 1%', 3, 0, 'neu', 8, 201, 1, ''), -(639, 156, '100&#937; 1/2W 1%', 2, 0, 'neu', 8, 199, 1, ''), -(640, 156, '4,3k&#937; 1/4W 1%', 7, 0, 'neu', 8, 199, 1, ''), -(641, 156, '51,1&#937; 1/4W 1%', 1, 0, 'neu', 8, 199, 1, ''), -(642, 156, '3k&#937; 1/4W 1%', 1, 0, 'neu', 8, 199, 1, ''), -(643, 156, '3,83k&#937; 1/4W 1%', 1, 0, 'neu', 8, 199, 1, ''), -(1522, 155, '39k&#937; 5% 1/2W', 3, 0, '', 8, 204, 1, ''), -(645, 156, '47k&#937; 1/4W 1%', 4, 0, 'neu', 8, 204, 1, ''), -(646, 156, '33k&#937; 1/4W 1%', 2, 0, 'neu', 8, 204, 1, ''), -(647, 156, '220k&#937; 1/4W 5%', 10, 0, 'neu', 8, 204, 1, ''), -(648, 156, '20&#937; 1/4W 1%', 8, 0, 'neu', 8, 204, 1, ''), -(649, 155, '10M&#937; 1/2W 5%', 8, 0, 'neu', 8, 207, 1, ''), -(650, 155, '6,2k&#937; 1/2W 5%', 7, 0, 'neu', 8, 207, 1, ''), -(651, 156, '270k&#937; 1/2W 1%', 1, 0, 'neu', 8, 207, 1, ''), -(652, 155, '680&#937; 1/2W 5%', 1, 0, 'neu', 8, 207, 1, ''), -(653, 155, '2,2k&#937; 1/2W 5%', 9, 0, 'neu', 8, 207, 1, ''), -(654, 156, '5,1&#937; 1/4W 1%', 10, 0, 'neu', 8, 210, 1, ''), -(655, 156, '10&#937; 1/4W 1%', 11, 0, 'neu', 8, 206, 1, ''), -(657, 118, '2200µF Mix', 11, 0, 'gebraucht und neu, zum basteln und experimentieren', 8, 171, 1, ''), -(658, 118, '1000µF Mix', 18, 0, 'neu und gebraucht, zum basteln und experimentieren', 8, 170, 1, ''), -(659, 118, '2,2µF Mix', 12, 0, 'neu und gebraucht, zum basteln und experimentieren', 8, 168, 1, ''), -(660, 118, '100µF Mix', 27, 0, 'neu und gebraucht, zum spielen und experimentieren', 8, 169, 1, ''), -(661, 117, 'Widerstandsmix / hohe Wattzahlen', 25, 0, 'neu und gebraucht, für experimente', 8, 185, 1, ''), -(662, 118, '4700µF Mix', 6, 0, 'gebraucht zum experimentieren', 8, 184, 1, ''), -(663, 156, '2,7M&#937; 1% 1/4W', 1, 0, 'neu', 8, 205, 1, ''), -(665, 135, '100µF 16V axial', 2, 0, 'neu', 8, 205, 1, ''), -(666, 135, '100µF 40V axial', 2, 0, 'neu', 8, 205, 1, ''), -(667, 150, '100k&#937; Potentiometer linear', 2, 0, 'neu', 8, 205, 1, ''), -(668, 198, '220&#937; 5% >25W', 1, 0, 'gebraucht', 8, 96, 1, ''), -(669, 135, '4,7µF 63V axial', 2, 0, 'neu', 8, 210, 1, ''), -(670, 135, '470µF 40V axial', 1, 0, 'neu', 8, 210, 1, ''), -(671, 135, '470µF 16V axial', 2, 0, 'neu', 8, 210, 1, ''), -(672, 150, '2,5k&#937; linear', 2, 0, 'neu', 8, 210, 1, ''), -(673, 94, 'LED 5mm Rot', 850, 0, 'neu', 8, 186, 5, ''), -(674, 94, 'LED 5mm Rot', 150, 0, 'neu, rest von A0083', 8, 53, 5, ''), -(675, 167, 'Lotstift', 562, 0, 'Neu\r\n', 8, 269, 1, '526326'), -(676, 155, '2,2k&#8486; 5% 1/4W', 15, 0, 'neu', 8, 206, 1, ''), -(677, 155, '5,6k&#8486; 5% 1/4W', 20, 0, 'neu', 8, 206, 1, ''), -(678, 155, '32&#8486; 1/4W 5%', 1, 0, 'neu', 8, 206, 1, ''), -(679, 107, 'BD236', 1, 0, 'gebraucht', 1, 257, 1, ''), -(680, 106, 'MJF 350', 1, 0, 'gebraucht', 1, 257, 1, ''), -(681, 106, 'BD232', 1, 0, 'gebraucht', 1, 257, 1, ''), -(682, 106, 'BF459', 1, 0, 'gebraucht', 1, 257, 1, ''), -(683, 106, 'BF457', 1, 0, 'gebraucht', 1, 257, 1, ''), -(684, 107, 'BD136', 2, 0, 'gebraucht', 1, 257, 1, ''), -(685, 106, 'BD165', 1, 0, 'gebraucht', 1, 257, 1, ''), -(686, 107, 'SD338', 1, 0, 'gebraucht', 1, 257, 1, ''), -(687, 106, 'BD410', 1, 0, 'gebraucht', 1, 257, 1, ''), -(688, 138, '330µF 63V', 1, 0, 'neu', 5, 215, 1, ''), -(689, 190, 'Prüfbuchse PB 4 rot', 5, 0, 'neu, Hirschmann SKS', 8, 215, 1, ''), -(690, 190, 'Prüfbuchse PB 4 schwarz', 5, 0, 'neu, Hirschmann', 8, 215, 1, ''), -(691, 47, 'Schraubsockel', 10, 0, 'neu', 8, 215, 1, '5445312'), -(692, 171, 'Jumper', 16, 0, 'neu', 5, 215, 1, ''), -(693, 160, 'Sub-Miniatur-Kippschalter 3A-125VAC 1 x UM', 6, 0, 'neu\r\n', 8, 215, 1, ''), -(694, 160, 'Miniatur-Kippschalter 10A-125VAC 2 x UM', 1, 0, 'neu', 8, 215, 1, ''), -(695, 160, 'Mini-Dip-Schalter abbrechbar', 8, 0, 'neu', 6, 215, 1, ''), -(696, 183, 'PC74HC139T SMD', 1, 0, 'neu', 27, 215, 1, ''), -(697, 155, '560&#937; 1/4W', 3, 0, 'neu', 8, 220, 1, ''), -(698, 155, '6,2k&#937; 1/2W', 3, 0, 'neu', 8, 220, 1, ''), -(699, 155, '50M&#937; 1/2W', 2, 0, 'neu', 8, 220, 1, ''), -(1356, 156, '1&#937; 1% 1/4W', 1, 0, '', 8, 220, 1, ''), -(701, 156, '22M&#937; 1W', 5, 0, 'neu', 8, 220, 1, ''), -(702, 47, 'Leiterplattengriffe gelb zum Schrauben', 10, 0, 'neu', 8, 234, 1, ''), -(703, 173, 'Federleiste 32-pol', 8, 0, 'neu', 4, 234, 1, ''), -(704, 155, '6,8k&#937; 1/4W 5%', 7, 0, 'neu', 8, 219, 1, ''), -(705, 155, '300&#937; 1/2W 5%', 4, 0, 'neu', 8, 219, 1, ''), -(706, 155, '920k&#937; 1/4W 5%', 31, 0, 'neu. Achtung die Farbcodes sind falsch aufgedruckt, im Zweifelsfalle nachmessen', 8, 219, 1, ''), -(707, 156, '330&#937; 1/4W 1%', 12, 0, 'neu', 8, 219, 1, ''), -(708, 156, '301&#937; 1/4W 1%', 9, 0, 'neu', 8, 219, 1, ''), -(709, 155, '16K&#937; 1/4W', 2, 0, 'neu', 8, 228, 1, ''), -(710, 161, 'Miniatur-Taster 1 x Aus/(Ein) 250 V/DC 5 (2) A', 5, 0, 'neu, SCAB5406322000', 8, 228, 1, 'Conrad 700134-62'), -(711, 155, '2,2k&#937; 1W', 1, 0, 'neu', 8, 228, 1, ''), -(712, 155, '15k&#937; 1/2W 5%', 6, 0, 'neu', 8, 228, 1, ''), -(713, 155, '11k&#937; 1/2W', 2, 0, 'neu', 8, 228, 1, ''), -(714, 167, 'Lötösen M6', 22, 0, 'neu', 8, 240, 1, ''), -(715, 167, 'Lötösen 9,5mm', 4, 0, 'neu', 8, 240, 1, ''), -(716, 167, 'Flachstecker 6,3mm', 10, 0, 'neu, 6,3 x 0,8 mm ', 5, 240, 1, ''), -(717, 167, 'Lötstift-öse', 50, 0, 'neu', 8, 240, 1, 'Conrad 527866 - 62'), -(718, 186, 'L7806CV', 1, 0, 'neu, ST Microelectronics ', 2, 240, 1, ''), -(719, 186, '7809 mix', 1, 0, 'neu', 2, 240, 1, ''), -(720, 183, 'SN74LS682N', 2, 0, '', 16, 240, 1, ''), -(721, 183, 'DM74S287N', 1, 0, '', 14, 240, 1, ''), -(722, 141, '220nF 63V', 5, 0, 'neu, WIMA', 5, 240, 1, ''), -(723, 160, 'Miniatur-Kippschalter 3A-125VAC 1 x UM', 1, 0, 'neu', 8, 240, 1, ''), -(724, 155, '120&#937; 1/4W', 8, 0, 'neu', 8, 184, 1, ''), -(725, 155, '22&#937; 1/4W', 8, 0, 'neu', 8, 239, 1, ''), -(726, 155, '12k&#937; 1/4W', 14, 0, 'neu', 8, 239, 1, ''), -(727, 97, 'LED 7 * 3mm', 4, 0, 'neu', 8, 239, 1, ''), -(728, 155, '100&#937; 5% 1/2W', 1, 0, 'neu', 8, 239, 1, ''), -(729, 151, 'Trimmer, liegend, 10K&#937;', 2, 0, 'neu', 8, 245, 1, ''), -(730, 151, 'Trimmer, stehend, 10K&#937;', 1, 0, 'neu', 8, 245, 1, ''), -(731, 151, 'Trimmer, stehend, 10K&#937;, offen', 2, 0, 'neu', 8, 245, 1, ''), -(732, 151, 'Trimmer, liegend, 10K&#937;, offen', 1, 0, 'neu', 8, 245, 1, ''), -(733, 151, 'Trimmer, liegend, 10K&#937;, offen', 21, 0, 'neu', 8, 245, 1, ''), -(734, 151, 'Trimmer, liegend, 10K&#937;, offen', 3, 0, '', 8, 245, 1, ''), -(735, 151, 'Trimmer, stehend, 10K&#937;, offen', 1, 0, 'neu', 8, 245, 1, ''), -(736, 151, 'Trimmer, liegend, 10K&#937;, offen, Keramik', 2, 0, 'neu', 8, 245, 1, ''), -(737, 151, 'Trimmer, stehend, 10K&#937;, offen, Keramik', 1, 0, 'neu', 8, 245, 1, ''), -(738, 161, 'Miniatur-Taster R13-24 rot', 1, 0, 'neu, SCI', 8, 245, 1, ''), -(739, 138, '33µF 10V radial', 1, 0, 'neu', 5, 250, 1, ''), -(740, 138, '47µF 25V radial', 1, 0, 'neu', 5, 250, 1, ''), -(741, 139, '100µF 3V', 1, 0, 'neu', 5, 250, 1, ''), -(742, 161, 'Miniatur-Taster R13-24 gelb', 1, 0, 'neu', 8, 250, 1, ''), -(743, 161, 'Miniatur-Taster R13-24 grün', 1, 0, 'neu', 8, 250, 1, ''), -(744, 161, 'Miniatur-Taster R13-24 SW', 1, 0, 'neu', 8, 250, 1, ''), -(745, 161, 'Miniatur-Taster R13-24 WS', 1, 0, 'neu', 8, 250, 1, ''), -(746, 47, 'Klebesockel für Kabelbinder 25*32mm', 3, 0, 'neu', 8, 250, 1, ''), -(747, 131, '100nF', 5, 0, 'neu', 5, 250, 1, ''), -(748, 192, 'Neozed-Passeinsatz D02/ 35 A Schwarz', 3, 0, 'neu', 8, 250, 1, ''), -(749, 171, 'Pfosten-Steckverbinder 2 x 20', 5, 0, 'neu', 8, 244, 1, ''), -(750, 94, 'LED 5mm grün 90°Sockel', 36, 0, '', 8, 244, 1, ''), -(751, 170, 'DIN-Kupplung, 8-polig', 4, 0, 'neu', 8, 273, 1, ''), -(752, 170, 'DIN-Stecker, 8-polig', 3, 0, 'neu', 8, 273, 1, ''), -(753, 161, 'Langhubtaster 19mm*19mm', 36, 0, 'Rafi', 8, 241, 1, ''), -(754, 112, 'FEP16CT', 1, 0, '', 1, 243, 1, ''), -(755, 190, 'Bananenbuchse 2mm schwarz printmontage', 10, 0, '', 6, 243, 1, ''), -(756, 132, '2,7µF 100V MKT', 7, 0, 'neu', 8, 243, 1, ''), -(757, 170, 'Klinkenbuchse 6,35mm stereo print stehend', 15, 0, 'von Felicitus, gebraucht', 8, 180, 6, ''), -(758, 170, 'Klinkenbuchse 6,35mm mono print stehend', 4, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(759, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil rot', 35, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(760, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil grün', 23, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(761, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil weiß', 13, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(762, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil gelb', 11, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(763, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil lila', 2, 0, 'von Feli, gebraucht', 8, 227, 6, ''), -(764, 199, 'Knopf für Potentiometer &#8960; 9mm Höhe 15mm, gummiert, Pfeil schwarz', 1, 0, 'von Feli, gebraucht', 8, 227, 6, ''), -(765, 199, 'Knopf für Schiebepotentiometer, 12x23mm, Markierung weiß', 15, 0, 'von Felicitus, gebraucht', 8, 227, 6, ''), -(766, 167, 'Lötnagel 1,3mm', 84, 0, 'neu', 8, 154, 1, 'Reichelt RTM 1,3'), -(767, 167, 'Lötösen 1,3mm, versilbert', 106, 0, 'neu', 8, 154, 1, 'Reichelt RF 1,3'), -(768, 192, 'Sicherungshalter, 5mm, max. 6, 3A-250V', 2, 0, 'neu', 5, 154, 1, 'Reichelt PL 120000'), -(769, 191, 'Brückengleichrichter B40C3200/2200 +WW-', 1, 0, 'neu', 6, 154, 1, ''), -(770, 151, 'Trimmer, liegend, 10K&#937;', 3, 0, 'neu', 8, 154, 1, ''), -(771, 151, 'Trimmer, liegend, 5M&#937;', 3, 0, 'neu', 8, 154, 1, ''), -(772, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 10mm', 6, 0, 'neu', 8, 154, 1, 'Reichelt DI 10MM'), -(773, 59, 'Kabeldurchführung, ringförmig, Ø-innen 8mm', 9, 0, 'neu', 8, 154, 1, 'Reichelt KDF 8'), -(774, 59, 'Kabeldurchführung, ringförmig, Ø-innen 6mm', 2, 0, 'neu', 8, 154, 1, ''), -(775, 59, 'Kabeldurchführung, ringförmig, Ø-innen 4mm', 3, 0, 'neu', 8, 154, 1, ''), -(776, 170, 'DIN-Buchsen 5 polig, Lötanschlüsse, X', 2, 0, 'neu', 8, 196, 1, ''), -(777, 190, 'Polklemme 4mm, rot', 2, 0, 'neu', 8, 196, 1, 'Reichelt PK 4 RT'), -(778, 190, 'Polklemme 4mm, schwarz', 2, 0, 'neu', 8, 196, 1, 'Reichelt PK 4 SW'), -(779, 144, '220nF 63V MKS', 1, 0, 'neu, WIMA', 6, 196, 1, ''), -(780, 139, '2,2µF 35V', 6, 0, 'neu', 4, 196, 1, ''), -(781, 59, 'Kabeldurchführung, ringförmig, Ø-innen 6mm', 1, 0, 'neu', 8, 196, 1, ''), -(782, 59, 'Kabeldurchführung, ringförmig, Ø-innen 12mm', 1, 0, 'neu', 8, 196, 1, ''), -(783, 59, 'Kabeldurchführung, ringförmig, Ø-innen 6mm', 11, 0, 'neu', 8, 196, 1, ''), -(784, 59, 'Kabeldurchführung, ringförmig, Ø-innen 6mm', 1, 0, 'neu', 8, 196, 1, ''), -(785, 59, 'Kabeldurchführung, ringförmig, Ø-innen 4mm', 1, 0, 'neu', 8, 196, 1, ''), -(786, 144, '10nF 100V MKS-4', 5, 0, 'neu, WIMA', 6, 197, 1, ''); -INSERT INTO `parts` (`id`, `id_category`, `name`, `instock`, `mininstock`, `comment`, `id_footprint`, `id_storeloc`, `id_supplier`, `supplierpartnr`) VALUES -(787, 144, '100nF 100V MKS-3', 5, 0, 'neu, WIMA', 6, 197, 1, ''), -(788, 144, '470nF 63V MKS', 2, 0, 'neu, WIMA', 6, 197, 1, ''), -(789, 141, '100nF 100V MKT', 2, 0, 'neu', 6, 197, 1, ''), -(790, 141, '820nF 100V', 2, 0, 'neu', 6, 197, 1, ''), -(791, 141, '470nF 100V', 4, 0, 'neu', 6, 197, 1, ''), -(792, 138, '10µF 25V', 2, 0, 'neu', 4, 197, 1, ''), -(793, 138, '2,2µF 63V', 2, 0, 'neu', 4, 197, 1, ''), -(794, 138, '100µF 25V', 2, 0, 'neu', 4, 197, 1, ''), -(795, 200, '10k&#937; Spindeltrimmer', 1, 0, 'neu', 8, 197, 1, ''), -(796, 138, '220µF 315V', 1, 0, 'neu', 7, 202, 1, ''), -(797, 138, '220µF 25V', 1, 0, 'neu', 5, 202, 1, ''), -(798, 138, '1µF 63V', 2, 0, 'neu', 5, 202, 1, ''), -(799, 185, 'LM339N', 7, 0, 'neu', 13, 202, 1, 'Reichelt LM 339 DIL'), -(800, 185, 'BA4560P', 8, 0, 'neu', 12, 202, 1, ''), -(801, 192, 'Neozed-Passeinsatz D01, E14, Nennstrom 10A', 2, 0, 'neu', 8, 202, 1, 'Reichelt: EL SEPS E14 10'), -(802, 138, '1000µF 40V', 1, 0, 'neu', 6, 202, 1, ''), -(803, 138, '47µF 63V', 2, 0, 'neu', 5, 202, 1, ''), -(804, 139, '22µF 16V', 4, 0, 'neu', 5, 202, 1, ''), -(805, 139, '2,2µF 16V', 1, 0, 'neu', 4, 202, 1, ''), -(806, 138, '2,2µF 80V', 2, 0, 'neu', 4, 208, 1, ''), -(807, 138, '1000µF 16V', 1, 0, 'neu, Frolyt', 5, 208, 1, ''), -(808, 138, '1000µF 6,3V', 1, 0, 'neu, Frolyt', 5, 208, 1, ''), -(809, 138, '100µF 40V', 1, 0, 'neu', 5, 208, 1, ''), -(810, 138, '100µF 16V', 1, 0, 'neu', 5, 208, 1, ''), -(811, 142, '2,2µF 400V FKC', 1, 0, 'neu, WIMA', 7, 208, 1, ''), -(812, 160, 'Drehimpulsgeber vertikal 32 Stellungen', 2, 0, 'neu', 8, 208, 1, ''), -(813, 106, '2N3107', 1, 0, '', 19, 208, 1, ''), -(814, 107, 'KFY18', 1, 0, '', 19, 208, 1, ''), -(815, 138, '56µF 6V', 2, 0, 'neu', 5, 208, 1, ''), -(816, 196, '1 * 8 6,8K&#937;', 1, 0, 'neu', 31, 209, 1, ''), -(817, 196, '1 * 4 6,8K&#937;', 1, 0, '', 40, 209, 1, ''), -(818, 196, '1 * 8 10K&#937;', 1, 0, '', 31, 209, 1, ''), -(819, 196, '1 * 8 4,7K&#937;', 1, 0, 'neu', 31, 209, 1, ''), -(820, 196, '4 * 1 120K&#937;', 1, 0, 'neu', 30, 209, 1, ''), -(821, 196, '4 * 1 33&#937;', 6, 0, '', 30, 209, 1, ''), -(822, 196, '4 * 1 220&#937;', 4, 0, '', 30, 209, 1, ''), -(823, 181, 'TV Synchronizing Signal Detection Circuit', 2, 0, 'neu', 31, 209, 1, ''), -(824, 191, 'Brückengleichrichter B80C1500 (W02)', 10, 0, 'neu', 8, 209, 1, 'Reichelt B80C1500RUND'), -(825, 191, 'Brückengleichrichter B100C8000 +WW- (GRU8B)', 2, 0, 'neu', 8, 209, 1, 'Pollin'), -(826, 185, 'SFC2761C', 9, 0, '', 41, 243, 1, ''), -(827, 163, 'Reedrelais MK06-7-B', 5, 0, 'neu, Meder', 8, 243, 1, ''), -(828, 131, '1nF 250V (102M -KX)', 8, 0, 'neu, nuRata', 7, 243, 1, ''), -(829, 59, 'Kabeldurchführung, ringförmig, Ø-innen 10mm', 1, 0, 'neu', 8, 243, 1, ''), -(830, 59, 'Kabeldurchführung, ringförmig, Ø-innen 6mm', 1, 0, 'neu', 8, 243, 1, ''), -(831, 106, '2N6099', 1, 0, 'neu', 1, 243, 1, ''), -(832, 102, 'C106M1', 1, 0, 'neu, Motorola', 42, 243, 1, ''), -(833, 138, '100µF 16V', 10, 0, 'neu', 5, 214, 1, ''), -(834, 170, 'F-Stecker 6,1mm Durchmesser', 2, 0, 'neu', 8, 214, 1, 'Reichelt FAS 6'), -(835, 170, 'F-Stecker 5,2mm Durchmesser', 1, 0, 'neu', 8, 214, 1, 'Reichelt FAS 5'), -(836, 170, 'F-Stecker 6,8mm Durchmesser, Dichtung', 2, 0, 'neu', 8, 214, 1, 'Reichelt CFS 89-01'), -(837, 170, 'F-Steckverbinder, Buchse, Zentralmontage', 4, 0, 'neu', 8, 214, 1, 'Reichelt FB EM'), -(838, 171, 'D-Sub-Adapter, 9-polig, Stecker-Stecker', 1, 0, 'neu', 8, 214, 1, 'Reichelt COM 990'), -(839, 171, 'D-Sub-Adapter, 15-polig HD, Stecker-Stecker', 2, 0, 'neu', 8, 214, 1, 'Reichelt COM 922'), -(840, 170, '3,5 Stereo-Klinken-St. auf 2x Klinken-Ku.', 3, 0, 'neu', 8, 214, 1, ''), -(841, 106, 'BF458', 2, 0, '', 21, 214, 1, ''), -(842, 108, 'BDX53C', 1, 0, '', 1, 214, 1, ''), -(843, 106, 'BC547C', 9, 0, 'neu', 3, 181, 6, ''), -(844, 180, 'ATMEGA 168', 6, 0, 'neu', 23, 213, 6, 'Reichelt ATMEGA 168-20DIP'), -(845, 68, 'Standardquarz 12,000MHz', 1, 0, '', 5, 213, 6, ''), -(846, 74, 'SMD Adapter mix', 10, 0, 'neu', 8, 213, 6, ''), -(847, 94, 'LED 5mm Rot', 9, 0, '', 4, 213, 6, ''), -(848, 94, 'LED 5mm Rot Klar', 45, 0, '', 4, 213, 6, ''), -(849, 107, 'KF517', 5, 0, 'neu', 20, 213, 1, ''), -(850, 107, 'GC511', 1, 0, 'neu', 20, 213, 1, ''), -(851, 106, 'GC521', 1, 0, 'neu', 20, 213, 1, ''), -(852, 107, 'BSV12', 3, 0, '', 20, 213, 1, ''), -(853, 139, '22µF 16V', 3, 0, 'neu', 4, 212, 1, ''), -(854, 139, '470nF 63V', 2, 0, 'neu', 5, 212, 1, ''), -(855, 139, '4,7µF 10V', 5, 0, 'neu', 4, 212, 1, ''), -(856, 139, '68µF 6,3V', 7, 0, 'neu, Philips', 5, 212, 1, ''), -(857, 139, '22µF 3V', 10, 0, 'neu', 4, 212, 1, ''), -(858, 139, '33µF 3V', 3, 0, 'neu', 4, 212, 1, ''), -(859, 139, '22µF 3V', 12, 0, 'neu', 4, 212, 1, ''), -(860, 139, '47µF 3V', 4, 0, 'neu', 4, 212, 1, ''), -(861, 139, '68µF 3V', 7, 0, 'neu', 4, 212, 1, ''), -(862, 138, '470µF 10V', 1, 0, '', 8, 212, 1, ''), -(863, 138, '10µF 25V axial', 2, 0, '', 8, 211, 1, ''), -(864, 138, '100µF 10V', 1, 0, '', 8, 211, 1, ''), -(865, 138, '10µF 63V axial', 1, 0, '', 8, 211, 1, ''), -(866, 86, 'LED Dreieck grün 5mm', 2, 0, 'neu', 4, 211, 1, ''), -(867, 86, 'LED Keil gelb 5mm', 2, 0, 'neu', 4, 211, 1, ''), -(868, 90, 'SFH235', 7, 0, 'neu', 4, 211, 1, ''), -(869, 185, 'LM339M SMD auf Platine', 8, 0, 'neu', 8, 211, 1, ''), -(870, 94, 'LED 3mm gelb', 6, 0, 'neu', 4, 211, 1, ''), -(871, 94, 'LED 3mm rot', 11, 0, 'neu', 4, 211, 1, ''), -(872, 94, 'LED 3mm grün', 13, 0, 'neu', 4, 211, 1, ''), -(873, 106, 'BUY55', 1, 0, '', 10, 246, 1, ''), -(874, 106, 'KU605', 1, 0, '', 10, 246, 1, ''), -(875, 106, 'BU209', 1, 0, '', 10, 246, 1, ''), -(876, 106, 'MJ3001', 1, 0, '', 10, 246, 1, ''), -(877, 106, '2SC642A', 1, 0, '', 10, 246, 1, ''), -(878, 106, 'AD161', 2, 0, '', 19, 246, 1, ''), -(879, 86, 'LED 3mm orange', 17, 0, 'neu', 4, 246, 1, ''), -(880, 86, 'LED 3mm rot, Transparent', 15, 0, 'neu', 4, 246, 1, ''), -(881, 86, 'LED 3mm grün, Transparent', 13, 0, 'neu', 4, 246, 1, ''), -(882, 106, 'BF310', 1, 0, '', 3, 246, 1, ''), -(883, 162, 'Aderendhülsen 16mm² * 18', 42, 0, 'neu', 8, 217, 1, ''), -(884, 162, 'Aderendhülsen 0,5mm² * 6', 100, 0, 'neu', 8, 238, 1, ''), -(885, 162, 'Aderendhülsen 0,75mm² * 6', 100, 0, 'neu', 8, 238, 1, ''), -(886, 162, 'Aderendhülsen 1mm² * 6', 101, 0, 'neu', 8, 238, 1, ''), -(887, 162, 'Aderendhülsen 1,5mm² * 7', 124, 0, 'neu', 8, 238, 1, ''), -(888, 162, 'Aderendhülsen 4mm² * 12', 37, 0, 'neu', 8, 238, 1, ''), -(889, 162, 'Aderendhülsen 6mm² * 12', 39, 0, 'neu', 8, 238, 1, ''), -(890, 162, 'Aderendhülsen 6mm² * 15', 6, 0, 'neu', 8, 238, 1, ''), -(891, 162, 'Aderendhülsen 10mm² * 15', 37, 0, 'neu', 8, 238, 1, ''), -(892, 162, 'Aderendhülsen 2,5mm² * 6', 445, 0, 'neu', 8, 217, 1, ''), -(893, 107, 'BF324', 1, 0, '', 3, 238, 1, ''), -(894, 107, 'BF451', 1, 0, '', 3, 238, 1, ''), -(895, 192, 'Feinsicherung 5*20 200mA flink', 0, 5, 'Multimeter-Sicherung', 8, 63, 6, ''), -(896, 58, 'Wärmeleitpaste', 10, 1, 'Stück=Gramm', 8, 274, 5, ''), -(897, 51, 'Spax Senkkopf 4,5x30 TX20', 50, 0, 'Nicht gezählt', 8, 275, 6, ''), -(898, 51, 'Spax Senkkopf 4,0x35 Kreuz', 20, 0, 'nicht gezählt', 8, 276, 6, ''), -(899, 51, 'Schloßschrauben 5,0x30', 15, 0, '', 8, 276, 6, ''), -(900, 51, 'Spax Senkkopf 3,5x20 Kreuz', 25, 0, 'nicht gezählt', 8, 277, 6, ''), -(901, 54, 'Federring 5mm', 28, 1, 'nicht gezählt', 8, 277, 6, ''), -(902, 52, 'Sicherungsmutter M5 DIN985', 19, 0, '', 8, 277, 6, ''), -(903, 52, 'M6', 32, 0, '', 8, 278, 6, ''), -(904, 51, 'Spax Senkkopf 3,0x20 Kreuz', 25, 0, '', 8, 278, 6, ''), -(905, 51, 'Spax Senkkopf 2,5x10 Kreuz', 20, 0, '', 8, 278, 6, ''), -(906, 51, 'Maschinenschrauben Zylinderkopf M4x15 Innensechskant', 5, 0, '', 8, 279, 6, ''), -(907, 51, 'Maschinenschrauben Zylinderkopf M4x20 Innensechskant', 25, 0, '', 8, 279, 6, ''), -(908, 51, 'Maschinenschrauben Zylinderkopf M4x25 Innensechskant', 8, 0, '', 8, 279, 6, ''), -(909, 51, 'Spax Linsenkopf 4x40', 30, 0, '', 8, 281, 6, ''), -(910, 51, 'Spax Linsenkopf 4,5x15', 63, 0, '', 8, 281, 6, ''), -(911, 51, 'Spax Linsenkopf 4,5x25', 60, 0, '', 8, 280, 6, ''), -(912, 47, 'Bolzen (IKEA-Regal?) Ø6 L40mm', 50, 0, '', 8, 282, 6, ''), -(913, 201, 'Stahlstift Ø3 65mm', 40, 0, '', 8, 283, 6, ''), -(914, 51, 'Holzschraube Linsenkopf 5x70', 30, 0, '', 8, 284, 6, ''), -(915, 51, 'Holzschraube Linsenkopf 3,5x40 mit Schaft', 60, 0, '', 8, 285, 6, ''), -(916, 52, 'M8', 24, 0, '', 8, 286, 6, ''), -(917, 51, 'Scharnierschraube 6x10', 20, 0, '', 8, 286, 6, ''), -(918, 52, 'M6 Goldfarben', 4, 0, '', 8, 286, 6, ''), -(919, 52, 'M5', 154, 0, '', 8, 288, 6, ''), -(920, 52, 'M5 Viereckig', 7, 0, '', 8, 288, 6, ''), -(921, 51, 'Selbstschneidende Schraube 4,5x15 mit Unterlegscheibe+Gummi', 9, 0, '', 8, 288, 6, ''), -(922, 52, 'M4', 72, 0, '', 8, 289, 6, ''), -(923, 51, 'Maschinenschrauben Zylinderkopf M4x30 Innensechskant', 10, 0, '', 8, 289, 6, ''), -(924, 51, 'Maschinenschrauben Zylinderkopf M4x6 Innensechskant', 12, 0, '', 8, 289, 6, ''), -(925, 51, 'Maschinenschrauben Zylinderkopf M4x12 Innensechskant', 12, 0, '', 8, 290, 6, ''), -(926, 51, 'Maschinenschrauben Zylinderkopf M4x10 Innensechskant', 21, 0, '', 8, 290, 6, ''), -(927, 51, 'Maschinenschrauben Zylinderkopf M4x8 Innensechskant', 52, 0, '', 8, 290, 6, ''), -(928, 51, 'Maschinenschrauben Zylinderkopf M5x8 Innensechskant', 20, 0, '', 8, 287, 6, ''), -(929, 52, 'Käfigmutter M5', 8, 0, '', 8, 287, 6, ''), -(930, 52, 'Käfigmutter M6', 23, 0, '', 8, 287, 6, ''), -(931, 52, 'M3', 100, 0, '', 8, 326, 6, ''), -(932, 52, 'M2,5', 100, 0, '', 8, 326, 6, ''), -(933, 51, 'Maschinenschrauben Senkkopf M5x4 Innensechskant', 18, 0, '', 8, 326, 6, ''), -(934, 202, 'Diverse Federn', 1, 0, '', 8, 304, 6, ''), -(935, 51, 'Maschinenschrauben Senkkopf M5x8 Innensechskant', 14, 0, '', 8, 327, 6, ''), -(936, 51, 'Maschinenschrauben Senkkopf M5x12 Innensechskant', 11, 0, '', 8, 327, 6, ''), -(937, 51, 'Maschinenschrauben Linsenkopf mit Flansch M5x10 Innensechskant', 15, 0, '', 8, 327, 6, ''), -(938, 203, 'Diverse Dübel &#8960;8mm', 20, 0, '', 8, 325, 6, ''), -(939, 51, 'Maschinenschrauben Zylinderkopf M5x10 Innensechskant', 20, 0, '', 8, 331, 6, ''), -(940, 51, 'Maschinenschrauben Zylinderkopf M5x12 Innensechskant', 21, 0, '', 8, 331, 6, ''), -(941, 51, 'Maschinenschrauben Zylinderkopf M5x14 Innensechskant', 6, 0, '', 8, 331, 6, ''), -(942, 51, 'Maschinenschrauben Zylinderkopf M5x16 Innensechskant', 20, 0, '', 8, 329, 6, ''), -(943, 51, 'Maschinenschrauben Zylinderkopf M5x20 Innensechskant', 10, 0, '', 8, 329, 6, ''), -(944, 51, 'Maschinenschrauben Zylinderkopf M5x12 Innensechskant (kurzer Kopf)', 16, 0, '', 8, 329, 6, ''), -(945, 46, 'Schnellstarter für Leuchtstoffröhren Osram DEOS ST171 L 30-65W 220-240V', 2, 0, '', 8, 308, 6, ''), -(946, 51, 'Maschinenschrauben Linsenkopf M3,5x22 Kreuz', 1, 0, '', 8, 292, 6, ''), -(947, 51, 'Maschinenschrauben Linsenkopf M3,5x37 Kreuz', 2, 0, '', 8, 292, 6, ''), -(948, 51, 'Maschinenschrauben Linsenkopf M3,5x25 Kreuz', 13, 0, '', 8, 292, 6, ''), -(949, 59, 'Slotbleche für PC', 9, 0, '', 8, 115, 6, ''), -(950, 51, 'Spax Senkkopf 45x20 Kreuz', 100, 0, '', 8, 317, 6, ''), -(951, 51, 'Maschinenschrauben Zylinderkopf M4x12 Schlitz', 117, 0, '', 8, 295, 6, ''), -(952, 51, 'Maschinenschrauben Zylinderkopf M4x20 Schlitz', 20, 0, '', 8, 295, 6, ''), -(953, 51, 'Maschinenschrauben Linsenkopf M4x14 Schlitz', 4, 0, '', 8, 295, 6, ''), -(954, 51, 'Maschinenschrauben Zylinderkopf M6x16 Innensechskant', 9, 0, '', 8, 296, 6, ''), -(955, 51, 'Maschinenschrauben Zylinderkopf M6x14 Innensechskant', 13, 0, '', 8, 296, 6, ''), -(956, 51, 'Maschinenschrauben Zylinderkopf M6x12 Innensechskant', 14, 0, '', 8, 296, 6, ''), -(957, 51, 'Schraubhaken &#8960;4mm Gesamtlänge 9mm Schraubenlänge 45mm', 2, 0, '', 8, 313, 6, ''), -(958, 192, 'Schmelzsicherung DIAZED 10A 500V', 1, 0, '', 8, 312, 6, ''), -(959, 192, 'Schmelzsicherung DIAZED 16A 500V', 4, 0, '', 8, 311, 6, ''), -(960, 192, 'Schmelzsicherung DIAZED 20A 500V', 3, 0, '', 8, 309, 6, ''), -(961, 203, 'Diverse Dübel &#8960;6mm', 30, 0, '', 8, 301, 6, ''), -(962, 203, 'Dübel &#8960;12mm SX12x60 Fischer', 22, 0, '', 8, 332, 6, ''), -(963, 47, 'Spannhaken 100-180mm', 4, 0, '', 8, 324, 6, ''), -(964, 47, 'Kette 340mm Länge Gliederlänge 40mm', 5, 0, '', 8, 318, 6, ''), -(965, 51, 'Spax Linsenkopf 4x20', 40, 0, '', 8, 294, 6, ''), -(966, 52, 'Ringmutter C15 M6', 2, 0, '', 8, 294, 6, ''), -(967, 166, 'Diverse Lüsterklemmen', 21, 0, '', 8, 320, 6, ''), -(968, 47, 'Karabinerhaken 50x5mm für Seile bis Ø7mm ', 14, 0, '', 8, 319, 6, ''), -(969, 47, 'Eckwinkel 40x10mm Ø3mm 2-loch pro Seite', 2, 0, '', 8, 322, 6, ''), -(970, 47, 'Ersatzklinge für Cuttermesser', 1, 0, '', 8, 299, 6, ''), -(971, 51, 'Maschinenschrauben Senkkopf M5x9 Innensechskant', 3, 0, '', 8, 299, 6, ''), -(972, 51, 'Spax Senkkopf 5x60 Kreuz mit Schaft', 25, 0, '', 8, 321, 6, ''), -(973, 51, 'Maschinenschrauben Senkkopf M4x10 Innensechskant', 11, 0, '', 8, 338, 6, ''), -(974, 51, 'Maschinenschrauben Senkkopf M4x8 Innensechskant', 9, 0, '', 8, 338, 6, ''), -(975, 51, 'Maschinenschrauben Zylinderkopf M4x14 Innensechskant', 3, 0, '', 8, 338, 6, ''), -(976, 51, 'Maschinenschrauben Linsenkopf M2x18 Kreuz', 4, 0, '', 8, 302, 6, ''), -(977, 51, 'Maschinenschrauben Linsenkopf M2x32 Kreuz', 4, 0, '', 8, 302, 6, ''), -(978, 51, 'Maschinenschrauben Linsenkopf M2x24 Kreuz', 4, 0, '', 8, 302, 6, ''), -(979, 51, 'Spax Linsenkopf 4x15', 16, 0, '', 8, 335, 6, ''), -(980, 51, 'Maschinenschrauben Zylinderkopf M5x34 Innensechskant', 5, 0, '', 8, 335, 6, ''), -(981, 51, 'Spax 3,5x50 Torx', 6, 0, '', 8, 335, 6, ''), -(982, 51, 'Maschinenschrauben Zylinderkopf M4x70 Schlitz', 16, 0, '', 8, 293, 6, ''), -(983, 51, 'Maschinenschrauben Zylinderkopf M4x60 Schlitz', 4, 0, '', 8, 293, 6, ''), -(984, 51, 'Maschinenschrauben Zylinderkopf M4x8 Innensechskant flacher Kopf', 5, 0, '', 8, 337, 6, ''), -(985, 51, 'Spax 3x50 Torx', 4, 0, '', 8, 337, 6, ''), -(986, 51, 'Maschinenschrauben Zylinderkopf M4x16 Innensechskant', 6, 0, '', 8, 303, 6, ''), -(987, 51, 'Spax 4x40 Senkkopf Torx', 16, 0, '', 8, 337, 6, ''), -(988, 51, 'Maschinenschrauben Zylinderkopf M4x8 Schlitz', 30, 0, '', 8, 300, 6, ''), -(989, 51, 'Maschinenschrauben Linsenkopf mit Flansch M5x16 Innensechskant', 15, 0, '', 8, 300, 6, ''), -(990, 51, 'Maschinenschrauben Linsenkopf mit Flansch M5x8 Innensechskant', 11, 0, '', 8, 300, 6, ''), -(991, 51, 'Maschinenschrauben Zylinderkopf M6x20 Innensechskant', 21, 0, '', 8, 303, 6, ''), -(992, 51, 'Maschinenschrauben Zylinderkopf M6x25 Innensechskant', 7, 0, '', 8, 303, 6, ''), -(993, 51, 'Maschinenschrauben Senkkopf M4x14 Innensechskant', 8, 0, '', 8, 339, 6, ''), -(994, 51, 'Maschinenschrauben Senkkopf M4x6 Innensechskant', 15, 0, '', 8, 339, 6, ''), -(995, 51, 'Maschinenschrauben Senkkopf M4x4 Innensechskant', 6, 0, '', 8, 339, 6, ''), -(996, 48, 'CR2032', 10, 0, '', 8, 336, 6, ''), -(997, 172, 'WAGO Klemmen 5 Klemmstellen 1,0-2,5mm²', 33, 0, '', 8, 315, 6, ''), -(998, 192, 'Schmelzsicherung DIAZED 25A 500V', 3, 0, '', 8, 310, 6, ''), -(999, 172, 'WAGO Klemmen 5 Klemmstellen 1,0-1,5mm²', 7, 0, '', 8, 316, 6, ''), -(1000, 172, 'WAGO Klemmen 8 Klemmstellen 1,0-1,5mm²', 3, 0, '', 8, 316, 6, ''), -(1001, 172, 'WAGO Klemmen 3 Klemmstellen 1,6-2mm²', 1, 0, '', 8, 316, 6, ''), -(1002, 51, 'Maschinenschrauben Zylinderkopf M5x10 Innensechskant (kurzer Kopf)', 5, 0, '', 8, 298, 6, ''), -(1003, 51, 'Maschinenschrauben Senkkopf M6x8 Innensechskant', 5, 0, '', 8, 298, 6, ''), -(1004, 51, 'Maschinenschrauben Linsenkopf M6x12 Kreuz', 25, 0, '', 8, 351, 6, ''), -(1005, 51, 'Maschinenschrauben Senkkopf M6x16 Schlitz', 27, 0, '', 8, 306, 6, ''), -(1006, 51, 'Maschinenschrauben Sechskant M6x20', 6, 0, '', 8, 306, 6, ''), -(1007, 51, 'Maschinenschrauben Senkkopf M6x12 Innensechskant', 15, 0, '', 8, 297, 6, ''), -(1008, 51, 'Maschinenschrauben Linsenkopf mit Flansch M6x14 Innensechskant', 15, 0, '', 8, 297, 6, ''), -(1009, 51, 'Maschinenschrauben Linsenkopf mit Flansch M6x12 Innensechskant', 20, 0, '', 8, 297, 6, ''), -(1010, 47, 'Diverse Zahnriemen', 3, 0, '', 8, 323, 6, ''), -(1011, 47, 'Maschinenschrauben Zylinderkopf M10x30 Innensechskant', 4, 0, '', 8, 298, 6, ''), -(1012, 47, 'Maschinenschrauben Zylinderkopf M3x35 Innensechskant', 30, 0, '', 8, 316, 6, ''), -(1013, 51, 'Maschinenschrauben Senkkopf M4x7 Innensechskant', 5, 0, '', 8, 340, 6, ''), -(1014, 201, 'Stahlstift Ø2 28mm', 5, 0, '', 8, 340, 6, ''), -(1015, 201, 'Stahlstift Ø2 15mm', 6, 0, '', 8, 340, 6, ''), -(1016, 51, 'Maschinenschrauben Zylinderkopf M6x40 Innensechskant', 6, 0, '', 8, 314, 6, ''), -(1017, 51, 'Schlagschraube Ø4mm Länge 45mm Kreuz', 6, 0, '', 8, 314, 6, ''), -(1018, 51, 'Schlagschraube Ø3,5mm Länge 25mm Kreuz', 7, 0, '', 8, 314, 6, ''), -(1019, 54, 'Karosseriescheibe Innen-Ø5mm', 100, 0, '', 8, 305, 6, ''), -(1020, 201, 'Stahlstift Ø2 25mm', 4, 0, '', 8, 305, 6, ''), -(1021, 51, 'Spax Linsenkopf 4,5x12', 40, 0, '', 8, 305, 6, ''), -(1022, 204, 'Nagelschelle &#8960;7-11mm', 30, 0, '', 8, 333, 6, ''), -(1023, 204, 'Nagelschelle &#8960;5-7mm', 5, 0, '', 8, 333, 6, ''), -(1024, 52, 'Verkantmutter M6', 35, 0, '', 8, 291, 6, ''), -(1025, 60, 'Distanzhülsen Metall &#8960;2mm Länge 11mm', 4, 0, '', 8, 291, 6, ''), -(1026, 60, 'Distanzhülsen Metall &#8960;2mm Länge 13mm', 4, 0, '', 8, 291, 6, ''), -(1027, 204, 'Sonstiges Mix', 1, 0, 'Diverse Mechanik', 8, 330, 6, ''), -(1028, 204, 'Geräteeinbauhaken', 20, 0, '', 8, 328, 6, ''), -(1029, 201, 'Stahlstifte &#8960;2mm 35mm', 15, 0, '', 8, 334, 6, ''), -(1030, 51, 'Schrauben für Kunststoff MIX', 1, 0, '', 8, 334, 6, ''), -(1031, 51, 'Maschinenschrauben Linsenkopf mit Flansch M3x5 Torx', 6, 0, '', 8, 334, 6, ''), -(1032, 51, 'Schrauben für Kunststoff Senkkopf mit Flansch Ø5 Länge 6mm Kreuz', 9, 0, '', 8, 341, 6, ''), -(1033, 51, 'Schrauben für Kunststoff Senkkopf Ø4 Länge 12mm Torx', 15, 0, '', 8, 341, 6, ''), -(1034, 204, 'Nutstein 8mm M6', 8, 0, '', 8, 341, 6, ''), -(1035, 204, 'Nutenstein 6mm', 18, 0, '', 8, 342, 6, ''), -(1036, 204, 'Nutenstein 5mm', 7, 0, '', 8, 342, 6, ''), -(1037, 204, 'Nutstein 8mm Potentialausgleich', 5, 0, '', 8, 342, 6, ''), -(1038, 51, 'MIX M8', 13, 0, '', 8, 343, 6, ''), -(1039, 51, 'MIX M6', 29, 0, '', 8, 345, 6, ''), -(1040, 51, 'MIX M5', 47, 0, '', 8, 344, 6, ''), -(1041, 51, 'MIX M4', 32, 0, '', 8, 346, 6, ''), -(1042, 51, 'MIX M3', 305, 0, '', 8, 347, 6, ''), -(1043, 51, 'MIX M2,5', 49, 0, '', 8, 348, 6, ''), -(1044, 51, 'MIX Holzschrauben', 47, 0, '', 8, 349, 6, ''), -(1045, 51, 'MIX Spezialschrauben', 62, 0, '', 8, 350, 6, ''), -(1046, 51, 'Maschinenschrauben Linsenkopf M6x15 Kreuz', 5, 0, '', 8, 351, 6, ''), -(1047, 51, 'Maschinenschrauben Linsenkopf M6x10 Kreuz selbstsichernd', 8, 0, '', 8, 306, 6, ''), -(1048, 51, 'Spax Senkkopf 4,0x30 Kreuz', 11, 0, '', 8, 352, 6, ''), -(1049, 51, 'Spax Senkkopf 4,0x20 Kreuz', 9, 0, '', 8, 352, 6, ''), -(1050, 51, 'Selbstschneidende Schraube Linsenkopf4x15', 2, 0, '', 8, 352, 6, ''), -(1051, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 25mm', 4, 0, '', 8, 353, 6, 'Reichelt DA 25MM'), -(1052, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 13mm, dick', 8, 0, '', 8, 353, 6, ''), -(1053, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 12mm', 24, 0, '', 8, 353, 6, 'Reichelt DA 12MM'), -(1054, 51, 'Holzschraube Linsenkopf 5x50', 4, 0, '', 8, 354, 6, ''), -(1055, 51, 'Spax Senkkopf 4,5x70 Torx', 5, 0, '', 8, 353, 6, ''), -(1056, 51, 'Spax Senkkopf 4x35 Kreuz', 6, 0, '', 8, 355, 6, ''), -(1057, 51, 'Spax Senkkopf 4x35 Kreuz grobgewinde', 3, 0, '', 8, 355, 6, ''), -(1058, 51, 'Holzschraube Linsenkopf 5x55', 2, 0, '', 8, 355, 6, ''), -(1059, 51, 'MIX Spax Kreuz', 30, 0, '', 8, 358, 6, ''), -(1060, 203, 'Mehrzweckdübel &#8960;8mm MEA MZ8', 58, 0, '', 8, 397, 6, ''), -(1061, 203, 'Dübel &#8960;8mm MEA F8', 69, 0, '', 8, 403, 6, ''), -(1062, 51, 'Spax Senkkopf 6x140 Torx', 44, 0, '', 8, 404, 6, ''), -(1063, 201, 'Kammnägel 4,0x40mm', 231, 0, '', 8, 402, 6, ''), -(1064, 51, 'Spax Senkkopf 4,5x60 TX33', 153, 0, '', 8, 401, 6, ''), -(1065, 204, 'S-Haken SH40 Rundstahl 4mm galv. Verzinkt', 67, 0, '', 8, 399, 6, '1488 252'), -(1066, 203, 'Federklappdübel mit Scheibe', 8, 0, '', 8, 398, 6, ''), -(1067, 51, 'Schnellbauschrauben Senkkopf 3,9x25 Kreuz Rigips', 413, 0, '', 8, 400, 6, ''), -(1068, 54, 'Unterlegscheibe Innen-Ø8mm Außen-Ø24mm Dicke 2mm', 5, 0, '', 8, 418, 6, ''), -(1069, 54, 'Unterlegscheibe Innen-Ø4mm Außen-Ø12mm Dicke 1mm', 50, 0, '', 8, 418, 6, ''), -(1070, 54, 'Unterlegscheibe Innen-Ø5mm Außen-Ø16mm Dicke 1mm', 4, 0, '', 8, 418, 6, ''), -(1071, 54, 'Unterlegscheibe Innen-Ø6mm Außen-Ø12mm Dicke 1,5mm', 30, 0, '', 8, 418, 6, ''), -(1072, 54, 'Unterlegscheibe Innen-Ø3mm Außen-Ø11mm Dicke 1mm', 15, 0, '', 8, 418, 6, ''), -(1073, 54, 'Unterlegscheibe Innen-Ø8mm Außen-Ø16mm Dicke 1,5mm', 10, 0, '', 8, 418, 6, ''), -(1074, 54, 'Unterlegscheibe Innen-Ø5mm Außen-Ø10mm Dicke 1mm', 70, 0, '', 8, 418, 6, ''), -(1075, 54, 'Unterlegscheibe Innen-Ø6mm Außen-Ø18mm Dicke 1,5mm', 60, 0, '', 8, 418, 6, ''), -(1076, 51, 'Holzschraube Linsenkopf 4x12', 16, 0, '', 8, 356, 6, ''), -(1077, 54, 'Unterlegscheibe Innen-Ø4mm Außen-Ø9mm Dicke 1mm', 80, 0, '', 8, 418, 6, ''), -(1078, 51, 'Holzschraube Linsenkopf 4x30', 18, 0, '', 8, 356, 6, ''), -(1079, 54, 'Unterlegscheibe Innen-Ø6mm Außen-Ø19mm Dicke 1mm', 20, 0, '', 8, 418, 6, ''), -(1080, 52, 'M8 mit Flansch', 10, 0, '', 8, 356, 6, ''), -(1081, 54, 'Fächerscheibe Innen-Ø6mm Außen-Ø12mm Dicke 1mm', 50, 0, '', 8, 419, 6, ''), -(1082, 51, 'Schnellbauschrauben Senkkopf 3,5x40 Torx', 5, 0, '', 8, 357, 6, ''), -(1083, 51, 'Maschinenschrauben Zylinderkopf M6x30 Schlitz', 9, 0, '', 8, 419, 6, ''), -(1084, 51, 'Schnellbauschrauben Senkkopf 4,5x60 Torx', 13, 0, '', 8, 357, 6, ''), -(1085, 51, 'Schnellbauschrauben Senkkopf 4,5x30 Kreuz', 23, 0, '', 8, 357, 6, ''), -(1086, 54, 'Unterlegscheibe Quadratisch Innen-Ø8mm 18x28mm', 3, 0, '', 8, 419, 6, ''), -(1087, 54, 'Fächerscheibe Innen-Ø8mm Außen-Ø16mm Dicke 1,5mm', 2, 0, '', 8, 419, 6, ''), -(1088, 51, 'MIX M klein', 50, 0, '', 8, 366, 6, ''), -(1089, 54, 'Unterlegscheibe Innen-Ø4mm Außen-Ø9mm Dicke 1mm', 3, 0, '', 8, 419, 6, ''), -(1090, 51, 'Schnellbauschrauben Senkkopf 4x40 Kreuz', 9, 0, '', 8, 366, 6, ''), -(1091, 204, 'MIX Gummiringe', 19, 0, '', 8, 366, 6, ''), -(1092, 51, 'Maschinenschrauben Linsenkopf M3,5x15 mit Fächerscheibe', 15, 0, '', 8, 419, 6, ''), -(1093, 51, 'Schnellbauschrauben Senkkopf 3,5x50 Kreuz', 50, 0, '', 8, 368, 6, ''), -(1094, 54, 'Unterlegscheibe Innen-Ø2mm Außen-Ø8mm Dicke 1mm', 60, 0, '', 8, 419, 6, ''), -(1095, 51, 'Holzschraube Linsenkopf 4x20', 9, 0, '', 8, 368, 6, ''), -(1096, 54, 'Unterlegscheibe Innen-Ø3mm Außen-Ø8mm Dicke 0.5mm', 100, 0, '', 8, 419, 6, ''), -(1097, 51, 'Holzschraube Linsenkopf 4,5x25', 11, 0, '', 8, 368, 6, ''), -(1098, 54, 'Unterlegscheibe Innen-Ø4mm Außen-Ø8mm Dicke 0.5mm', 70, 0, '', 8, 419, 6, ''), -(1099, 54, 'Unterlegscheibe Innen-Ø3mm Außen-Ø9mm Dicke 1mm', 30, 0, '', 8, 419, 6, ''), -(1100, 201, 'MIX Nägel', 10, 0, '', 8, 359, 6, ''), -(1101, 60, 'Distanzhülsen, Metall, 6-Kant, M3 + M3,5, 5mm', 16, 0, '', 8, 359, 6, ''), -(1102, 51, 'Schnellbauschrauben Senkkopf 4x35 Kreuz', 13, 0, '', 8, 359, 6, ''), -(1103, 51, 'Schnellbauschrauben Senkkopf 4x70 Kreuz', 4, 0, '', 8, 360, 6, ''), -(1104, 51, 'Schnellbauschrauben Senkkopf 4x30 Kreuz', 15, 0, '', 8, 360, 6, ''), -(1105, 51, 'Maschinenschrauben Zylinderkopf M6x70 Innensechskant', 35, 0, '', 8, 371, 6, ''), -(1106, 54, 'Unterlegscheibe Innen-Ø11mm Außen-Ø30mm Dicke 2mm', 11, 0, '', 8, 371, 6, ''), -(1107, 51, 'Maschinenschrauben Zylinderkopf M6x75 Innensechskant', 2, 0, '', 8, 370, 6, ''), -(1108, 51, 'Maschinenschrauben Zylinderkopf M8x25 Innensechskant', 3, 0, '', 8, 370, 6, ''), -(1109, 51, 'Maschinenschrauben Zylinderkopf M8x40 Innensechskant', 6, 0, '', 8, 369, 6, ''), -(1110, 51, 'Maschinenschrauben Zylinderkopf M6x30 Innensechskant', 4, 0, '', 8, 369, 6, ''), -(1111, 51, 'Holzschraube Linsenkopf 4x40', 5, 0, '', 8, 369, 6, ''), -(1112, 54, 'MIX Unterlegscheibe', 30, 0, '', 8, 367, 6, ''), -(1113, 54, 'MIX Zahn-Fächerscheibe', 20, 0, '', 8, 367, 6, ''), -(1114, 54, 'MIX Federring', 2, 0, '', 8, 367, 6, ''), -(1115, 54, 'Unterlegscheibe für Käfigschrauben', 3, 0, '', 8, 361, 1, ''), -(1116, 47, 'MIX für Mini-Kippschalter und Buchsen', 15, 0, '', 8, 361, 6, ''), -(1117, 52, 'MIX Muttern', 7, 0, '', 8, 361, 6, ''), -(1118, 51, 'Maschinenschrauben Linsenkopf M2,5x10 Kreuz', 4, 0, '', 8, 362, 6, ''), -(1119, 51, 'Schnellbauschrauben Senkkopf 5x30 Kreuz', 58, 0, '', 8, 362, 6, ''), -(1120, 51, 'Schnellbauschrauben Senkkopf 3x20 Kreuz', 29, 0, '', 8, 362, 6, ''), -(1121, 51, 'MIX Schweissbolzen M4', 12, 0, '', 8, 364, 6, ''), -(1122, 204, 'MIX Sicherungsscheibe', 2, 0, '', 8, 364, 6, ''), -(1123, 192, 'Feinsicherung 5*20 2A flink', 0, 5, '', 8, 63, 6, ''), -(1124, 192, 'Feinsicherung 5*20 400mA flink', 0, 5, '', 8, 63, 6, ''), -(1125, 192, 'Schmelzsicherung DIAZED 35A 500V', 1, 0, '', 8, 312, 6, ''), -(1126, 94, 'LED 5mm rot', 2000, 0, '', 8, 395, 6, ''), -(1127, 47, '<ysdsafs', 0, 2, 'dsjsdlkj', 16, 6, 2, '1'), -(1128, 60, 'Distanzhülsen, Metall, 6-Kant, M3 + M3,5, 6mm', 20, 0, '', 8, 365, 6, '0'), -(1129, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 7mm, dick', 4, 0, '', 8, 365, 6, '0'), -(1130, 60, 'Distanzhülsen, Metall, 6-Kant, M3, 9mm', 1, 0, '', 8, 365, 6, '0'), -(1131, 51, 'Maschinenschrauben Linsenkopf M4x12 Kreuz +Schlitz', 14, 0, '', 8, 365, 6, ''), -(1132, 173, 'Steckverbinder Din41617 Stecker 31-polig gewinkelt', 6, 0, '', 8, 217, 1, ''), -(1133, 192, 'Temperatursicherung Microtemp Tf 240°C', 2, 0, '', 8, 217, 1, ''), -(1134, 155, '10k&#937; 5% 1/2W', 19, 0, '', 8, 217, 1, ''), -(1135, 155, '68k&#937; 5% 1/4W', 6, 0, '', 8, 223, 1, ''), -(1136, 156, '1.05 kOhm, 1% Toleranz, 100^-6/K Temp.-Koeffizient', 1, 0, '', 8, 223, 1, ''), -(1137, 155, '2,7k&#937; 5% 1/4W', 1, 0, '', 8, 223, 6, ''), -(1138, 155, '680k&#937; 5% 1/4W', 2, 0, '', 8, 223, 1, ''), -(1139, 156, '2.3 kOhm, 1% Toleranz, 100^-6/K Temp.-Koeffizient', 2, 0, '', 8, 223, 1, ''), -(1140, 155, '470k&#937; 5% 1/4W', 14, 0, '', 8, 226, 1, ''), -(1141, 155, '480k&#937; 5% 1/2W', 1, 0, '', 8, 226, 1, ''), -(1142, 155, '27&#937; 1/2W 5%', 1, 0, '', 8, 226, 1, ''), -(1143, 155, '27k&#937; 5% 1/4W', 16, 0, '', 8, 226, 1, ''), -(1144, 155, '160&#937; 1/4W 5%', 1, 0, '', 8, 226, 1, ''), -(1145, 156, '22,1k&#937; 1/4W 1% 50^-6/K Temp.-Koeffizient', 3, 0, '', 8, 218, 1, ''), -(1146, 155, '56k&#937; 1/4W 5%', 2, 0, '', 8, 218, 1, ''), -(1147, 155, '27k&#937; 5% 1/2W', 1, 0, '', 8, 218, 1, ''), -(1148, 155, '33k&#937; 5% 1/4W', 5, 0, '', 8, 218, 1, ''), -(1149, 155, '330&#937; 5% 1/2W', 100, 0, 'Eventuell Fehler beim Einlagern - Bauteile befinden sich NICHT in der Kiste.', 8, 218, 1, ''), -(1150, 155, '10&#937; 5% 1/2W', 2, 0, '', 8, 224, 1, ''), -(1151, 155, '3,3k&#937; 5% 1/2W', 1, 0, '', 8, 224, 1, ''), -(1152, 155, '10M&#937; 1/4W 5%', 1, 0, '', 8, 224, 1, ''), -(1153, 155, '1k&#937; 5% 1/2W', 2, 0, '', 8, 224, 1, ''), -(1154, 155, '1,5K&#937; 5% 1/2W', 11, 0, '', 8, 224, 1, ''), -(1155, 204, 'O-Ringe Mix', 9, 0, '', 8, 307, 6, ''), -(1156, 204, 'Metallkleinteile Mix', 100, 0, '', 8, 396, 1, ''), -(1157, 204, 'Gerätefüße 20x20mm Höhe 7mm Grau', 18, 0, '', 8, 116, 1, ''), -(1158, 204, 'Gerätefüße &#8960;13mm Höhe 3,5mm Schwarz', 4, 0, '', 8, 116, 1, ''), -(1159, 204, 'Gerätefüße &#8960;13mm Höhe 3,5mm Weiß', 36, 0, '', 8, 116, 1, ''), -(1160, 204, 'Gerätefüße &#8960;8mm Höhe 13mm Schwarz', 2, 0, '', 8, 116, 1, ''), -(1161, 129, 'Pri 220V 50-60Hz Sek 21V 2,5A 28V 2,7A', 1, 0, '', 8, 101, 1, ''), -(1162, 171, 'SUB-D 25-pol männlich mit Gehäuse ', 6, 0, '', 8, 117, 1, ''), -(1163, 170, 'XLR-Buchse Neutrik mit Einbauring', 12, 0, '', 8, 417, 3, ''), -(1164, 106, 'C2458', 2, 0, '', 3, 260, 1, ''), -(1165, 106, 'PN2222A', 1, 0, '', 3, 260, 1, ''), -(1166, 106, 'BF324', 1, 0, '', 3, 260, 1, ''), -(1167, 106, 'GC189', 1, 0, '', 3, 260, 1, ''), -(1168, 107, 'C712', 1, 0, '', 3, 260, 1, ''), -(1169, 107, 'MPS A93 EBCL', 1, 0, '', 3, 260, 1, ''), -(1170, 186, '78L05A', 3, 0, '', 3, 260, 1, ''), -(1171, 50, 'Aufkleber "Laserstrahlung"', 1, 0, '', 8, 260, 1, ''), -(1172, 194, 'RAFI Signalleuchte 7mm grün 24V 35mA', 5, 0, '', 8, 260, 1, ''), -(1173, 177, 'LM3914 - Dot/Bar Display Driver', 1, 0, '', 8, 260, 1, ''), -(1174, 107, 'BD810', 1, 0, '', 1, 256, 1, ''), -(1175, 106, 'MJE340', 1, 0, '', 2, 256, 1, ''), -(1176, 186, '7805CT mit Kühlkörper', 1, 0, '', 2, 256, 1, ''), -(1177, 106, 'TIP29B', 1, 0, '', 2, 256, 1, ''), -(1178, 106, 'BD809', 1, 0, '', 2, 256, 1, ''), -(1179, 107, 'BD708', 1, 0, '', 2, 256, 1, ''), -(1180, 106, 'TIP110', 1, 0, '', 2, 256, 1, ''), -(1181, 138, '22µF 40V RM5', 1, 0, '', 5, 256, 1, ''), -(1182, 138, '47µF 25V RM5', 1, 0, '', 5, 256, 1, ''), -(1183, 191, 'Brückengleichrichter B40C5000/3300 +WW-', 1, 0, '', 8, 256, 1, ''), -(1184, 157, '0,1&#937; 5%', 1, 0, '', 8, 248, 1, ''), -(1185, 46, 'Conexant 3652B-RD02D110 Analogmodem', 1, 0, '', 8, 248, 1, ''), -(1186, 46, 'Modem Card B93M1015-F', 1, 0, '', 8, 248, 1, ''), -(1187, 99, 'Einbaufassung für LED 3mm', 7, 0, '', 8, 248, 3, ''), -(1188, 135, '47µF 16V', 1, 0, '', 5, 248, 1, ''), -(1189, 135, '47µF 50V radial', 1, 0, '', 5, 248, 1, ''), -(1190, 192, 'Sicherungshalter, 5mm, max. 6, 3A-250V', 11, 0, '', 5, 248, 1, ''), -(1191, 135, '47µF 10V radial', 1, 0, '', 4, 248, 1, ''), -(1192, 135, '2,2µF 50V', 1, 0, '', 4, 248, 1, ''), -(1193, 94, 'LED 5mm weiß', 1, 0, '', 4, 248, 1, ''), -(1194, 161, 'Miniatur-Taster 1 x Aus/(Ein) rot', 2, 0, '', 8, 236, 1, ''), -(1195, 161, 'Miniatur-Taster 1 x Aus/(Ein) Hellblau', 3, 0, '', 8, 236, 1, ''), -(1196, 155, '330&#937; 5% 1/2W', 1, 0, '', 8, 267, 1, ''), -(1197, 161, 'Miniatur-Taster 1 x Aus/(Ein) blau', 3, 0, '', 8, 236, 1, ''), -(1198, 161, 'Miniatur-Taster 1 x Ein/(Aus) rot', 1, 1, '', 8, 236, 1, ''), -(1199, 170, 'Mini-DIN-Stecker 3pol Komplett', 4, 0, '', 8, 267, 1, ''), -(1200, 161, 'Miniatur-Taster 1 x Aus/(Ein) grün', 2, 1, '', 8, 236, 1, ''), -(1201, 155, '12&#937; 1/2W 5%', 2, 0, 'gebraucht', 8, 267, 1, ''), -(1202, 46, 'AzureWave 802.11b/g mini PCI-E', 1, 0, '', 8, 267, 1, ''), -(1203, 161, 'Taster Printmontage', 6, 0, '', 8, 236, 1, ''), -(1204, 161, 'Gehäuse Taster Printmontage', 10, 0, '', 8, 236, 1, ''), -(1205, 155, '47k&#937; 5% 1/2W', 2, 0, '', 8, 267, 1, ''), -(1206, 126, '5µH 10A', 2, 0, '', 8, 236, 1, ''), -(1207, 160, 'Kippschalter 1 x Ein/Aus/Ein tastent/0/tastent', 2, 0, '', 8, 236, 1, ''), -(1208, 151, 'Trimmer, stehend, 25 K-Ohm', 2, 0, 'neu', 8, 236, 1, ''), -(1209, 156, '464 Ohm, 1/4W 1% Toleranz', 9, 0, '', 8, 229, 1, ''), -(1210, 156, '1,31k&#937; unbekannte Toleranz 1/4W', 8, 0, '', 8, 229, 1, ''), -(1211, 162, 'Aderendhülsen 2.5mm² mit Kragen', 56, 0, 'neu', 8, 262, 1, ''), -(1212, 155, '220&#937; 1/2W 5%', 1, 0, '', 8, 229, 1, ''), -(1213, 198, '10k&#937; 2W 1%', 1, 0, '', 8, 229, 1, ''), -(1214, 198, '22&#937; 2W 5%', 1, 0, '', 8, 229, 1, ''), -(1215, 162, 'Ringkabelschuhe 2,5 mm² Blau Loch-Ø=6 mm', 2, 0, 'neu', 8, 262, 1, ''), -(1216, 162, 'Ringkabelschuhe 4 mm² Blau Loch-Ø=4 mm', 10, 0, 'neu', 8, 262, 1, ''), -(1217, 162, 'Ringkabelschuhe 4 mm² Gelb Loch-Ø=10 mm', 1, 0, '', 8, 262, 1, 'neu'), -(1218, 156, '131,7k&#937; 1/4W unbekannte Toleranz', 9, 0, '', 8, 230, 1, ''), -(1219, 156, '9,46k&#937; 1/4W unbekannte Toleranz', 8, 0, '', 8, 230, 1, ''), -(1220, 162, 'Stiftkabelschuhe 2,5 mm² Blau', 59, 0, 'neu', 8, 262, 1, ''), -(1221, 156, '246&#937; 1/4W unbekannte Toleranz', 9, 0, '', 8, 230, 1, ''), -(1222, 162, 'Stiftkabelschuhe 1,5 mm² Rot', 11, 0, 'neu', 8, 262, 1, ''), -(1223, 156, '458&#937; 1/4W unbekannte Toleranz', 9, 0, '', 8, 230, 1, ''), -(1224, 162, 'Stiftkabelschuhe 4 mm² Gelb', 20, 0, 'neu', 8, 262, 1, ''), -(1225, 162, 'Stiftkabelschuhe 10 mm²', 2, 0, 'neu', 8, 262, 1, ''), -(1226, 156, '4,18k&#937; 1/4W unbekannte Toleranz', 8, 0, '', 8, 230, 1, ''), -(1227, 168, 'FLACHSTECKER 2,5mm² 6,3 X 0,8 Blau', 1, 0, 'neu', 8, 262, 1, ''), -(1228, 156, '61,8k&#937; 1/4W unbekannte Toleranz', 8, 0, '', 8, 232, 1, ''), -(1229, 156, '114&#937; 1/4W unbekannte Toleranz', 10, 0, '', 8, 232, 1, ''), -(1230, 156, '3,89k&#937; 1/4W unbekannte Toleranz', 8, 0, '', 8, 232, 1, ''), -(1231, 184, 'HCF4081BE', 1, 0, '', 13, 262, 1, ''), -(1232, 156, '1,2k&#937; 1/4W unbekannte Toleranz', 7, 0, '', 8, 232, 1, ''), -(1233, 155, '13k&#937; 1/4W 5%', 1, 0, '', 8, 232, 1, ''), -(1234, 174, 'Gehäuse für Flachstecker 6,3x0,8 2-Fach W', 8, 0, 'neu', 8, 237, 1, ''), -(1235, 174, 'Gehäuse für Flachstecker 6,3x0,8 2-Fach M', 9, 0, 'neu', 8, 237, 1, ''), -(1237, 156, '1&#937; stehend', 1, 0, 'neu', 4, 235, 1, ''), -(1238, 171, 'Stiftleiste 10pol', 9, 0, 'neu', 4, 235, 1, ''), -(1240, 172, 'Isolationshülsen 5-Fach 1,5-2,5mm²', 6, 0, 'neu', 8, 235, 1, ''), -(1241, 194, 'Signallampe rot 230V Snapin-Montage 6,3 * 0,8', 1, 0, '', 8, 235, 1, ''), -(1242, 160, 'Kippschalter 1 x Ein/Aus 250V 6A', 1, 0, '', 8, 235, 1, ''), -(1243, 183, 'AM26LS31CN QUADRUPLE DIFFERENTIAL LINE DRIVER ', 1, 0, '', 8, 269, 1, ''), -(1244, 183, 'AM26LS32ACN QUAD EIA-422/3 LINE RECEIVER WITH THREE.STATE OUTPUTS', 1, 0, '', 8, 269, 1, ''), -(1245, 108, 'D972 (S2D972)', 4, 0, '', 1, 235, 1, ''), -(1246, 171, 'Stiftleiste 2x3pol', 1, 0, '', 4, 269, 1, ''), -(1247, 118, '0,1µF 630V- MP J/S', 2, 0, '', 8, 269, 1, ''), -(1248, 198, '1&#937; 10% 4W', 1, 0, '', 8, 269, 1, ''), -(1249, 160, 'Schiebeschalter 3-Stufig', 2, 0, '', 8, 269, 1, ''), -(1250, 160, 'Schiebeschalter 2-Stufig', 1, 0, '', 8, 269, 1, ''), -(1251, 106, 'D468C (2SD468C)', 6, 0, '', 3, 235, 1, ''), -(1252, 107, 'B562C (2SB562C)', 7, 0, '', 3, 235, 1, ''), -(1253, 192, 'Feinsicherung 6*32 1,25A mittelträge', 1, 0, '', 8, 269, 1, ''), -(1254, 192, 'Feinsicherung 6*25 3A BS 1362', 1, 0, '', 8, 269, 1, ''), -(1255, 106, 'BU110', 1, 0, '', 10, 247, 1, ''), -(1256, 106, 'KD502 2N5302', 1, 0, '', 10, 247, 1, ''), -(1257, 190, 'Bananenstecker 4mm rot Hirschmann', 1, 0, '', 8, 235, 1, ''), -(1258, 190, 'Bananenstecker 4mm grün Hirschmann', 1, 0, '', 8, 233, 1, ''), -(1259, 178, '2716', 2, 0, '', 8, 233, 1, ''), -(1260, 107, 'SFT353', 1, 0, '', 8, 247, 1, ''), -(1261, 186, 'LM723CH', 1, 0, '', 8, 247, 1, ''), -(1262, 192, 'Feinsicherung 5*20 500mA mittelträge', 1, 0, '', 8, 247, 1, ''), -(1263, 182, 'P82C211', 1, 0, '', 8, 233, 1, ''), -(1264, 182, 'P82C206', 1, 0, '', 8, 233, 1, ''), -(1265, 182, 'P82C212', 1, 0, '', 8, 233, 1, ''), -(1266, 180, 'CS80C286', 1, 0, '', 8, 233, 1, ''), -(1267, 189, 'XC2018-50PC68CI', 15, 0, '', 8, 233, 1, ''), -(1268, 182, 'D71055L', 15, 0, '', 8, 233, 1, ''), -(1269, 181, 'ULN2004A', 1, 0, '', 14, 233, 1, ''), -(1270, 184, 'CD4001AE', 1, 0, '', 14, 233, 1, ''), -(1271, 107, 'B765 (2SB765)', 10, 0, '', 42, 255, 1, ''), -(1272, 101, '2NC2646', 1, 0, '', 20, 251, 1, ''), -(1273, 107, 'AF239', 1, 0, '', 20, 251, 1, ''), -(1274, 107, 'AF106', 1, 0, '', 20, 251, 1, ''), -(1275, 107, '2N2906A', 1, 0, '', 20, 251, 1, ''), -(1276, 106, '2N2369', 1, 0, '', 20, 251, 1, ''), -(1277, 118, '0,33µF Mix', 6, 1, '', 8, 77, 1, ''), -(1278, 118, '0,033µF Mix', 3, 0, '', 8, 77, 1, ''), -(1279, 181, 'HCF4053BE', 2, 0, '', 14, 251, 1, ''), -(1280, 118, '0,47µF Mix', 15, 0, '', 8, 77, 1, ''), -(1281, 118, '0,047µF Mix', 6, 0, '', 8, 77, 1, ''), -(1282, 118, '0,1µF Mix', 20, 0, '', 8, 77, 1, ''), -(1283, 118, '0,68µF Mix', 1, 0, '', 8, 77, 1, ''), -(1284, 118, '0,15µF Mix', 6, 0, '', 8, 77, 1, ''), -(1285, 118, '0,22µF Mix', 8, 0, '', 8, 77, 1, ''), -(1286, 118, 'Tantal-Kondensator-Mix', 20, 0, '', 8, 77, 1, ''), -(1287, 184, 'HCF4053', 1, 0, '', 14, 251, 1, ''), -(1288, 181, 'HCF4053BE', 1, 0, '', 14, 251, 1, ''), -(1289, 184, 'HBF4001AE', 100, 0, '', 13, 251, 1, ''), -(1290, 162, 'Einzeladerverbinder UY2-D Scotchlok', 89, 0, 'neu', 8, 264, 1, ''), -(1291, 163, 'MIX Relais', 7, 0, '', 8, 264, 1, ''), -(1292, 106, 'BC337', 1, 0, '', 3, 259, 1, ''), -(1293, 106, 'MPSA43', 1, 0, '', 3, 259, 1, ''), -(1294, 106, 'BC174A', 1, 0, '', 3, 259, 1, ''), -(1295, 102, '2N5064', 1, 0, '', 3, 259, 1, ''), -(1296, 107, 'BC381', 1, 0, '', 3, 259, 1, ''), -(1297, 107, 'BC307B', 1, 0, '', 3, 259, 1, ''), -(1298, 107, 'A642 (2SA642)', 1, 0, '', 3, 259, 1, ''), -(1299, 178, '27C2001', 2, 0, '', 8, 259, 1, ''), -(1300, 106, 'D1265 (2SD1265A)', 1, 0, '', 2, 259, 1, ''), -(1301, 194, 'Blitzlampe (Einweg)', 3, 0, 'neu', 8, 249, 1, ''), -(1302, 46, 'IR Modul (Conrad)', 1, 0, '', 8, 249, 6, ''), -(1303, 163, 'Reedrelais', 1, 0, 'neu', 8, 249, 1, ''), -(1304, 163, 'Reedrelais', 1, 0, 'neu', 8, 249, 1, ''), -(1305, 99, 'LED Klippsfassung Kunststoff 5mm', 7, 0, '', 8, 249, 1, ''), -(1306, 141, '1,5nF 630V MKT', 2, 0, 'neu', 8, 249, 1, ''), -(1307, 204, 'Cutter für Brother P-Toutch', 1, 0, '', 8, 249, 1, ''), -(1308, 204, 'Gerätefüße D-Link', 4, 0, '', 8, 249, 1, ''), -(1309, 194, 'Glimmlampe', 1, 0, '', 5, 249, 1, ''), -(1310, 183, 'M74LS240P', 2, 0, '', 16, 249, 1, ''), -(1311, 170, 'DIN-Buchsen 8 polig, Lötanschlüsse, X', 4, 0, 'neu', 8, 252, 1, ''), -(1312, 168, 'Wannenstecker 10polig', 16, 0, 'neu', 4, 252, 1, ''), -(1313, 115, '1N5828 incl. Kühlkörper', 1, 1, '', 8, 252, 1, ''), -(1314, 161, 'Kippschalter THT Tastfunktion 1842.6031', 13, 0, 'Mentor', 4, 252, 1, ''), -(1315, 161, 'Kippschalter THT Tastfunktion 1847.6031', 13, 0, 'Mentor', 4, 252, 1, ''), -(1316, 186, 'LM320 MLP12', 1, 0, '', 1, 251, 1, ''), -(1317, 111, 'BUZ20', 1, 0, '', 2, 251, 1, ''), -(1318, 106, 'C3157 (2SC3157)', 10, 0, '', 1, 251, 1, ''), -(1319, 183, '74F283', 2, 0, '', 14, 251, 1, ''), -(1320, 183, '74LS367AN', 2, 0, '', 14, 251, 1, ''), -(1321, 183, '74ALS250N', 1, 0, '', 16, 251, 1, ''), -(1322, 183, 'SN74221N', 1, 0, '', 14, 251, 1, ''), -(1323, 183, '74LS368ANA', 1, 0, '', 14, 251, 1, ''), -(1324, 183, 'SN74191N', 1, 0, '', 14, 251, 1, ''), -(1325, 183, '74LS175', 3, 0, '', 14, 251, 1, ''), -(1326, 183, '74LS373', 9, 0, '', 16, 258, 1, ''), -(1327, 183, 'M74LS642-1P', 5, 0, '', 16, 258, 1, ''), -(1328, 183, 'SN7405N', 1, 0, '', 13, 258, 1, ''), -(1329, 183, 'SN7412N', 1, 0, '', 13, 258, 1, ''), -(1330, 183, 'SN74LS02N', 3, 0, 'neu', 13, 258, 1, ''), -(1331, 183, 'DM74LS08N', 2, 0, '', 13, 258, 1, ''), -(1332, 183, 'SN74LS08N', 2, 0, '', 13, 258, 1, ''), -(1333, 183, 'SN7403N', 3, 0, '', 13, 258, 1, ''), -(1334, 183, 'MC74F10N', 4, 0, '', 13, 258, 1, ''), -(1335, 183, 'SN7404N', 6, 0, '', 13, 258, 1, ''), -(1336, 106, 'BC557', 1, 0, '', 3, 261, 1, ''), -(1337, 106, 'BC548C', 1, 0, '', 3, 261, 1, ''), -(1338, 183, 'SN7414N', 4, 0, '', 13, 261, 1, ''), -(1339, 183, 'SN7400N', 16, 0, '', 13, 261, 1, ''), -(1340, 183, 'SN7407N', 10, 0, '', 13, 261, 1, ''), -(1341, 183, 'SN74425N', 2, 0, '', 13, 261, 1, ''), -(1342, 183, 'SN74LS32N', 7, 0, '', 13, 261, 1, ''), -(1343, 183, '74LS86', 1, 0, '', 13, 261, 1, ''), -(1344, 183, 'DM7425N', 1, 0, '', 13, 261, 1, ''), -(1345, 183, 'DM74LS30N', 3, 0, '', 13, 261, 1, ''), -(1346, 183, '74LS20N', 3, 0, '', 13, 271, 1, ''), -(1347, 183, 'MC14503BCL', 2, 0, '', 14, 271, 1, ''), -(1348, 185, 'L272M', 1, 0, '', 12, 271, 1, ''), -(1349, 183, 'MC1733CP', 1, 0, '', 13, 271, 1, ''), -(1350, 183, '7438N', 1, 0, 'Quad 2-input positive-NAND buffers with open collector outputs', 13, 271, 1, ''), -(1351, 183, '74LS74', 5, 0, 'Dual Positive-Edge-Triggered D Flip-Flops', 13, 271, 1, ''), -(1352, 183, 'SN75188N', 2, 0, 'Quadruple Line Driver', 13, 271, 1, ''), -(1353, 183, '74LS245', 4, 0, 'OCTAL BUS TRANSCEIVER', 16, 271, 1, ''), -(1354, 183, '74LS273', 3, 0, 'Octal D-type Positive-edge-triggered Flip-Flop', 16, 271, 1, ''), -(1355, 183, 'MC14538', 4, 0, 'Dual Precision\r\nRetriggerable/Resettable\r\nL SUFFIX\r\nCERAMIC\r\nCASE 620\r\nMonostable Multivibrator\r\n', 14, 271, 1, ''), -(1357, 180, 'Intel P8042AH', 1, 0, '', 39, 420, 1, ''), -(1358, 180, 'HD46800', 1, 0, '', 39, 420, 1, ''), -(1359, 180, 'D7508CC42 NEC', 1, 0, '4-bit, single-chip CMOS microcomputer, 4096 x 8 bir ROM, 224 x 4 bit RAM, 410KHz', 39, 420, 1, ''), -(1360, 177, 'WD1010A-PL Winchester Disk Controller', 1, 0, '', 39, 420, 1, ''), -(1361, 180, 'MAB 8041A', 1, 0, '', 39, 420, 1, ''), -(1362, 183, 'SN74LS157N', 2, 0, '', 14, 424, 1, ''), -(1363, 183, 'SN74LS164N', 1, 0, '', 13, 424, 1, ''), -(1364, 183, 'SN74ALS174N', 3, 0, '', 14, 424, 1, ''), -(1365, 183, '74F174PC', 2, 0, '', 14, 424, 1, ''), -(1366, 183, 'CD74HC174E', 1, 0, '', 14, 424, 1, ''), -(1367, 183, 'CD74HCT174E', 1, 0, '', 14, 424, 1, ''), -(1368, 183, 'DM74LS174N', 1, 0, '', 14, 424, 1, ''), -(1369, 183, '74F164PC', 2, 0, '', 13, 424, 1, ''), -(1370, 183, 'SN74ALS137N', 1, 0, '', 14, 424, 1, ''), -(1371, 183, 'DM74LS194AN', 2, 0, '', 14, 424, 1, ''), -(1372, 183, 'SN74ALS251N', 2, 0, '', 14, 424, 1, ''), -(1373, 183, 'SN74LS28N', 1, 0, '', 13, 424, 1, ''), -(1374, 183, 'SN74LS122N', 2, 0, '', 13, 424, 1, ''), -(1375, 183, 'SN74LS257AN', 1, 0, '', 14, 425, 1, ''), -(1376, 183, 'CD74HC259E', 2, 0, '', 14, 425, 1, ''), -(1377, 183, 'PC74HC541P', 2, 0, '', 16, 425, 1, ''), -(1378, 183, 'SN74LS597N', 1, 0, '', 14, 425, 1, ''), -(1379, 185, 'TL062CDP', 6, 0, '', 12, 425, 1, ''), -(1380, 185, 'SN74S374AN', 1, 0, '', 16, 425, 1, ''), -(1381, 183, 'SN74LS396N', 1, 0, '', 14, 425, 1, ''), -(1382, 183, 'SN74LS266N', 1, 0, '', 13, 425, 1, ''), -(1383, 183, 'T74LS352B1', 1, 0, '', 14, 425, 1, ''), -(1384, 179, 'AM21L41-25PC', 1, 0, '4K nMOS Static RAM (4096x1)', 15, 421, 1, ''), -(1385, 177, 'HD6850P', 1, 1, 'Interface, NMOS ACIA (asynchronous communication interface adapter) with 1.0 MHz clock frequency', 43, 421, 1, ''), -(1386, 179, 'HM6116P-2', 1, 0, '2Kx8 CMOS STATIC', 43, 421, 1, ''), -(1387, 177, 'DM74154N', 1, 0, '4-Line to 16-Line Decoders/Demultiplexers ', 43, 421, 1, ''), -(1388, 179, 'AM9128-20PC', 4, 0, '2048x8 Static RAM', 43, 421, 1, ''), -(1389, 179, 'D2114A-5', 1, 0, 'Static RAM, 1Kx4, 18 Pin', 15, 421, 1, ''), -(1390, 184, 'CD4011BCN', 1, 0, '', 13, 421, 1, ''), -(1391, 177, 'SAB8259AD', 2, 0, 'Priority Interrupt Controller - 8-level,Expandable to 64 ', 23, 421, 1, ''), -(1392, 179, 'TC5565PL-12', 5, 0, '64k CMOS Static RAM', 23, 421, 1, ''), -(1393, 185, 'MC1711CP', 4, 0, 'Dual Sense Amplifiers ', 13, 422, 1, ''), -(1394, 183, '74S153N', 1, 0, '', 14, 422, 1, ''), -(1395, 179, 'HM6264LP-12', 2, 0, '64 k SRAM (8-kword x 8-bit)', 23, 422, 1, ''), -(1396, 179, 'HM6116ALP-20', 2, 0, '', 43, 421, 1, ''), -(1397, 179, 'D43256C-15L', 2, 0, 'Static RAM, 32Kx8', 23, 422, 1, ''), -(1398, 179, 'HM62256LP-12', 1, 0, '32,768-word ´ 8-bit High Speed CMOS Static RAM', 23, 422, 1, ''), -(1399, 179, 'HM6264ALP-15', 3, 0, 'HM6264LP-12', 23, 422, 1, ''), -(1400, 179, 'TMM2016P-1', 1, 0, 'Static RAM, Dynamic RAM, Video RAM', 43, 422, 1, ''), -(1401, 177, 'DM74LS154N', 1, 0, '', 43, 421, 1, ''), -(1402, 177, 'TBA540', 1, 0, '', 14, 422, 1, ''), -(1403, 177, 'TBA530', 1, 0, 'RGB Matrix Pre-Amplifier', 14, 422, 1, ''), -(1404, 177, 'TBA520', 1, 0, 'Pal TV Chroma Demodulator ', 14, 422, 1, ''), -(1405, 177, 'TBA120', 3, 0, 'Sound I.F. amplifier/demodulator for TV', 13, 425, 1, ''), -(1406, 185, 'LM1877N', 8, 0, '', 13, 423, 1, ''), -(1407, 184, 'CD4070BCN', 3, 0, '', 13, 423, 1, ''), -(1408, 184, 'CD74HC4053E', 2, 0, '', 14, 423, 1, ''), -(1409, 177, 'TBA120S', 2, 0, '', 13, 423, 1, ''), -(1410, 183, 'SN74ÖS26N', 1, 0, '', 13, 421, 1, ''), -(1411, 183, 'SN74LS590N', 1, 0, '', 14, 423, 1, ''), -(1412, 183, 'DM74ALS576AN', 1, 0, '', 16, 423, 1, ''), -(1413, 177, 'LM311P', 1, 0, 'DIFFERENTIAL COMPARATORS WITH STROBES\r\n', 12, 423, 1, ''), -(1414, 187, 'S21ME4', 2, 0, '', 17, 423, 1, ''), -(1415, 184, 'CD4043BCN', 1, 0, '', 14, 9, 3, ''), -(1416, 179, 'HM4864P-2', 14, 0, '65536 x 1-Bit DRAM ', 14, 423, 1, ''), -(1417, 184, 'CD4049UBF', 1, 0, '', 14, 416, 1, ''), -(1418, 184, 'HCF4099BE', 2, 0, '', 14, 416, 1, ''), -(1419, 184, 'HCF4538BE', 2, 0, '', 14, 416, 1, ''), -(1420, 184, 'HCF4053BE', 1, 0, '', 14, 416, 1, ''), -(1421, 177, 'SAB82284', 1, 0, 'clock generator and ready interface for sab 80286 processors', 15, 416, 1, ''), -(1422, 184, 'TC4051BP', 100, 0, '', 14, 416, 1, ''), -(1423, 184, 'CD4014BE', 1, 0, '', 14, 416, 1, ''), -(1424, 184, 'CD4020BCN', 1, 0, '', 14, 416, 1, ''), -(1425, 184, 'CD4051BE', 1, 0, '', 14, 416, 1, ''), -(1426, 177, 'SN75183N', 1, 0, 'Quadruple Differential Line Driver', 13, 416, 1, ''), -(1427, 186, 'LM2917N', 1, 0, '', 13, 416, 1, ''), -(1428, 186, 'LM340K-6', 1, 0, '', 11, 22, 1, ''), -(1429, 186, 'TL7750ACP', 1, 0, '', 12, 266, 1, ''), -(1430, 179, 'M5K4164ANP', 2, 0, '64M Dynamic RAM ', 14, 266, 1, ''), -(1431, 177, 'TCA105', 1, 0, '', 17, 266, 1, ''), -(1432, 184, 'HEF4002BP', 1, 0, '', 14, 266, 1, ''), -(1433, 184, '4008BCP', 1, 0, '', 14, 266, 1, ''), -(1434, 184, 'HEF4046BD', 1, 0, '', 14, 266, 1, ''), -(1435, 178, 'HN58064P-30', 2, 0, '64Kbit (8Kx8) LATCHED EEPROM', 23, 266, 1, ''), -(1436, 179, 'MB8416A-15L', 1, 0, '2048K RAM', 43, 266, 1, ''), -(1437, 179, 'CXK58256PM-12L', 4, 0, '32K WORD X 8 BIT HIGH SPEED CMOS STATIC RAM', 23, 266, 1, ''), -(1438, 155, '220k&#937; 1/4W 5%', 1, 0, '', 8, 263, 1, ''), -(1439, 155, '1,5k&#937; 5% 1/4W', 1, 0, '', 8, 263, 1, ''), -(1440, 155, '820k&#937; 5% 1/4W', 1, 0, '', 8, 263, 1, ''), -(1441, 156, '30k&#937; 1% 1/4W', 2, 0, '', 8, 263, 1, ''), -(1442, 156, '750k&#937; 1/4W 1%', 2, 0, '', 8, 263, 1, ''), -(1443, 156, '8,2k&#937; 1% 1/4W', 2, 0, '', 8, 265, 1, ''), -(1444, 156, '270k&#937; 1/4W 1%', 2, 0, '', 8, 265, 1, ''), -(1445, 156, '560&#937; 1/4W 1%', 20, 0, '', 8, 265, 1, ''), -(1446, 156, '20k&#937; 1/4W 1%', 6, 0, '', 8, 265, 1, ''), -(1447, 155, '2,7k&#937; 2% 1/4W', 1, 0, '', 8, 265, 1, ''), -(1448, 98, '7-Segment-Anzeige TFK339 D300PAG', 28, 0, '', 8, 428, 1, ''), -(1449, 138, '47µF 40V axial', 1, 0, '', 8, 428, 1, ''), -(1450, 138, '47µF 15V axial', 0, 1, '', 8, 428, 1, ''), -(1451, 138, '47µF 63V axial', 1, 0, '', 8, 428, 1, ''), -(1452, 134, '47nF 100V', 1, 0, '', 8, 428, 1, ''), -(1453, 204, 'Isolierscheibe für TO-220', 15, 0, '', 8, 268, 1, ''), -(1454, 150, '47k&#937; mit Schalter', 1, 0, '', 8, 268, 1, ''), -(1455, 150, '100k&#937; mit Schalter', 1, 0, '', 8, 268, 1, ''), -(1456, 150, '4,7k&#937;', 1, 0, '', 8, 268, 1, ''), -(1457, 150, '2,2&#937;', 1, 0, '', 8, 268, 1, ''), -(1458, 150, '100&#937;', 2, 0, '', 8, 268, 1, ''), -(1459, 150, '60&#937;', 1, 0, '', 8, 268, 1, ''), -(1460, 150, '500&#937;', 1, 0, '', 8, 268, 1, ''), -(1461, 150, '47&#937;', 1, 0, '', 8, 268, 1, ''), -(1462, 150, '470&#937;', 1, 0, '', 8, 268, 1, ''), -(1463, 141, '470nF 250V', 4, 0, '', 8, 270, 1, ''), -(1464, 141, '47nF 1000V', 1, 0, '', 8, 270, 1, ''), -(1465, 141, '220nF 100V', 2, 0, '', 8, 270, 1, ''), -(1466, 177, 'P339 DS75463N', 1, 0, 'ERIPHERAL DRIVERS FOR\r\nHIGH-VOLTAGE, HIGH-CURRENT DRIVER\r\nAPPLICATIONS', 8, 270, 1, ''), -(1467, 177, 'P335 DS75462N', 1, 0, '', 8, 270, 1, ''), -(1468, 204, 'Isolierscheibe für TO-3', 6, 0, '', 10, 270, 1, ''), -(1469, 204, 'Isolierscheibe für TO-66', 7, 0, '', 44, 270, 1, ''), -(1470, 204, 'Glimmerscheibe Rund Durchmesser 13mm Lochdurchmesser 4mm', 0, 1, '', 8, 270, 1, ''), -(1471, 134, '10nF 100V', 1, 0, '', 8, 270, 1, ''), -(1472, 134, '4,7nF 100V', 1, 0, '', 8, 270, 1, ''), -(1473, 170, 'Adapter PS/2 auf DIN', 8, 0, '', 8, 429, 1, ''), -(1474, 180, 'Z80 SIO/2 Z0844204PSC', 1, 0, '', 39, 430, 1, ''), -(1475, 180, 'TMS70C00NL ', 1, 0, '', 39, 430, 1, ''), -(1476, 177, 'HD6845SP HD46505SP', 5, 0, 'LSI controller which is designed to provide an interface to microcomputers to raster scan type CRT displays', 39, 430, 1, ''), -(1477, 177, 'AM7990PC', 1, 0, 'Local Area Network Controller for Ethernet (LANCE) ', 45, 430, 1, ''), -(1478, 177, 'D71055C', 3, 0, 'Parallel Interface Unit', 39, 430, 1, ''), -(1479, 180, 'Rockwell R65C02P2 ', 1, 0, '', 39, 431, 1, ''), -(1480, 177, 'P8742AH', 1, 0, 'Universal Peripheral Interface 8-Bit Slave Microcontroller', 39, 431, 1, ''), -(1481, 177, '84A800 M5L8257P-5', 1, 0, 'PROGRAMMABLE PERIPHERAL INTERFACE', 39, 431, 1, ''), -(1482, 177, 'D8041AH078', 1, 0, 'Universal peripherial interface 8-bit slave microcontroller, 1K ROM, 128 RAM', 39, 431, 1, ''), -(1483, 177, 'M5L8085AP 84380A', 6, 0, '8-Bit Microprocessor - Includes on-chip clock generator ', 39, 431, 1, ''), -(1484, 78, 'LED-Konstantstromquelle Fertigmodul', 1, 0, '', 8, 433, 1, ''), -(1485, 78, 'LED-Konstantstromquelle Bausatz', 1, 0, '', 8, 434, 1, ''), -(1486, 80, 'Akkupack 3,6V 600mAh 3x1,2V AA', 1, 0, '', 8, 435, 1, ''), -(1487, 66, 'Semco L40 0.2W 8&#937; Durchmesser 40mm', 1, 0, '', 8, 435, 1, ''), -(1488, 69, 'Silikonkabel 0,72mm² (Stück=Länge in cm)', 280, 0, '', 8, 437, 1, ''), -(1489, 194, 'Glühbirnen Mix Niedervolt ohne Bestand', 0, 0, '', 8, 436, 1, ''), -(1490, 180, 'Z80 DART Z0847004PSC 8648', 1, 0, '', 39, 432, 1, ''), -(1491, 188, 'TC7109ACPL', 1, 0, '', 39, 432, 1, ''), -(1492, 180, 'INS8048-6LN Z6A1 B8342', 1, 0, '', 39, 432, 1, ''), -(1493, 180, 'D8086-1', 2, 0, '', 39, 432, 1, ''), -(1494, 180, 'Z80A Z8400AB Y28605', 1, 0, '', 39, 432, 1, ''), -(1495, 63, 'Elektromotoren Mix', 3, 0, '', 8, 118, 1, ''), -(1496, 160, 'Siemens Mikroschalter 3SE4101', 2, 0, '', 8, 272, 1, ''), -(1497, 194, 'Lampensockel E10', 1, 0, '', 8, 272, 1, ''), -(1498, 107, '2N4399', 1, 0, '', 10, 272, 1, ''), -(1499, 186, 'LM323K', 1, 0, '', 10, 272, 1, ''), -(1500, 186, 'M320K', 1, 0, '', 10, 272, 1, ''), -(1501, 106, '2N3054', 1, 0, '', 44, 272, 1, ''), -(1502, 126, 'Ferritkern Innendurchmesser 13mm Aussendurchmesser 22mm Höhe 6mm', 1, 0, '', 8, 272, 1, ''), -(1503, 192, 'Feinsicherung 5*20 5A mittelträge', 4, 0, '', 8, 272, 1, ''), -(1504, 160, 'Marquardt Microschalter Serie 1002 1x UM', 1, 0, '', 8, 272, 1, ''), -(1505, 160, 'Cherry Microschalter 1x UM', 1, 0, '', 8, 272, 1, ''), -(1506, 46, 'Touchpad', 1, 0, '', 8, 438, 1, ''), -(1507, 168, 'Adapter PS/2 auf D-SUB9', 4, 0, '', 8, 439, 1, ''), -(1508, 199, 'Potiknopf-Mix ohne Bestand', 0, 0, '', 8, 439, 1, ''), -(1509, 175, 'GU4-Sockel', 2, 0, '', 8, 440, 1, ''), -(1510, 86, 'LED 5x2mm rechteckig grün', 5, 0, '', 8, 440, 1, ''), -(1511, 176, 'Textool-Sockel DIP14', 4, 0, '', 13, 441, 1, ''), -(1512, 175, 'IC-Sockel 14-polig, gedreht', 32, 0, '', 13, 441, 1, ''), -(1513, 171, 'RJ?? (KEIN RJ45) 8P8C', 15, 0, '', 8, 442, 1, ''), -(1514, 46, '7-Segment-Modul 7 Anzeigen', 1, 0, '', 8, 442, 1, ''), -(1515, 46, 'Touchpad Seriell Synaptics TM61PDE8G307', 1, 0, '', 8, 442, 1, ''), -(1516, 46, 'Intel Pro/Wireless 2200BG WIFI Card Mini PCI', 1, 0, '', 8, 442, 1, ''), -(1517, 46, 'Wismo Quik GSM/GPRS Dual Band Q2406 / Q2426 Modul', 1, 0, '', 8, 437, 1, ''), -(1518, 46, 'Temperaturfühler für Mainboards', 2, 0, '', 8, 443, 1, ''), -(1519, 180, 'D8273', 8, 0, 'Multimode DMA Controller ', 39, 443, 1, ''), -(1520, 146, '22k&#937; 3W 5%', 1, 0, '', 8, 444, 1, ''), -(1521, 198, '56k&#937; 5W 5%', 12, 0, '', 8, 444, 1, ''), -(1523, 155, '47k&#937; 5% 1/4W', 2, 0, '', 8, 444, 1, ''), -(1524, 156, '39k&#937; 1% 1/4W', 1, 0, '', 8, 444, 1, ''), -(1525, 64, 'Schrittmotor-Mix', 1, 0, '', 8, 54, 1, ''), -(1526, 156, '18,7&#937; 1/4W 1%', 1, 0, '', 8, 444, 1, ''), -(1527, 155, '2,2k&#937; 1/2W 2%', 1, 0, '', 8, 445, 1, ''), -(1528, 155, '330k&#937; 2% 1/2W', 2, 0, '', 8, 445, 1, ''), -(1529, 155, '460k&#937; 5% 1/4W', 1, 0, '', 8, 445, 1, ''), -(1530, 155, '2,7M&#937; 5% 1W', 21, 0, '', 8, 445, 7, ''), -(1531, 155, '1,8M&#937; 1/2W 5%', 23, 0, '', 8, 445, 1, ''), -(1532, 171, 'SUB-D 37-polig Buchse', 35, 0, 'neu', 8, 446, 1, ''), -(1533, 198, '470&#937; 10% 10W', 3, 0, 'neu', 8, 446, 1, ''), -(1534, 169, 'Koaxial-Kabelverbinder', 1, 0, 'neu', 8, 446, 1, ''), -(1535, 168, 'TAE - RJ12', 1, 0, 'neu', 8, 446, 1, ''), -(1536, 160, 'Kippschalter Printmontage ALPS', 3, 0, 'neu', 4, 446, 1, ''), -(1537, 156, '180&#937; 5% 3W', 0, 0, '', 8, 447, 1, ''), -(1538, 198, '22&#937; 10% 4 Watt', 1, 0, '', 8, 447, 1, ''), -(1539, 169, 'TV-Antennenstecker', 3, 0, '', 8, 447, 1, ''), -(1540, 171, '9V-Batterieclip', 3, 0, '', 8, 447, 1, ''), -(1541, 163, 'Reedrelais', 2, 0, '', 8, 447, 1, ''), -(1542, 47, 'Leiterplattengriffe zum Stecken', 4, 0, '', 8, 448, 1, ''), -(1543, 150, 'Linearer Wendelpoti, 10k&#937;, 10-gang mit Potiknopf', 1, 0, '', 8, 448, 1, ''), -(1544, 171, 'Wannenstecker 26pol RM2,54 mit Verriegelung', 1, 0, '', 8, 448, 1, ''); -INSERT INTO `parts` (`id`, `id_category`, `name`, `instock`, `mininstock`, `comment`, `id_footprint`, `id_storeloc`, `id_supplier`, `supplierpartnr`) VALUES -(1545, 192, 'Sicherungshalter, 6x35, doppelt', 2, 0, '', 8, 448, 1, ''), -(1546, 166, 'Schraubklemme 7-Pol', 3, 0, '', 8, 448, 7, ''), -(1547, 166, 'Schraubklemmen Mix', 10, 0, '', 8, 449, 1, ''), -(1548, 192, 'Sicherungshalter, 6x35 Littlefuse 356', 1, 0, '', 8, 449, 1, ''), -(1549, 59, 'Geräteschraubfuß ', 2, 0, '', 8, 449, 1, ''), -(1550, 204, 'Gerätefüße Viereckig 24x24mm', 4, 0, '', 8, 449, 1, ''), -(1551, 204, 'Gerätefüße Rund Durchmesser 1cm', 8, 0, '', 8, 449, 1, ''), -(1552, 192, 'Sicherungshalter, 5mm, Schraubtechnik', 1, 0, '', 8, 450, 1, ''), -(1553, 192, 'Sicherungshalter für Frontplatteneinbau, 6*35', 1, 0, '', 8, 450, 1, ''), -(1554, 194, 'Signallampe grün, 230V, quadratisch 16mm', 1, 0, '', 8, 450, 1, ''), -(1555, 194, 'Signallampe grün, 230V, rund, 1,6cm', 1, 0, '', 8, 450, 1, ''), -(1556, 163, 'KFZ-Relais 12V 30A 262 P3 0332014150', 1, 0, '', 8, 450, 1, ''), -(1557, 194, 'Signallampe grün, 230V, rund, 1,6cm', 1, 0, '', 8, 451, 1, ''), -(1558, 171, 'Metallgehäuse für SUB-D9', 1, 0, '', 8, 451, 1, ''), -(1559, 171, 'Gender Changer SUB-D25 Weiblich/Weiblich', 3, 0, '', 8, 451, 1, ''), -(1560, 194, 'Signallampe rot 230V Durchmesser 16mm', 1, 0, '', 8, 451, 1, ''), -(1561, 170, 'Adapter DIN-Buchsen 5 polig auf 3,5mm Stecker Stereo', 1, 0, '', 8, 451, 1, ''), -(1562, 171, 'SUB-D 25-pol Gehäuse', 3, 0, '', 8, 452, 1, ''), -(1563, 171, 'Gehäuse für SUB-D-25 Jumperbox', 1, 0, '', 8, 452, 1, ''), -(1564, 52, 'Käfigmutter M4', 13, 0, '', 8, 372, 1, ''), -(1565, 51, 'Maschinenschrauben Linsenkopf M4x20 Kreuz+Schlitz', 8, 0, '', 8, 372, 1, ''), -(1566, 54, 'Unterlegscheibe Innen-Ø4mm Außen-Ø20mm Dicke 1,5mm', 8, 0, '', 8, 372, 1, ''); - --- -------------------------------------------------------- - --- --- Table structure for table `pending_orders` --- - -CREATE TABLE IF NOT EXISTS `pending_orders` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `part_id` int(11) NOT NULL DEFAULT '0', - `quantity` int(11) NOT NULL DEFAULT '0', - `t` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `part_id` (`part_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `pending_orders` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `pictures` --- - -CREATE TABLE IF NOT EXISTS `pictures` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `part_id` int(11) NOT NULL DEFAULT '0', - `pict_fname` varchar(255) NOT NULL DEFAULT '', - `pict_width` int(11) NOT NULL DEFAULT '0', - `pict_height` int(11) NOT NULL DEFAULT '0', - `pict_type` enum('P','T') NOT NULL DEFAULT 'P', - `tn_obsolete` smallint(6) NOT NULL DEFAULT '0', - `tn_t` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `tn_pictid` int(11) NOT NULL DEFAULT '0', - `pict_masterpict` smallint(6) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `pict_type` (`pict_type`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; - --- --- Dumping data for table `pictures` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `preise` --- - -CREATE TABLE IF NOT EXISTS `preise` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `part_id` int(11) NOT NULL DEFAULT '0', - `ma` smallint(6) NOT NULL DEFAULT '0', - `preis` decimal(6,2) NOT NULL DEFAULT '0.00', - `t` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `part_id` (`part_id`), - KEY `ma` (`ma`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=33 ; - --- --- Dumping data for table `preise` --- - -INSERT INTO `preise` (`id`, `part_id`, `ma`, `preis`, `t`) VALUES -(3, 353, 1, '0.08', '2010-09-14 21:34:17'), -(4, 354, 1, '1.15', '2010-09-14 21:39:53'), -(5, 355, 1, '0.29', '2010-09-14 21:43:20'), -(6, 356, 1, '0.24', '2010-09-14 21:58:26'), -(8, 675, 1, '0.05', '2011-04-03 15:27:13'), -(9, 710, 1, '1.13', '2011-04-12 18:23:35'), -(11, 717, 1, '0.03', '2011-04-12 21:49:41'), -(12, 748, 1, '3.03', '2011-04-12 23:13:20'), -(13, 766, 1, '0.02', '2011-04-16 17:08:25'), -(14, 767, 1, '0.03', '2011-04-16 17:14:32'), -(15, 768, 1, '0.06', '2011-04-16 17:17:56'), -(16, 769, 1, '0.80', '2011-04-16 17:34:59'), -(17, 772, 1, '0.07', '2011-04-17 00:15:48'), -(18, 773, 1, '0.09', '2011-04-17 00:18:34'), -(19, 777, 1, '0.56', '2011-04-17 00:30:09'), -(20, 778, 1, '0.56', '2011-04-17 00:30:59'), -(21, 799, 1, '0.20', '2011-04-17 01:11:41'), -(22, 812, 1, '11.00', '2011-04-17 01:47:13'), -(23, 824, 1, '0.14', '2011-04-17 02:51:01'), -(24, 835, 1, '0.11', '2011-04-17 04:31:09'), -(25, 834, 1, '0.11', '2011-04-17 04:31:16'), -(26, 836, 1, '1.00', '2011-04-17 04:33:32'), -(27, 837, 1, '0.32', '2011-04-17 04:35:27'), -(28, 839, 1, '1.17', '2011-04-17 04:47:24'), -(29, 838, 1, '0.90', '2011-04-17 04:47:37'), -(30, 844, 1, '3.65', '2011-04-17 05:04:00'), -(31, 1290, 1, '0.20', '2011-05-15 11:00:30'), -(32, 1, 1, '0.50', '2011-05-24 23:32:35'); - --- -------------------------------------------------------- - --- --- Table structure for table `storeloc` --- - -CREATE TABLE IF NOT EXISTS `storeloc` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(64) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=458 ; - --- --- Dumping data for table `storeloc` --- - -INSERT INTO `storeloc` (`id`, `name`) VALUES -(1, 'A0001'), -(2, 'A0002'), -(3, 'A0003'), -(4, 'A0004'), -(5, 'A0005'), -(6, 'A0006'), -(7, 'A0007'), -(8, 'A0008'), -(9, 'B0001'), -(10, 'B0002'), -(11, 'B0003'), -(12, 'B0004'), -(13, 'B0005'), -(14, 'B0006'), -(15, 'B0007'), -(16, 'B0008'), -(17, 'B0009'), -(18, 'A0009'), -(19, 'A0010'), -(20, 'A0011'), -(21, 'A0012'), -(22, 'A0013'), -(23, 'A0014'), -(24, 'A0015'), -(25, 'A0016'), -(26, 'A0017'), -(27, 'A0018'), -(28, 'A0019'), -(29, 'A0020'), -(30, 'A0021'), -(31, 'A0022'), -(32, 'A0023'), -(33, 'A0024'), -(34, 'A0025'), -(35, 'A0026'), -(36, 'A0027'), -(37, 'A0028'), -(38, 'A0029'), -(39, 'A0030'), -(40, 'A0031'), -(41, 'A0032'), -(42, 'A0033'), -(43, 'A0034'), -(44, 'A0035'), -(45, 'A0036'), -(46, 'A0037'), -(47, 'A0038'), -(48, 'A0039'), -(49, 'A0040'), -(50, 'A0041'), -(51, 'A0042'), -(52, 'A0043'), -(53, 'A0044'), -(54, 'A0045'), -(55, 'A0046'), -(56, 'A0047'), -(57, 'A0048'), -(58, 'A0049'), -(59, 'A0050'), -(60, 'B0010'), -(61, 'B0011'), -(62, 'B0012'), -(63, 'B0013'), -(64, 'B0014'), -(65, 'B0015'), -(66, 'B0016'), -(67, 'B0017'), -(68, 'B0018'), -(69, 'B0019'), -(70, 'B0020'), -(71, 'B0021'), -(72, 'B0022'), -(73, 'B0023'), -(74, 'B0024'), -(75, 'B0025'), -(76, 'B0026'), -(77, 'B0027'), -(78, 'B0028'), -(79, 'B0029'), -(80, 'B0030'), -(81, 'B0031'), -(82, 'B0032'), -(83, 'B0033'), -(84, 'B0034'), -(85, 'B0035'), -(86, 'B0036'), -(87, 'B0037'), -(88, 'B0038'), -(89, 'B0039'), -(90, 'B0040'), -(91, 'B0041'), -(92, 'B0042'), -(93, 'B0043'), -(94, 'B0044'), -(95, 'B0045'), -(96, 'B0046'), -(97, 'B0047'), -(98, 'B0048'), -(99, 'B0049'), -(100, 'B0050'), -(101, 'C001'), -(102, 'C002'), -(103, 'C003'), -(104, 'C004'), -(105, 'C005'), -(106, 'C006'), -(107, 'C007'), -(108, 'C008'), -(109, 'C009'), -(110, 'C010'), -(111, 'D001'), -(112, 'D002'), -(113, 'D003'), -(114, 'D004'), -(115, 'D005'), -(116, 'D006'), -(117, 'D007'), -(118, 'D008'), -(119, 'D009'), -(120, 'D010'), -(121, 'E01'), -(122, 'E02'), -(123, 'E03'), -(124, 'E04'), -(125, 'E05'), -(126, 'E06'), -(127, 'E07'), -(128, 'E08'), -(129, 'E09'), -(130, 'E10'), -(131, 'F01'), -(132, 'F02'), -(133, 'F03'), -(134, 'F04'), -(135, 'F05'), -(136, 'F06'), -(137, 'F07'), -(138, 'F08'), -(139, 'F09'), -(140, 'F10'), -(141, 'G0001'), -(142, 'G0000'), -(143, 'G0002'), -(144, 'G0003'), -(145, 'G0004'), -(147, 'G0005'), -(148, 'E-Ecke Schrank 1'), -(149, 'A0051'), -(150, 'A0052'), -(151, 'G0006'), -(152, 'G0007'), -(153, 'G0008'), -(154, 'B0051'), -(155, 'B0052'), -(156, 'A0053'), -(157, 'A0054'), -(158, 'A0055'), -(159, 'A0056'), -(160, 'A0057'), -(161, 'A0058'), -(162, 'A0059'), -(163, 'A0060'), -(164, 'A0061'), -(165, 'A0062'), -(166, 'A0063'), -(167, 'A0064'), -(168, 'A0065'), -(169, 'A0066'), -(170, 'A0067'), -(171, 'A0068'), -(172, 'A0069'), -(173, 'A0070'), -(174, 'A0071'), -(175, 'A0072'), -(176, 'A0073'), -(177, 'A0074'), -(178, 'A0075'), -(179, 'A0076'), -(180, 'A0077'), -(181, 'A0078'), -(182, 'A0079'), -(183, 'A0080'), -(184, 'A0081'), -(185, 'A0082'), -(186, 'A0083'), -(187, 'A0084'), -(188, 'B0053'), -(189, 'B0054'), -(190, 'B0055'), -(191, 'B0056'), -(192, 'B0057'), -(193, 'B0058'), -(194, 'B0059'), -(195, 'B0060'), -(196, 'B0061'), -(197, 'B0062'), -(198, 'B0063'), -(199, 'B0064'), -(200, 'B0065'), -(201, 'B0066'), -(202, 'B0067'), -(203, 'B0068'), -(204, 'B0069'), -(205, 'B0070'), -(206, 'B0071'), -(207, 'B0072'), -(208, 'B0073'), -(209, 'B0074'), -(210, 'B0075'), -(211, 'B0076'), -(212, 'B0077'), -(213, 'B0078'), -(214, 'B0079'), -(215, 'B0080'), -(248, 'B0108'), -(217, 'B0082'), -(218, 'B0083'), -(219, 'B0084'), -(220, 'B0085'), -(250, 'B0110'), -(223, 'B0086'), -(224, 'B0087'), -(228, 'B0090'), -(226, 'B0088'), -(227, 'B0089'), -(229, 'B0091'), -(230, 'B0092'), -(249, 'B0109'), -(232, 'B0093'), -(233, 'B0094'), -(234, 'B0095'), -(235, 'B0096'), -(236, 'B0097'), -(237, 'B0098'), -(238, 'B0099'), -(239, 'B0081'), -(240, 'B0100'), -(241, 'B0101'), -(251, 'B0111'), -(243, 'B0102'), -(244, 'B0104'), -(245, 'B0105'), -(246, 'B0106'), -(247, 'B0107'), -(252, 'B0112'), -(273, 'B0103'), -(255, 'B0113'), -(256, 'B0114'), -(257, 'B0115'), -(258, 'B0116'), -(259, 'B0117'), -(260, 'B0118'), -(261, 'B0119'), -(262, 'B0120'), -(263, 'B0121'), -(264, 'B0122'), -(265, 'B0123'), -(266, 'B0124'), -(267, 'B0125'), -(268, 'B0126'), -(269, 'B0127'), -(270, 'B0128'), -(271, 'B0129'), -(272, 'B0130'), -(274, 'G0009'), -(275, 'G0010'), -(276, 'G0011'), -(277, 'G0012'), -(278, 'G0013'), -(279, 'G0014'), -(280, 'G0015'), -(281, 'G0016'), -(282, 'G0017'), -(283, 'G0018'), -(284, 'G0019'), -(285, 'G0020'), -(286, 'G0021'), -(287, 'G0022'), -(288, 'G0023'), -(289, 'G0024'), -(290, 'G0025'), -(291, 'G0026'), -(292, 'G0027'), -(293, 'G0028'), -(294, 'G0029'), -(295, 'G0030'), -(296, 'G0031'), -(297, 'G0032'), -(298, 'G0033'), -(299, 'G0034'), -(300, 'G0035'), -(301, 'G0036'), -(302, 'G0037'), -(303, 'G0038'), -(304, 'G0039'), -(305, 'G0040'), -(306, 'G0041'), -(307, 'G0042'), -(308, 'G0043'), -(309, 'G0044'), -(310, 'G0045'), -(311, 'G0046'), -(312, 'G0047'), -(313, 'G0048'), -(314, 'G0049'), -(315, 'G0050'), -(316, 'G0051'), -(317, 'G0052'), -(318, 'G0053'), -(319, 'G0054'), -(320, 'G0055'), -(321, 'G0056'), -(322, 'G0057'), -(323, 'G0058'), -(324, 'G0059'), -(325, 'G0060'), -(326, 'G0061'), -(327, 'G0062'), -(328, 'G0063'), -(329, 'G0064'), -(330, 'G0065'), -(331, 'G0066'), -(332, 'G0067'), -(333, 'G0068'), -(334, 'G0069'), -(335, 'G0070'), -(336, 'G0071'), -(337, 'G0072'), -(338, 'G0073'), -(339, 'G0074'), -(340, 'G0075'), -(341, 'G0076'), -(342, 'G0077'), -(343, 'G0078'), -(344, 'G0079'), -(345, 'G0080'), -(346, 'G0081'), -(347, 'G0082'), -(348, 'G0083'), -(349, 'G0084'), -(350, 'G0085'), -(351, 'G0086'), -(352, 'G0087'), -(353, 'G0088'), -(354, 'G0089'), -(355, 'G0090'), -(356, 'G0091'), -(357, 'G0092'), -(358, 'G0093'), -(359, 'G0094'), -(360, 'G0095'), -(361, 'G0096'), -(362, 'G0097'), -(363, 'G0098'), -(364, 'G0099'), -(365, 'G0100'), -(366, 'G0101'), -(367, 'G0102'), -(368, 'G0103'), -(369, 'G0104'), -(370, 'G0105'), -(371, 'G0106'), -(372, 'G0107'), -(373, 'G0108'), -(374, 'G0109'), -(375, 'G0110'), -(376, 'G0111'), -(377, 'G0112'), -(378, 'G0113'), -(379, 'G0114'), -(380, 'G0115'), -(381, 'G0116'), -(382, 'G0117'), -(383, 'G0118'), -(384, 'G0119'), -(385, 'G0120'), -(386, 'G0121'), -(387, 'G0122'), -(388, 'G0123'), -(389, 'G0124'), -(390, 'G0125'), -(391, 'G0126'), -(392, 'G0127'), -(393, 'G0128'), -(394, 'G0129'), -(395, 'G0130'), -(396, 'G0131'), -(397, 'G0132'), -(398, 'G0133'), -(399, 'G0134'), -(400, 'G0135'), -(401, 'G0136'), -(402, 'G0137'), -(403, 'G0138'), -(404, 'G0139'), -(405, 'G0140'), -(406, 'G0141'), -(407, 'G0142'), -(408, 'G0143'), -(409, 'G0144'), -(410, 'G0145'), -(411, 'G0146'), -(412, 'G0147'), -(413, 'G0148'), -(414, 'G0149'), -(415, 'G0150'), -(416, 'B0131'), -(417, 'B0132'), -(418, 'B0133'), -(419, 'B0134'), -(420, 'B0135'), -(421, 'B0136'), -(422, 'B0137'), -(423, 'B0138'), -(424, 'B0139'), -(425, 'B0140'), -(426, 'B0026 dup'), -(427, 'B0027 dup'), -(428, 'B0141'), -(429, 'B0142'), -(430, 'B0143'), -(431, 'B0144'), -(432, 'B0145'), -(433, 'B0146'), -(434, 'B0147'), -(435, 'B0148'), -(436, 'B0149'), -(437, 'B0150'), -(438, 'B0151'), -(439, 'B0152'), -(440, 'B0153'), -(441, 'B0154'), -(442, 'B0155'), -(443, 'B0156'), -(444, 'B0157'), -(445, 'B0158'), -(446, 'B0159'), -(447, 'B0160'), -(448, 'B0161'), -(449, 'B0162'), -(450, 'B0163'), -(451, 'B0164'), -(452, 'B0165'), -(453, 'B0166'), -(454, 'B0167'), -(455, 'B0168'), -(456, 'B0169'), -(457, 'B0170'); - --- -------------------------------------------------------- - --- --- Table structure for table `suppliers` --- - -CREATE TABLE IF NOT EXISTS `suppliers` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` tinytext NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; - --- --- Dumping data for table `suppliers` --- - -INSERT INTO `suppliers` (`id`, `name`) VALUES -(1, 'supplier1'), -(2, 'supplier2'), -(3, 'supplier3'), -(4, 'supplier4'), -(5, 'unbekannt'), -(6, 'supplier6'), -(7, 'supplier7'); diff --git a/tests/Auth/UserTest.php b/tests/Auth/UserTest.php @@ -1,27 +0,0 @@ -<?php -namespace PartKeepr\Tests\Auth; - -use PartKeepr\AuthBundle\Entity\User\User; - -class UserTest extends \PHPUnit_Framework_TestCase { - public function testBasics () { - $user = new User; - - $user->setUsername("felicitus"); - $this->assertEquals($user->getUsername(), "felicitus"); - - $user->setUsername("Timo A. Hummel"); - - $this->assertEquals($user->getUsername(), "Timo A. Hummel"); - - $user->setPassword("foobar"); - $hashedPassword = "3858f62230ac3c915f300c664312c63f"; - - $this->assertEquals($user->comparePassword("foobar"), true, "Error comparing passwords: PasswordTest01"); - $this->assertEquals($user->compareHashedPassword($hashedPassword), true, "Error comparing passwords: PasswordTest02"); - - $user->setHashedPassword($hashedPassword); - $this->assertEquals($user->comparePassword("foobar"), true, "Error comparing passwords: PasswordTest03"); - $this->assertEquals($user->compareHashedPassword($hashedPassword), true, "Error comparing passwords: PasswordTest04"); - } -} diff --git a/tests/Logger/LoggerTest.php b/tests/Logger/LoggerTest.php @@ -1,100 +0,0 @@ -<?php -namespace PartKeepr\Tests\Logger; - -use PartKeepr\Logger\Logger, - PartKeepr\Util\Configuration; - -class LoggerTest extends \PHPUnit_Framework_TestCase { - - /** - * Specifies the temporary logging file to be used for our tests - * @var string - */ - private $tempName; - - /** - * @inheritdoc - */ - public function setUp () { - $this->tempName = tempnam(sys_get_temp_dir(), "pk"); - - Configuration::setOption("partkeepr.logger.outputfile", $this->tempName); - Configuration::setOption("partkeepr.logger.enable", true); - } - - /** - * Tests the logging - */ - public function testLogging () { - $this->outputLog(Logger::LOGLEVEL_CRITICAL, "test"); - $this->outputLog(Logger::LOGLEVEL_ERROR, "test"); - $this->outputLog(Logger::LOGLEVEL_WARNING, "test"); - $this->outputLog(Logger::LOGLEVEL_INFO, "test"); - $this->outputLog(Logger::LOGLEVEL_DEBUG, "test"); - } - - /* - * Tests the logging with their helper methods. This makes sure that - * each severity has its own helper method. - */ - public function testLoggingWithHelperMethods () { - $this->outputLog(Logger::LOGLEVEL_CRITICAL, "test", true); - $this->outputLog(Logger::LOGLEVEL_ERROR, "test", true); - $this->outputLog(Logger::LOGLEVEL_WARNING, "test", true); - $this->outputLog(Logger::LOGLEVEL_INFO, "test", true); - $this->outputLog(Logger::LOGLEVEL_DEBUG, "test", true); - } - - /** - * Tests that no output file is written if logging is disabled - */ - public function testDisabledLogging () { - unlink($this->tempName); - Configuration::setOption("partkeepr.logger.enable", false); - - Logger::log("test", Logger::LOGLEVEL_CRITICAL); - - - $this->assertEquals(false, file_exists($this->tempName)); - } - - /** - * Writes a specific string with a specific severity to the log file and checks if the file was written correctly. - * @param string $severity The severity - * @param string $string The string - * @param $useHelperMethods boolean True to use the helper methods - */ - public function outputLog ($severity, $string, $useHelperMethods = false) { - unlink($this->tempName); - - if ($useHelperMethods == true) { - $helperMethod = "log".ucfirst($severity); - Logger::$helperMethod($string); - } else { - Logger::log($string, $severity); - } - - - $data = file_get_contents($this->tempName); - $this->matchLogLine($data, $severity, $string); - } - - /** - * Splits the given line into tokens and tries to find out if the log message is correct. - * @param string $line The line to test - * @param string $severity The given severity - * @param string $text The logged text - */ - public function matchLogLine ($line, $severity, $text) { - // Match the date section - $tokens = explode(" ", $line); - - $this->assertEquals(11, strlen($tokens[0])); - $this->assertEquals(9, strlen($tokens[1])); - - $severityMatch = "[" . str_pad($severity, 8) . "]"; - $this->assertNotEquals(false, strpos($line, $severityMatch)); - - $this->assertNotEquals(false, strpos($line, $text)); - } -}- \ No newline at end of file diff --git a/tests/Part/PartServiceTest.php b/tests/Part/PartServiceTest.php @@ -1,140 +0,0 @@ -<?php -namespace PartKeepr\Tests\Part; - -use PartKeepr\Distributor\DistributorService; - -use \PartKeepr\PartBundle\Entity\PartCategoryManager, - PartKeepr\Part\PartService, - PartKeepr\PartKeepr, - PartKeepr\Part\Part, - PartKeepr\StorageLocation\StorageLocationManager, - PartKeepr\StorageLocation\StorageLocationService; - -class PartServiceTest extends \PHPUnit_Framework_TestCase { - protected $backupGlobals = false; - - private static $storageLocation; - - public static function setUpBeforeClass () { - // Create a storage location for testing - $storageLocation = array("name" => "PartServiceTest"); - - $service = new StorageLocationService($storageLocation); - $result = $service->create(); - - self::$storageLocation = $result["data"]["id"]; - } - - /** - * @expectedException PartKeepr\Part\Exceptions\CategoryNotAssignedException - */ - public function testCreatePartWithoutCategory () { - $partName = "testCreatePartWithoutCategory"; - - $part = array( - "name" => $partName, - "storageLocation" => self::$storageLocation - ); - - $service = new PartService($part); - $service->create(); - } - - /** - * Tests if a part can be found by its order number. - */ - public function testPartSearchByOrderNumber () { - $partName = "testPartSearchByOrderNumber"; - - /* Create a distributor */ - $distributor = array( - "name" => $partName - ); - - $service = new DistributorService($distributor); - $distributor = $service->create(); - - /* Create a part with a distributor and a specific order number */ - $part = array( - "name" => $partName, - "category" => 1, - "distributors" => array( - array( - "distributor_id" => $distributor["data"]["id"], - "orderNumber" => $partName // Re-use $partName as orderNumber - )), - "storageLocation" => self::$storageLocation - ); - - $service = new PartService($part); - $service->create(); - - PartKeepr::getEM()->flush(); - - $service = new PartService(array("distributorOrderNumber" => $partName)); - - $response = $service->get(); - - $this->assertEquals(1, $response["totalCount"], "The resultset totalCount is wrong."); - } - - /** - * Tests if a part with an initial stock level > 0 is created correctly. - * - * This was fixed with - */ - public function testCreatePartWithInitialStockLevel () { - $partName = "testCreatePartWithInitialStockLevel"; - - $part = array( - "name" => $partName, - "initialStockLevel" => 1, - "category" => 1, - "initialStockLevelUser" => 1, - "storageLocation" => self::$storageLocation - ); - - $service = new PartService($part); - $service->create(); - } - - /** - * @expectedException PartKeepr\Part\Exceptions\StorageLocationNotAssignedException - */ - public function testCreatePartWithoutStorageLocation () { - $partName = "testCreatePartWithoutStorageLocation"; - - $part = array( - "name" => $partName, - "category" => 1 - ); - - $service = new PartService($part); - $service->create(); - } - - /** - * Verifies that querying for a part works correctly. - * - * There was a bug where only lower-case strings matched against parts, fixed 2012-03-16. - */ - public function testPartNameQuerying () { - $partName = "testPartNameQuerying"; - - - $part = new Part(); - $part->setName($partName); - $part->setCategory(PartCategoryManager::getInstance()->getRootNode()->getNode()); - $part->setStorageLocation(StorageLocationManager::getInstance()->getStorageLocation(self::$storageLocation)); - - PartKeepr::getEM()->persist($part); - PartKeepr::getEM()->flush(); - - $service = new PartService(array("query" => $partName)); - - $response = $service->get(); - - $this->assertEquals(1, $response["totalCount"], "The resultset totalCount is wrong."); - $this->assertEquals($response["data"][0]["name"], $part->getName()); - } -} diff --git a/tests/Service/ServiceTest.php b/tests/Service/ServiceTest.php @@ -1,20 +0,0 @@ -<?php -namespace PartKeepr\Tests\Service; - -use PartKeepr\Service\Service, - PartKeepr\PartKeepr, - PartKeepr\Part\Part; - - -class ServiceTest extends \PHPUnit_Framework_TestCase { - protected $backupGlobals = false; - - /** - * Tests injection of service parameters via the constructor. - */ - public function testConstructorParameterPassing () { - $service = new Service(array("foo" => "bar")); - - $this->assertEquals($service->getParameter("foo"), "bar"); - } -} diff --git a/tests/User/UserTest.php b/tests/User/UserTest.php @@ -1,151 +0,0 @@ -<?php -namespace PartKeepr\Tests\User; - -use PartKeepr\AuthBundle\Entity\User\User; -use PartKeepr\AuthBundle\Entity\User\UserManager; -use PartKeepr\PartKeepr; - -class UserTest extends \PHPUnit_Framework_TestCase { - protected $backupGlobals = false; - - /** - * Clear out any non-flushed changes from the EntityManager after the test is complete - */ - public static function tearDownAfterClass () { - PartKeepr::getEM()->clear(); - } - - /** - * Tests if the admin user can be loaded by it's name - */ - public function testloadByName () { - $user = User::loadByName("admin"); - } - - /** - * Tests for an invalid user - * @expectedException Doctrine\ORM\NoResultException - */ - public function testloadByNameException () { - $user = User::loadByName("testloadByNameException"); - } - - /** - * Tests creating new users. - */ - public function testCreateUser () { - $username = "test1"; - $password = "123"; - - $user = new User($username, $password); - - // Make sure that the new user isn't an admin. - $this->assertEquals(false, $user->isAdmin()); - - $this->assertEquals($username, $user->getUsername()); - $this->assertEquals(true, $user->comparePassword($password)); - } - - /** - * Tests the password hashing - */ - public function testPasswordHashing () { - $username = "test2"; - $password = "123"; - $hashedPassword = md5($password); - - $user = new User($username, $password); - - $this->assertEquals($hashedPassword, $user->getHashedPassword()); - - // Makes sure that the compareHashedPassword method works - $this->assertEquals(true, $user->compareHashedPassword($hashedPassword)); - - // This must fail, because we aren't comparing a hashed password - $this->assertEquals(false, $user->compareHashedPassword($password)); - } - - /** - * Tests the serialize method - */ - public function testSerialize () { - $username = "test3"; - $password = "123"; - - $user = new User($username, $password); - - $expectedArray = array ("id" => null, "username" => $username); - - $this->assertEquals($expectedArray, $user->serialize()); - } - - /** - * Tests the deserialize method - */ - public function testDeserialize () { - $username = "test4"; - $password = "123"; - $hashedPassword = md5($password); - - $input = array("username" => $username, "password" => $password); - - $user = new User(); - $user->deserialize($input); - - $this->assertEquals($username, $user->getUsername()); - $this->assertEquals($hashedPassword, $user->getHashedPassword()); - } - - /** - * Makes sure that an exception is thrown when attempting to set a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testSetNonPersistantUserPreference () { - $user = new User(); - $user->setPreference("test", "foo"); - } - - /** - * Makes sure that an exception is thrown when attempting to get a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testGetNonPersistantUserPreference () { - $user = new User(); - $user->getPreference("test"); - } - - /** - * Makes sure that an exception is thrown when attempting to delete a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testDeleteNonPersistantUserPreference () { - $user = new User(); - $user->deletePreference("test"); - } - - /** - * Test the helper methods for setting / getting / deleting user preferences - */ - public function testUserPreference () { - $username = "test5"; - $user = new User($username, "123"); - PartKeepr::getEM()->persist($user); - PartKeepr::getEM()->flush(); - - $user->setPreference("test", "foo"); - - $this->assertEquals("foo", $user->getPreferenceValue("test")); - $this->assertEquals("foo", $user->getPreference("test")->getValue()); - - $this->assertEquals(1, count($user->getPreferences())); - - $user->deletePreference("test"); - - - - UserManager::getInstance()->deleteUser($user->getId()); - } -}- \ No newline at end of file diff --git a/tests/UserPreference/UserPreferenceTest.php b/tests/UserPreference/UserPreferenceTest.php @@ -1,175 +0,0 @@ -<?php -namespace PartKeepr\Tests\UserPreference; - -use PartKeepr\AuthBundle\Entity\User\User; -use PartKeepr\PartKeepr; -use PartKeepr\UserPreference\UserPreference; - -class UserPreferenceTest extends \PHPUnit_Framework_TestCase { - protected $user; - - /** - * Assigns the "regular" user for this test and deletes all user preferences for testing - * (non-PHPdoc) - * @see PHPUnit_Framework_TestCase::setUp() - */ - protected function setUp () { - $this->user = User::loadByName("regular"); - - $this->deleteUserPreferences(); - } - - /** - * Deletes all user preferences after testing - * (non-PHPdoc) - * @see PHPUnit_Framework_TestCase::tearDown() - */ - protected function tearDown () { - $this->deleteUserPreferences(); - } - - /** - * Deletes all user preferences for the test user. - * - * @param none - * @return nothing - */ - protected function deleteUserPreferences () { - $dql = "DELETE FROM PartKeepr\UserPreference\UserPreference up WHERE up.user = :user"; - - $query = PartKeepr::getEM()->createQuery($dql); - $query->setParameter("user", $this->user); - $query->execute(); - } - - /** - * Tests if user preferences can be set - */ - public function testSetUserPreference () { - $preferenceKey = "test1"; - $preferenceValue = "123"; - - UserPreference::setPreference($this->user, $preferenceKey, $preferenceValue); - - // Read back the set user preference to make sure it's valid - $this->assertEquals($preferenceValue, UserPreference::getPreferenceValue($this->user, $preferenceKey)); - - // Make sure that the user is set correctly - $this->assertEquals($this->user, UserPreference::getPreference($this->user, $preferenceKey)->getUser()); - - // Make sure the key is set correctly - $this->assertEquals($preferenceKey, UserPreference::getPreference($this->user, $preferenceKey)->getKey()); - - // Make sure that we only get one result when we set the same preference twice - UserPreference::setPreference($this->user, $preferenceKey, $preferenceValue); - - $dql = "SELECT COUNT(up) FROM PartKeepr\UserPreference\UserPreference up WHERE "; - $dql .= "up.user = :user AND up.preferenceKey = :key"; - - $query = PartKeepr::getEM()->createQuery($dql); - $query->setParameter("user", $this->user); - $query->setParameter("key", $preferenceKey); - - $this->assertEquals(1, $query->getSingleScalarResult()); - } - - /** - * Tests if the correct exception is thrown when attempting to load a non-existing user preference - * @expectedException PartKeepr\UserPreference\Exceptions\UserPreferenceNotFoundException - */ - public function testGetNonExistingUserPreference () { - $preferenceKey = "test2"; - - UserPreference::getPreferenceValue($this->user, $preferenceKey); - } - - /** - * Make sure that deleting a user preference actually works. - * - * We're expecting the UserPreferenceNotFoundException because we are attempting to retrieve the value of the - * previously deleted value. - * - * @expectedException PartKeepr\UserPreference\Exceptions\UserPreferenceNotFoundException - */ - public function testDeleteUserPreference () { - $preferenceKey = "test3"; - $preferenceValue = "123"; - - UserPreference::setPreference($this->user, $preferenceKey, $preferenceValue); - - UserPreference::deletePreference($this->user, $preferenceKey); - - // This one should give us the UserPreferenceNotFoundException - UserPreference::getPreferenceValue($this->user, $preferenceKey); - } - - /** - * This test makes sure that the format in the database is a PHP serialized string. In case somebody - * decides to change the format, this test will fail. IF THIS TEST FAILS, YOU NEED TO PROVIDE A DATABASE - * UPGRADE METHOD! DO NOT CHANGE THIS TEST SO THAT IT SIMPLY PASSES! - */ - public function testDatabaseFormat () { - $preferenceKey = "test4"; - $preferenceValue = "123"; - - UserPreference::setPreference($this->user, $preferenceKey, $preferenceValue); - - $dql = "SELECT up.preferenceValue FROM PartKeepr\UserPreference\UserPreference up WHERE "; - $dql .= "up.user = :user AND up.preferenceKey = :key"; - - $query = PartKeepr::getEM()->createQuery($dql); - $query->setParameter("user", $this->user); - $query->setParameter("key", $preferenceKey); - - $this->assertEquals('s:3:"123";', $query->getSingleScalarResult()); - } - - /** - * Tests if the serialized format matches our requirements. Change this test if you've changed the - * implementation of the user preferences. - */ - public function testSerialize () { - $preferenceKey = "test5"; - $preferenceValue = "123"; - - $expectedArray = array( - "key" => $preferenceKey, - "value" => $preferenceValue, - "user_id" => $this->user->getId() - ); - - $userPreference = UserPreference::setPreference($this->user, $preferenceKey, $preferenceValue); - - $this->assertEquals($expectedArray, $userPreference->serialize()); - } - - /** - * Makes sure that an exception is thrown when attempting to set a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testSetNonPersistantUserPreference () { - $user = new User(); - UserPreference::setPreference($user, "test", "foo"); - } - - /** - * Makes sure that an exception is thrown when attempting to get a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testGetNonPersistantUserPreference () { - $user = new User(); - UserPreference::getPreference($user, "test"); - } - - /** - * Makes sure that an exception is thrown when attempting to delete a preference if the user is not persistant yet. - * - * @expectedException PartKeepr\Util\Exceptions\EntityNotPersistantException - */ - public function testDeleteNonPersistantUserPreference () { - $user = new User(); - UserPreference::deletePreference($user, "test"); - } -}- \ No newline at end of file diff --git a/tests/Util/ConfigurationTest.php b/tests/Util/ConfigurationTest.php @@ -1,21 +0,0 @@ -<?php -namespace PartKeepr\Tests\Util; - -use PartKeepr\Util\Configuration; - -class ConfigurationTest extends \PHPUnit_Framework_TestCase { - public function testConfiguration () { - Configuration::setOption("test", "value"); - - $this->assertEquals(Configuration::getOption("test"), "value"); - - /* Test for the default value of bool false */ - $this->assertEquals(Configuration::getOption("test2"), false); - - /* Test for an user-specified default value */ - $this->assertEquals(Configuration::getOption("test2", "default"), "default"); - - - } -} -?>- \ No newline at end of file diff --git a/tests/bootstrap.php b/tests/bootstrap.php @@ -1,49 +0,0 @@ -<?php -namespace PartKeepr\Tests; - -use PartKeepr\AuthBundle\Entity\User\User; -use \PartKeepr\PartBundle\Entity\PartCategoryManager; -use PartKeepr\PartKeepr; - -include(dirname(__DIR__). "/src/backend/PartKeepr/PartKeepr.php"); - -/** - * Initializes a bootstrapped PartKeepr environment. - * - * This is done within a function because we don't want to pollute the globals, which would give the following message - * during unit tests: - * - * "PDOException: You cannot serialize or unserialize PDO instances" - */ -function initializeEnvironment () { - PartKeepr::initialize("test"); - - $tool = new \Doctrine\ORM\Tools\SchemaTool(PartKeepr::getEM()); - $classes = PartKeepr::getClassMetaData(); - - $tool->dropDatabase(); - $tool->createSchema($classes); - - /* Some very basic installation things */ - PartCategoryManager::getInstance()->ensureRootExists(); - - /* Create a blank admin user */ - $user = new User(); - $user->setUsername("admin"); - $user->setPassword("admin"); - $user->setAdmin(true); - - PartKeepr::getEM()->persist($user); - - /* Create a blank regular user */ - $user2 = new User(); - $user2->setUsername("regular"); - $user2->setPassword("regular"); - $user2->setAdmin(false); - - PartKeepr::getEM()->persist($user2); - - PartKeepr::getEM()->flush(); -} - -initializeEnvironment();- \ No newline at end of file diff --git a/tests/js/index.html b/tests/js/index.html @@ -1,22 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" - "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> - <title>PartKeepr</title> - </head> - <body> - - <table> - <tr> - <th>Test Name</th> - <th>Test Result</th> - </tr> - <tr> - <td><a target="_blank" href="http://www.sencha.com/forum/showthread.php?227059-ExtJS-4.1.1RC2-Docked-Toolbar-enableOverflow-true-throws-error-on-destroy&p=844796#post844796">ExtJS 4.1.1RC2 Docked Toolbar Bug</a></td> - <td><iframe width="40" height="40" src="tests/ExtJS-4.1.1-RC2-dockedToolbarOverflowBug.html"></iframe></td> - </tr> - - </table> - </body> -</html>- \ No newline at end of file diff --git a/tests/js/tests/ExtJS-4.1.1-RC2-dockedToolbarOverflowBug.html b/tests/js/tests/ExtJS-4.1.1-RC2-dockedToolbarOverflowBug.html @@ -1,41 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" - "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> - <link rel="stylesheet" type="text/css" href="../3rdparty/extjs/resources/css/ext-all.css"/> - <title>PartKeepr</title> - <script type="text/javascript" src="../../../3rdparty/extjs/ext-all-debug.js"></script> - - <script type="text/javascript"> - Ext.define('TestWindow', { - extend: 'Ext.Window', - - initComponent: function () { - this.dockedItems = [{ - xtype: 'toolbar', - enableOverflow: true - }]; - - this.callParent(arguments); - } - }); - - Ext.application({ - name: 'Test', - launch: function() { - var j = Ext.create("TestWindow"); - try { - j.destroy(); - document.getElementById("test").style.background = "green"; - } catch (Err) { - document.getElementById("test").style.background = "red"; - } - - } - }); - </script> - </head> - <body id="test"> - </body> -</html>- \ No newline at end of file