PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE Issuer (
iso TEXT,
code TEXT NOT NULL COLLATE NOCASE PRIMARY KEY,
name TEXT NOT NULL COLLATE NOCASE
);
INSERT INTO Issuer VALUES('DZ','algerie','Algeria');
INSERT INTO Issuer VALUES('AD','andorre','Andorra');
INSERT INTO Issuer VALUES('AR','argentine','Argentina');
INSERT INTO Issuer VALUES('AU','australie','Australia');
INSERT INTO Issuer VALUES('AT','autriche','Austria');
INSERT INTO Issuer VALUES('BS','bahamas','Bahamas, The');
INSERT INTO Issuer VALUES('BE','belgique','Belgium');
INSERT INTO Issuer VALUES('BO','bolivie','Bolivia');
INSERT INTO Issuer VALUES('BR','bresil','Brazil');
INSERT INTO Issuer VALUES('BG','bulgarie','Bulgaria');
INSERT INTO Issuer VALUES('CA','canada','Canada');
INSERT INTO Issuer VALUES('CL','chili','Chile');
INSERT INTO Issuer VALUES('CN','chine','China, People''s Republic of');
INSERT INTO Issuer VALUES('CO','colombie','Colombia');
INSERT INTO Issuer VALUES('HR','croatie','Croatia');
INSERT INTO Issuer VALUES('CY','chypre','Cyprus');
INSERT INTO Issuer VALUES('DO','republique_dominicaine','Dominican Republic');
INSERT INTO Issuer VALUES('EC','equateur','Ecuador');
INSERT INTO Issuer VALUES('EE','estonie','Estonia');
INSERT INTO Issuer VALUES('FI','finlande','Finland');
INSERT INTO Issuer VALUES('FR','france','France');
INSERT INTO Issuer VALUES('DE','allemagne','Germany, Federal Republic of');
INSERT INTO Issuer VALUES('GR','grece','Greece');
INSERT INTO Issuer VALUES('HU','hongrie','Hungary');
INSERT INTO Issuer VALUES('IE','irlande','Ireland');
INSERT INTO Issuer VALUES('IT','italie','Italy');
INSERT INTO Issuer VALUES('JP','japon','Japan');
INSERT INTO Issuer VALUES('LB','liban','Lebanon');
INSERT INTO Issuer VALUES('LT','lituanie','Lithuania');
INSERT INTO Issuer VALUES('LU','luxembourg','Luxembourg');
INSERT INTO Issuer VALUES('MT','malte','Malta');
INSERT INTO Issuer VALUES('MX','mexique','Mexico');
INSERT INTO Issuer VALUES('MA','maroc','Morocco');
INSERT INTO Issuer VALUES('NP','nepal','Nepal');
INSERT INTO Issuer VALUES('NL','pays-bas','Netherlands');
INSERT INTO Issuer VALUES('PL','pologne','Poland');
INSERT INTO Issuer VALUES('PT','portugal','Portugal');
INSERT INTO Issuer VALUES('RO','roumanie','Romania');
INSERT INTO Issuer VALUES('RU','russie','Russia');
INSERT INTO Issuer VALUES('SUHH','ancienne_urss','Soviet Union');
INSERT INTO Issuer VALUES('SK','slovaquie','Slovakia');
INSERT INTO Issuer VALUES('SI','slovenie','Slovenia');
INSERT INTO Issuer VALUES('ZA','afrique_du_sud','South Africa');
INSERT INTO Issuer VALUES('ES','espagne','Spain');
INSERT INTO Issuer VALUES('SE','suede','Sweden');
INSERT INTO Issuer VALUES('CH','suisse','Switzerland');
INSERT INTO Issuer VALUES('TH','thailande','Thailand');
INSERT INTO Issuer VALUES('TR','turquie','Turkey');
INSERT INTO Issuer VALUES('AE','emirats_arabes_unis','United Arab Emirates');
INSERT INTO Issuer VALUES('GB','royaume-uni','United Kingdom');
INSERT INTO Issuer VALUES('US','etats-unis','United States');
INSERT INTO Issuer VALUES('GB-ENG','england','England');
CREATE TABLE Currency (
id INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL COLLATE NOCASE,
full_name TEXT NOT NULL COLLATE NOCASE
);
INSERT INTO Currency VALUES(4,'Baht','Baht (1897-date)');
INSERT INTO Currency VALUES(8,'Second boliviano','Second boliviano (1986-date)');
INSERT INTO Currency VALUES(18,'Krona','Krona (1873-date)');
INSERT INTO Currency VALUES(23,'Dinar','Dinar (1964-date)');
INSERT INTO Currency VALUES(35,'Dirham','Dirham (1973-date)');
INSERT INTO Currency VALUES(36,'Dirham','Dirham (1960-date)');
INSERT INTO Currency VALUES(39,'Dollar','Dollar (1966-date)');
INSERT INTO Currency VALUES(44,'Canadian dollar','Canadian dollar (1858-date)');
INSERT INTO Currency VALUES(59,'Dollar','Dollar (1785-date)');
INSERT INTO Currency VALUES(65,'Escudo','Escudo (1911-2001)');
INSERT INTO Currency VALUES(70,'Gulden','Gulden (decimalized, 1817-2001)');
INSERT INTO Currency VALUES(71,'Forint','Forint (1946-date)');
INSERT INTO Currency VALUES(77,'New franc','New franc (1960-2001)');
INSERT INTO Currency VALUES(82,'Franc','Franc (1850-date)');
INSERT INTO Currency VALUES(105,'Fourth leu','Fourth leu (2005-date)');
INSERT INTO Currency VALUES(109,'Fourth lev','Fourth lev (1999-date)');
INSERT INTO Currency VALUES(121,'Lebanese pound','Lebanese pound (1939-date)');
INSERT INTO Currency VALUES(125,'New lira','New lira (2005-date)');
INSERT INTO Currency VALUES(126,'Pound sterling','Pound sterling (decimalized, 1971-date)');
INSERT INTO Currency VALUES(131,'Deutsche Mark','Deutsche Mark (1948-2001)');
INSERT INTO Currency VALUES(142,'Peseta','Peseta (1868-2001)');
INSERT INTO Currency VALUES(145,'Peso convertible','Peso convertible (1992-date)');
INSERT INTO Currency VALUES(146,'New peso','New peso (1975-date)');
INSERT INTO Currency VALUES(147,'Peso decimalized','Peso decimalized (1847-date)');
INSERT INTO Currency VALUES(152,'Peso oro','Peso oro (1937-date)');
INSERT INTO Currency VALUES(156,'Rand','Rand (1961-date)');
INSERT INTO Currency VALUES(158,'Real','Real (1994-date)');
INSERT INTO Currency VALUES(168,'Rouble','Rouble (1961-1991)');
INSERT INTO Currency VALUES(169,'Rouble','Rouble (1998-date)');
INSERT INTO Currency VALUES(173,'Rupee','Rupee (1932-date)');
INSERT INTO Currency VALUES(197,'Yen','Yen (1871-date)');
INSERT INTO Currency VALUES(200,'Fourth złoty','Fourth złoty (1995-date)');
INSERT INTO Currency VALUES(220,'Real','Real (decimalized, 1835-1910)');
INSERT INTO Currency VALUES(243,'Dollar','Dollar (1966-date)');
INSERT INTO Currency VALUES(271,'New Peso','New Peso (1992-date)');
INSERT INTO Currency VALUES(293,'First boliviano','First boliviano (1864-1963)');
INSERT INTO Currency VALUES(322,'Peso boliviano','Peso boliviano (1963-1986)');
INSERT INTO Currency VALUES(361,'U.S. dollar','U.S. dollar (2000-date)');
INSERT INTO Currency VALUES(2826,'Promotional Gas Tokens','France - Promotional Gas Tokens');
INSERT INTO Currency VALUES(9002,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9003,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9004,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9005,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9006,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9007,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9008,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9009,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9010,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9011,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9012,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9013,'Euro','Euro (2002-date)');
INSERT INTO Currency VALUES(9017,'Euro','Euro (2007-date)');
INSERT INTO Currency VALUES(9018,'Euro','Euro (2008-date)');
INSERT INTO Currency VALUES(9019,'Euro','Euro (2008-date)');
INSERT INTO Currency VALUES(9020,'Euro','Euro (2009-date)');
INSERT INTO Currency VALUES(9021,'Euro','Euro (2011-date)');
INSERT INTO Currency VALUES(9023,'Euro','Euro (2015-date)');
INSERT INTO Currency VALUES(9024,'Euro','Euro (2014-date)');
INSERT INTO Currency VALUES(9495,'Pound sterling','Pound sterling (decimalized, 1971-date)');
INSERT INTO Currency VALUES(10395,'Euro','Euro (2023-date)');
CREATE TABLE Value (
id INTEGER NOT NULL PRIMARY KEY,
text TEXT COLLATE NOCASE,
numeric_value REAL,
numerator INTEGER,
denominator INTEGER,
currency_id INTEGER,
FOREIGN KEY (currency_id) REFERENCES Currency(id)
);
INSERT INTO Value VALUES(3,'10 Centimes',0.100000000000000005,NULL,NULL,77);
INSERT INTO Value VALUES(4,'20 Centimes',0.200000000000000011,NULL,NULL,77);
INSERT INTO Value VALUES(5,'½ Franc',0.5,1,2,77);
INSERT INTO Value VALUES(8,'5 Francs',5.0,NULL,NULL,77);
INSERT INTO Value VALUES(9,'10 Francs',10.0,NULL,NULL,77);
INSERT INTO Value VALUES(12,'1 Franc',1.0,NULL,NULL,77);
INSERT INTO Value VALUES(42,'1 Cent',0.0100000000000000002,NULL,NULL,59);
INSERT INTO Value VALUES(43,'1 Cent',0.0100000000000000002,NULL,NULL,59);
INSERT INTO Value VALUES(44,'5 Cents',0.0500000000000000027,NULL,NULL,59);
INSERT INTO Value VALUES(53,'1 Dime ',0.100000000000000005,NULL,NULL,59);
INSERT INTO Value VALUES(55,'¼ Dollar ',0.25,1,4,59);
INSERT INTO Value VALUES(57,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9002);
INSERT INTO Value VALUES(58,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9002);
INSERT INTO Value VALUES(73,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9003);
INSERT INTO Value VALUES(74,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9003);
INSERT INTO Value VALUES(75,'10 Euro Cent',0.100000000000000005,NULL,NULL,9003);
INSERT INTO Value VALUES(78,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9003);
INSERT INTO Value VALUES(79,'20 Euro Cent',0.200000000000000011,NULL,NULL,9003);
INSERT INTO Value VALUES(81,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9004);
INSERT INTO Value VALUES(82,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9004);
INSERT INTO Value VALUES(83,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9004);
INSERT INTO Value VALUES(84,'10 Euro Cent',0.100000000000000005,NULL,NULL,9004);
INSERT INTO Value VALUES(85,'20 Euro Cent',0.200000000000000011,NULL,NULL,9004);
INSERT INTO Value VALUES(88,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(91,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9005);
INSERT INTO Value VALUES(96,'2 Euro',2.0,NULL,NULL,9005);
INSERT INTO Value VALUES(97,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9006);
INSERT INTO Value VALUES(98,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9006);
INSERT INTO Value VALUES(99,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9006);
INSERT INTO Value VALUES(100,'10 Euro Cent',0.100000000000000005,NULL,NULL,9006);
INSERT INTO Value VALUES(105,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9007);
INSERT INTO Value VALUES(106,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9007);
INSERT INTO Value VALUES(107,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9007);
INSERT INTO Value VALUES(108,'10 Euro Cent',0.100000000000000005,NULL,NULL,9007);
INSERT INTO Value VALUES(109,'20 Euro Cent',0.200000000000000011,NULL,NULL,9007);
INSERT INTO Value VALUES(110,'50 Euro Cent',0.5,NULL,NULL,9007);
INSERT INTO Value VALUES(111,'1 Euro',1.0,NULL,NULL,9007);
INSERT INTO Value VALUES(115,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9008);
INSERT INTO Value VALUES(116,'10 Euro Cent',0.100000000000000005,NULL,NULL,9008);
INSERT INTO Value VALUES(118,'50 Euro Cent',0.5,NULL,NULL,9008);
INSERT INTO Value VALUES(120,'2 Euro',2.0,NULL,NULL,9008);
INSERT INTO Value VALUES(121,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9009);
INSERT INTO Value VALUES(122,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9009);
INSERT INTO Value VALUES(125,'20 Euro Cent',0.200000000000000011,NULL,NULL,9009);
INSERT INTO Value VALUES(129,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9010);
INSERT INTO Value VALUES(130,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9010);
INSERT INTO Value VALUES(131,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9010);
INSERT INTO Value VALUES(132,'10 Euro Cent',0.100000000000000005,NULL,NULL,9010);
INSERT INTO Value VALUES(133,'20 Euro Cent',0.200000000000000011,NULL,NULL,9010);
INSERT INTO Value VALUES(136,'2 Euro',2.0,NULL,NULL,9010);
INSERT INTO Value VALUES(137,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9011);
INSERT INTO Value VALUES(138,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9011);
INSERT INTO Value VALUES(139,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9011);
INSERT INTO Value VALUES(144,'2 Euro',2.0,NULL,NULL,9011);
INSERT INTO Value VALUES(145,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9012);
INSERT INTO Value VALUES(146,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9012);
INSERT INTO Value VALUES(147,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9012);
INSERT INTO Value VALUES(149,'20 Euro Cent',0.200000000000000011,NULL,NULL,9012);
INSERT INTO Value VALUES(152,'2 Euro',2.0,NULL,NULL,9012);
INSERT INTO Value VALUES(153,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9013);
INSERT INTO Value VALUES(154,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9013);
INSERT INTO Value VALUES(155,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9013);
INSERT INTO Value VALUES(156,'10 Euro Cent',0.100000000000000005,NULL,NULL,9013);
INSERT INTO Value VALUES(171,'5 Rappen',0.0500000000000000027,NULL,NULL,82);
INSERT INTO Value VALUES(173,'10 Rappen',0.100000000000000005,NULL,NULL,82);
INSERT INTO Value VALUES(178,'20 Rappen',0.200000000000000011,NULL,NULL,82);
INSERT INTO Value VALUES(185,'1 Franc',1.0,NULL,NULL,82);
INSERT INTO Value VALUES(189,'2 Francs',2.0,NULL,NULL,82);
INSERT INTO Value VALUES(242,'1 Euro',1.0,NULL,NULL,9017);
INSERT INTO Value VALUES(243,'2 Euro',2.0,NULL,NULL,9017);
INSERT INTO Value VALUES(377,'10 Cents',0.100000000000000005,NULL,NULL,44);
INSERT INTO Value VALUES(403,'5 Cents',0.0500000000000000027,NULL,NULL,44);
INSERT INTO Value VALUES(465,'1 Dollar',1.0,NULL,NULL,44);
INSERT INTO Value VALUES(524,'5 Groszy',0.0500000000000000027,NULL,NULL,200);
INSERT INTO Value VALUES(573,'20 Pence',0.200000000000000011,NULL,NULL,126);
INSERT INTO Value VALUES(587,'2 Pesos',2.0,NULL,NULL,271);
INSERT INTO Value VALUES(589,'5 Pesos',5.0,NULL,NULL,271);
INSERT INTO Value VALUES(591,'10 Pesos',10.0,NULL,NULL,271);
INSERT INTO Value VALUES(596,'20 Dinars',20.0,NULL,NULL,23);
INSERT INTO Value VALUES(614,'¼ Dollar ',0.25,1,4,59);
INSERT INTO Value VALUES(648,'¼ Dollar ',0.25,1,4,59);
INSERT INTO Value VALUES(649,'¼ Dollar ',0.25,1,4,59);
INSERT INTO Value VALUES(664,'2 Pence',0.0200000000000000004,NULL,NULL,126);
INSERT INTO Value VALUES(665,'1 Penny',0.0100000000000000002,NULL,NULL,126);
INSERT INTO Value VALUES(666,'50 Centavos',0.5,NULL,NULL,158);
INSERT INTO Value VALUES(681,'50 Francs',50.0,NULL,NULL,77);
INSERT INTO Value VALUES(734,'10 Cents',0.100000000000000005,NULL,NULL,70);
INSERT INTO Value VALUES(766,'3 Kopecks',0.0299999999999999988,NULL,NULL,168);
INSERT INTO Value VALUES(768,'20 Réis',20.0,NULL,NULL,220);
INSERT INTO Value VALUES(770,'50 Escudos',50.0,NULL,NULL,65);
INSERT INTO Value VALUES(771,'10 Escudos',10.0,NULL,NULL,65);
INSERT INTO Value VALUES(772,'5 Escudos',5.0,NULL,NULL,65);
INSERT INTO Value VALUES(773,'5 Escudos',5.0,NULL,NULL,65);
INSERT INTO Value VALUES(774,'2.50 Escudos',2.5,NULL,NULL,65);
INSERT INTO Value VALUES(775,'1 Escudo',1.0,NULL,NULL,65);
INSERT INTO Value VALUES(776,'50 Centavos',0.5,NULL,NULL,65);
INSERT INTO Value VALUES(779,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(781,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(782,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(783,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(784,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(787,'1 Peseta',1.0,NULL,NULL,142);
INSERT INTO Value VALUES(844,'2 Deutsche Mark',2.0,NULL,NULL,131);
INSERT INTO Value VALUES(846,'1 Deutsche Mark',1.0,NULL,NULL,131);
INSERT INTO Value VALUES(847,'50 Pfennigs',0.5,NULL,NULL,131);
INSERT INTO Value VALUES(850,'10 Pfennigs',0.100000000000000005,NULL,NULL,131);
INSERT INTO Value VALUES(854,'1 Pfennig',0.0100000000000000002,NULL,NULL,131);
INSERT INTO Value VALUES(861,'1 Penny',0.0100000000000000002,NULL,NULL,126);
INSERT INTO Value VALUES(862,'1 Penny',0.0100000000000000002,NULL,NULL,126);
INSERT INTO Value VALUES(863,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(864,'50 Pence',0.5,NULL,NULL,126);
INSERT INTO Value VALUES(865,'20 Pence',0.200000000000000011,NULL,NULL,126);
INSERT INTO Value VALUES(867,'2 Pence',0.0200000000000000004,NULL,NULL,126);
INSERT INTO Value VALUES(868,'2 Pence',0.0200000000000000004,NULL,NULL,126);
INSERT INTO Value VALUES(875,'5 Pence',0.0500000000000000027,NULL,NULL,126);
INSERT INTO Value VALUES(876,'5 Pence',0.0500000000000000027,NULL,NULL,126);
INSERT INTO Value VALUES(879,'10 Pence',0.100000000000000005,NULL,NULL,126);
INSERT INTO Value VALUES(907,'1 Escudo',1.0,NULL,NULL,65);
INSERT INTO Value VALUES(908,'1 Cent',0.0100000000000000002,NULL,NULL,59);
INSERT INTO Value VALUES(941,'1 Cent',0.0100000000000000002,NULL,NULL,39);
INSERT INTO Value VALUES(946,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(991,'50 Centavos',0.5,NULL,NULL,65);
INSERT INTO Value VALUES(1051,'200 Pesos',200.0,NULL,NULL,147);
INSERT INTO Value VALUES(1073,'50 Pesos',50.0,NULL,NULL,147);
INSERT INTO Value VALUES(1149,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(1236,'10 Centavos',0.100000000000000005,NULL,NULL,65);
INSERT INTO Value VALUES(1237,'20 Centavos',0.200000000000000011,NULL,NULL,65);
INSERT INTO Value VALUES(1238,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(1241,'1 Escudo',1.0,NULL,NULL,65);
INSERT INTO Value VALUES(1242,'100 Escudos',100.0,NULL,NULL,65);
INSERT INTO Value VALUES(1243,'20 Escudos',20.0,NULL,NULL,65);
INSERT INTO Value VALUES(1258,'100 Pesetas',100.0,NULL,NULL,142);
INSERT INTO Value VALUES(1262,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(1263,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(1264,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(1266,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(1267,'1 Peseta',1.0,NULL,NULL,142);
INSERT INTO Value VALUES(1324,'2 Pounds',2.0,NULL,NULL,126);
INSERT INTO Value VALUES(1353,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(1366,'10 Centavos',0.100000000000000005,NULL,NULL,65);
INSERT INTO Value VALUES(1376,'20 Pence',0.200000000000000011,NULL,NULL,126);
INSERT INTO Value VALUES(1384,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(1389,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(1390,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(1395,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(1397,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(1571,'5 Paisa',0.0500000000000000027,NULL,NULL,173);
INSERT INTO Value VALUES(1589,'100 Yen',100.0,NULL,NULL,197);
INSERT INTO Value VALUES(1643,'10 Baht',10.0,NULL,NULL,4);
INSERT INTO Value VALUES(1702,'20 Cents',0.200000000000000011,NULL,NULL,243);
INSERT INTO Value VALUES(1703,'20 Cents',0.200000000000000011,NULL,NULL,243);
INSERT INTO Value VALUES(1998,'5 Forint',5.0,NULL,NULL,71);
INSERT INTO Value VALUES(2047,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(2168,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(2169,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(2173,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9018);
INSERT INTO Value VALUES(2175,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9018);
INSERT INTO Value VALUES(2178,'50 Euro Cent',0.5,NULL,NULL,9018);
INSERT INTO Value VALUES(2180,'2 Euro',2.0,NULL,NULL,9018);
INSERT INTO Value VALUES(2183,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9019);
INSERT INTO Value VALUES(2201,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(2204,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(2217,'1 Peso',1.0,NULL,NULL,145);
INSERT INTO Value VALUES(2236,'10 Pence',0.100000000000000005,NULL,NULL,126);
INSERT INTO Value VALUES(2252,'25 Centavos',0.25,NULL,NULL,158);
INSERT INTO Value VALUES(2253,'10 Centavos',0.100000000000000005,NULL,NULL,158);
INSERT INTO Value VALUES(2254,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(2255,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(2304,'100 Pesetas',100.0,NULL,NULL,142);
INSERT INTO Value VALUES(2374,'100 Pesetas',100.0,NULL,NULL,142);
INSERT INTO Value VALUES(2375,'10 Stotinki',0.100000000000000005,NULL,NULL,109);
INSERT INTO Value VALUES(2376,'20 Stotinki',0.200000000000000011,NULL,NULL,109);
INSERT INTO Value VALUES(2383,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(2384,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(2432,'500 Pesos',500.0,NULL,NULL,147);
INSERT INTO Value VALUES(2433,'100 Pesos',100.0,NULL,NULL,147);
INSERT INTO Value VALUES(2504,'5 Pesos',5.0,NULL,NULL,152);
INSERT INTO Value VALUES(2736,'25 Pesetas',25.0,NULL,NULL,142);
INSERT INTO Value VALUES(2763,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(2842,'10 Pesos',10.0,NULL,NULL,146);
INSERT INTO Value VALUES(2903,'20 Cents',0.200000000000000011,NULL,NULL,156);
INSERT INTO Value VALUES(2986,'100 Pesetas',100.0,NULL,NULL,142);
INSERT INTO Value VALUES(2994,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(3002,'10 Centavos',0.100000000000000005,NULL,NULL,361);
INSERT INTO Value VALUES(3044,'1 Lira',1.0,NULL,NULL,125);
INSERT INTO Value VALUES(3200,'50 Pesetas',50.0,NULL,NULL,142);
INSERT INTO Value VALUES(3223,'20 Centavos',0.200000000000000011,NULL,NULL,8);
INSERT INTO Value VALUES(3224,'50 Centavos',0.5,NULL,NULL,322);
INSERT INTO Value VALUES(3225,'50 Centavos',0.5,NULL,NULL,8);
INSERT INTO Value VALUES(3228,'1 Boliviano',1.0,NULL,NULL,8);
INSERT INTO Value VALUES(3256,'25 Centavos',0.25,NULL,NULL,145);
INSERT INTO Value VALUES(3282,'20 Centavos',0.200000000000000011,NULL,NULL,65);
INSERT INTO Value VALUES(3372,'10 Euro Cent',0.100000000000000005,NULL,NULL,9004);
INSERT INTO Value VALUES(3510,'10 Euro Cent',0.100000000000000005,NULL,NULL,9006);
INSERT INTO Value VALUES(3818,'5 Dirhams',5.0,NULL,NULL,36);
INSERT INTO Value VALUES(3888,'100 Pesetas',100.0,NULL,NULL,142);
INSERT INTO Value VALUES(3932,'5 Pesetas',5.0,NULL,NULL,142);
INSERT INTO Value VALUES(4038,'1 Penny',0.0100000000000000002,NULL,NULL,126);
INSERT INTO Value VALUES(4039,'2 Pence',0.0200000000000000004,NULL,NULL,126);
INSERT INTO Value VALUES(4141,'5 Reis',5.0,NULL,NULL,220);
INSERT INTO Value VALUES(4546,'50 Pesetas',50.0,NULL,NULL,142);
INSERT INTO Value VALUES(4580,'50 Kopecks',0.5,NULL,NULL,169);
INSERT INTO Value VALUES(4729,'100 Escudos',100.0,NULL,NULL,65);
INSERT INTO Value VALUES(4901,'50 Centavos',0.5,NULL,NULL,293);
INSERT INTO Value VALUES(4902,'50 Centavos',0.5,NULL,NULL,293);
INSERT INTO Value VALUES(5010,'5 Cents',0.0500000000000000027,NULL,NULL,39);
INSERT INTO Value VALUES(5012,'15 Cents',0.149999999999999994,NULL,NULL,39);
INSERT INTO Value VALUES(5063,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(5086,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9020);
INSERT INTO Value VALUES(5109,'1 Lev',1.0,NULL,NULL,109);
INSERT INTO Value VALUES(5444,'10 Escudos',10.0,NULL,NULL,65);
INSERT INTO Value VALUES(5492,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(5624,'200 Pesetas',200.0,NULL,NULL,142);
INSERT INTO Value VALUES(5628,'20 Pence',0.200000000000000011,NULL,NULL,126);
INSERT INTO Value VALUES(5737,'2 Rupees',2.0,NULL,NULL,173);
INSERT INTO Value VALUES(5786,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(6071,'2.50 Escudos',2.5,NULL,NULL,65);
INSERT INTO Value VALUES(6163,'1 Lira',1.0,NULL,NULL,125);
INSERT INTO Value VALUES(6164,'25 Kuruş',0.25,NULL,NULL,125);
INSERT INTO Value VALUES(6165,'10 Kuruş',0.100000000000000005,NULL,NULL,125);
INSERT INTO Value VALUES(6258,'10 Escudos',10.0,NULL,NULL,65);
INSERT INTO Value VALUES(6278,'50 Paisa',0.5,NULL,NULL,173);
INSERT INTO Value VALUES(6293,'2 Euro',2.0,NULL,NULL,9003);
INSERT INTO Value VALUES(6298,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9003);
INSERT INTO Value VALUES(6307,'50 Euro Cent',0.5,NULL,NULL,9003);
INSERT INTO Value VALUES(6319,'20 Euro Cent',0.200000000000000011,NULL,NULL,9007);
INSERT INTO Value VALUES(6329,'10 Euro Cent',0.100000000000000005,NULL,NULL,9009);
INSERT INTO Value VALUES(6333,'1 Euro',1.0,NULL,NULL,9009);
INSERT INTO Value VALUES(6334,'2 Euro',2.0,NULL,NULL,9009);
INSERT INTO Value VALUES(6350,'20 Euro Cent',0.200000000000000011,NULL,NULL,9008);
INSERT INTO Value VALUES(6361,'20 Euro Cent',0.200000000000000011,NULL,NULL,9004);
INSERT INTO Value VALUES(6373,'20 Euro Cent',0.200000000000000011,NULL,NULL,9006);
INSERT INTO Value VALUES(6374,'50 Euro Cent',0.5,NULL,NULL,9006);
INSERT INTO Value VALUES(6376,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(6418,'20 Euro Cent',0.200000000000000011,NULL,NULL,9011);
INSERT INTO Value VALUES(6499,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(6500,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(6612,'5 Pence',0.0500000000000000027,NULL,NULL,126);
INSERT INTO Value VALUES(6926,'10 Kronor',10.0,NULL,NULL,18);
INSERT INTO Value VALUES(7047,'5 Kuruş',0.0500000000000000027,NULL,NULL,125);
INSERT INTO Value VALUES(7048,'50 Kuruş',0.5,NULL,NULL,125);
INSERT INTO Value VALUES(7130,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(7184,'200 Pesetas',200.0,NULL,NULL,142);
INSERT INTO Value VALUES(7193,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(7337,'5 Escudos',5.0,NULL,NULL,65);
INSERT INTO Value VALUES(7338,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(7398,'2 Pence',0.0200000000000000004,NULL,NULL,126);
INSERT INTO Value VALUES(7461,'1 Rupee',1.0,NULL,NULL,173);
INSERT INTO Value VALUES(7524,'1000 Pesos',1000.0,NULL,NULL,147);
INSERT INTO Value VALUES(7576,'50 Centimos',0.5,NULL,NULL,142);
INSERT INTO Value VALUES(7639,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(7872,'25 Paisa',0.25,NULL,NULL,173);
INSERT INTO Value VALUES(7905,'1 Euro',1.0,NULL,NULL,9002);
INSERT INTO Value VALUES(8862,'1 Rupee',1.0,NULL,NULL,173);
INSERT INTO Value VALUES(8896,'1 Real',1.0,NULL,NULL,158);
INSERT INTO Value VALUES(8925,'200 Pesetas',200.0,NULL,NULL,142);
INSERT INTO Value VALUES(9224,'10 Cents',0.100000000000000005,NULL,NULL,39);
INSERT INTO Value VALUES(9285,'2 Centavos',0.0200000000000000004,NULL,NULL,65);
INSERT INTO Value VALUES(9761,'2 Euro',2.0,NULL,NULL,9002);
INSERT INTO Value VALUES(9826,'1 Escudo',1.0,NULL,NULL,65);
INSERT INTO Value VALUES(9828,'2.50 Escudos',2.5,NULL,NULL,65);
INSERT INTO Value VALUES(9831,'25 Escudos',25.0,NULL,NULL,65);
INSERT INTO Value VALUES(9834,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(9894,'1 Euro',1.0,NULL,NULL,9013);
INSERT INTO Value VALUES(9895,'10 Euro Cent',0.100000000000000005,NULL,NULL,9013);
INSERT INTO Value VALUES(9896,'20 Euro Cent',0.200000000000000011,NULL,NULL,9013);
INSERT INTO Value VALUES(10004,'1 Satang',0.0100000000000000002,NULL,NULL,4);
INSERT INTO Value VALUES(10126,'5 Escudos',5.0,NULL,NULL,65);
INSERT INTO Value VALUES(10288,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(10854,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9004);
INSERT INTO Value VALUES(10856,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9004);
INSERT INTO Value VALUES(10857,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9004);
INSERT INTO Value VALUES(10860,'50 Euro Cent',0.5,NULL,NULL,9004);
INSERT INTO Value VALUES(10862,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(11526,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(11635,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(11691,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(11695,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(11952,'1 Escudo',1.0,NULL,NULL,65);
INSERT INTO Value VALUES(13034,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(13038,'200 Escudos',200.0,NULL,NULL,65);
INSERT INTO Value VALUES(13820,'2 Bolivianos',2.0,NULL,NULL,8);
INSERT INTO Value VALUES(15296,'25 Cents',0.25,NULL,NULL,39);
INSERT INTO Value VALUES(15575,'50 Paisa',0.5,NULL,NULL,173);
INSERT INTO Value VALUES(16586,'2 Euro Cent',0.0200000000000000004,NULL,NULL,9021);
INSERT INTO Value VALUES(16588,'5 Euro Cent',0.0500000000000000027,NULL,NULL,9021);
INSERT INTO Value VALUES(18054,'2 Bolivianos',2.0,NULL,NULL,8);
INSERT INTO Value VALUES(18666,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(19979,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(20700,'50 Pence',0.5,NULL,NULL,126);
INSERT INTO Value VALUES(20892,'2 Euro',2.0,NULL,NULL,9010);
INSERT INTO Value VALUES(22038,'10 Baht',10.0,NULL,NULL,4);
INSERT INTO Value VALUES(22544,'50 Paisa',0.5,NULL,NULL,173);
INSERT INTO Value VALUES(22652,NULL,NULL,NULL,NULL,2826);
INSERT INTO Value VALUES(24276,NULL,NULL,NULL,NULL,2826);
INSERT INTO Value VALUES(25746,'10 Pence',0.100000000000000005,NULL,NULL,126);
INSERT INTO Value VALUES(25766,'5 Pence',0.0500000000000000027,NULL,NULL,126);
INSERT INTO Value VALUES(26208,'25 Paisa',0.25,NULL,NULL,173);
INSERT INTO Value VALUES(26791,'2 Rupees',2.0,NULL,NULL,173);
INSERT INTO Value VALUES(26792,'5 Rupees',5.0,NULL,NULL,173);
INSERT INTO Value VALUES(27352,'5 Dirhams',5.0,NULL,NULL,36);
INSERT INTO Value VALUES(27395,'10 Dirhams',10.0,NULL,NULL,36);
INSERT INTO Value VALUES(27528,'2 Pesos',2.0,NULL,NULL,145);
INSERT INTO Value VALUES(28191,'2 Euro',2.0,NULL,NULL,9002);
INSERT INTO Value VALUES(28330,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(28608,'2 Stotinki',0.0200000000000000004,NULL,NULL,109);
INSERT INTO Value VALUES(28610,'1 Stotinka',0.0100000000000000002,NULL,NULL,109);
INSERT INTO Value VALUES(28611,'5 Stotinki',0.0500000000000000027,NULL,NULL,109);
INSERT INTO Value VALUES(32604,'1 Dollar',1.0,NULL,NULL,44);
INSERT INTO Value VALUES(40522,'1 Dirham',1.0,NULL,NULL,35);
INSERT INTO Value VALUES(41904,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(42976,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(49339,'2 Euro',2.0,NULL,NULL,9003);
INSERT INTO Value VALUES(54956,'10 Euro Cent',0.100000000000000005,NULL,NULL,9012);
INSERT INTO Value VALUES(56030,'1 Euro Cent',0.0100000000000000002,NULL,NULL,9003);
INSERT INTO Value VALUES(56035,'50 Euro Cent',0.5,NULL,NULL,9003);
INSERT INTO Value VALUES(61644,'5 Groszy',0.0500000000000000027,NULL,NULL,200);
INSERT INTO Value VALUES(67631,'1 Euro',1.0,NULL,NULL,9023);
INSERT INTO Value VALUES(68395,'2 Euro',2.0,NULL,NULL,9024);
INSERT INTO Value VALUES(69263,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(69264,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(70547,'5 Pence',0.0500000000000000027,NULL,NULL,126);
INSERT INTO Value VALUES(81058,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(82237,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(84061,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(87329,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(88649,'1 Krona',1.0,NULL,NULL,18);
INSERT INTO Value VALUES(89870,'2 Pesos',2.0,NULL,NULL,145);
INSERT INTO Value VALUES(91431,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(100658,'1 Pound',1.0,NULL,NULL,126);
INSERT INTO Value VALUES(102445,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(105040,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(122665,'250 Livres',250.0,NULL,NULL,121);
INSERT INTO Value VALUES(133815,'10 Bani',0.100000000000000005,NULL,NULL,105);
INSERT INTO Value VALUES(133816,'50 Bani',0.5,NULL,NULL,105);
INSERT INTO Value VALUES(134685,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(157845,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(192990,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(201624,'5 Pounds',5.0,NULL,NULL,9495);
INSERT INTO Value VALUES(201676,'2 Leva',2.0,NULL,NULL,109);
INSERT INTO Value VALUES(202243,'20 Escudos',20.0,NULL,NULL,65);
INSERT INTO Value VALUES(202279,'100 Dirhams',100.0,NULL,NULL,36);
INSERT INTO Value VALUES(202287,'20 Dirhams',20.0,NULL,NULL,36);
INSERT INTO Value VALUES(202397,'5 Dollars',5.0,NULL,NULL,59);
INSERT INTO Value VALUES(202523,'10 Pounds',10.0,NULL,NULL,9495);
INSERT INTO Value VALUES(206382,'5 Lira',5.0,NULL,NULL,125);
INSERT INTO Value VALUES(206385,'10 Lira',10.0,NULL,NULL,125);
INSERT INTO Value VALUES(206387,'20 Lira',20.0,NULL,NULL,125);
INSERT INTO Value VALUES(258832,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(264789,'2 Euro',2.0,NULL,NULL,9004);
INSERT INTO Value VALUES(274850,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(275891,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(302331,'5 Leva',5.0,NULL,NULL,109);
INSERT INTO Value VALUES(314709,'2 Euro',2.0,NULL,NULL,9007);
INSERT INTO Value VALUES(314962,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(318748,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(319351,'2 Rupees',2.0,NULL,NULL,173);
INSERT INTO Value VALUES(321378,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(331445,'2 Euro',2.0,NULL,NULL,9010);
INSERT INTO Value VALUES(338338,'1 Euro',1.0,NULL,NULL,10395);
INSERT INTO Value VALUES(338339,'2 Euro',2.0,NULL,NULL,10395);
INSERT INTO Value VALUES(368994,'2 Euro',2.0,NULL,NULL,9013);
INSERT INTO Value VALUES(369820,'2 Euro',2.0,NULL,NULL,9006);
INSERT INTO Value VALUES(377368,'25 Cents',0.25,NULL,NULL,44);
CREATE TABLE Demonetization (
id INTEGER NOT NULL PRIMARY KEY,
is_demonetized BOOLEAN NOT NULL,
demonetization_date TEXT
);
INSERT INTO Demonetization VALUES(3,1,'2002-02-17');
INSERT INTO Demonetization VALUES(4,1,'2002-02-17');
INSERT INTO Demonetization VALUES(5,1,'2002-02-17');
INSERT INTO Demonetization VALUES(8,1,'2002-02-17');
INSERT INTO Demonetization VALUES(9,1,'2005-02-17');
INSERT INTO Demonetization VALUES(12,1,'2005-02-17');
INSERT INTO Demonetization VALUES(42,0,NULL);
INSERT INTO Demonetization VALUES(43,0,NULL);
INSERT INTO Demonetization VALUES(44,0,NULL);
INSERT INTO Demonetization VALUES(53,0,NULL);
INSERT INTO Demonetization VALUES(55,0,NULL);
INSERT INTO Demonetization VALUES(57,0,NULL);
INSERT INTO Demonetization VALUES(58,0,NULL);
INSERT INTO Demonetization VALUES(73,0,NULL);
INSERT INTO Demonetization VALUES(74,0,NULL);
INSERT INTO Demonetization VALUES(75,0,NULL);
INSERT INTO Demonetization VALUES(78,0,NULL);
INSERT INTO Demonetization VALUES(79,0,NULL);
INSERT INTO Demonetization VALUES(81,0,NULL);
INSERT INTO Demonetization VALUES(82,0,NULL);
INSERT INTO Demonetization VALUES(83,0,NULL);
INSERT INTO Demonetization VALUES(84,0,NULL);
INSERT INTO Demonetization VALUES(85,0,NULL);
INSERT INTO Demonetization VALUES(88,0,NULL);
INSERT INTO Demonetization VALUES(91,0,NULL);
INSERT INTO Demonetization VALUES(96,0,NULL);
INSERT INTO Demonetization VALUES(97,0,NULL);
INSERT INTO Demonetization VALUES(98,0,NULL);
INSERT INTO Demonetization VALUES(99,0,NULL);
INSERT INTO Demonetization VALUES(100,0,NULL);
INSERT INTO Demonetization VALUES(105,0,NULL);
INSERT INTO Demonetization VALUES(106,0,NULL);
INSERT INTO Demonetization VALUES(107,0,NULL);
INSERT INTO Demonetization VALUES(108,0,NULL);
INSERT INTO Demonetization VALUES(109,0,NULL);
INSERT INTO Demonetization VALUES(110,0,NULL);
INSERT INTO Demonetization VALUES(111,0,NULL);
INSERT INTO Demonetization VALUES(115,0,NULL);
INSERT INTO Demonetization VALUES(116,0,NULL);
INSERT INTO Demonetization VALUES(118,0,NULL);
INSERT INTO Demonetization VALUES(120,0,NULL);
INSERT INTO Demonetization VALUES(121,0,NULL);
INSERT INTO Demonetization VALUES(122,0,NULL);
INSERT INTO Demonetization VALUES(125,0,NULL);
INSERT INTO Demonetization VALUES(129,0,NULL);
INSERT INTO Demonetization VALUES(130,0,NULL);
INSERT INTO Demonetization VALUES(131,0,NULL);
INSERT INTO Demonetization VALUES(132,0,NULL);
INSERT INTO Demonetization VALUES(133,0,NULL);
INSERT INTO Demonetization VALUES(136,0,NULL);
INSERT INTO Demonetization VALUES(137,0,NULL);
INSERT INTO Demonetization VALUES(138,0,NULL);
INSERT INTO Demonetization VALUES(139,0,NULL);
INSERT INTO Demonetization VALUES(144,0,NULL);
INSERT INTO Demonetization VALUES(145,0,NULL);
INSERT INTO Demonetization VALUES(146,0,NULL);
INSERT INTO Demonetization VALUES(147,0,NULL);
INSERT INTO Demonetization VALUES(149,0,NULL);
INSERT INTO Demonetization VALUES(152,0,NULL);
INSERT INTO Demonetization VALUES(153,0,NULL);
INSERT INTO Demonetization VALUES(154,0,NULL);
INSERT INTO Demonetization VALUES(155,0,NULL);
INSERT INTO Demonetization VALUES(156,0,NULL);
INSERT INTO Demonetization VALUES(171,0,NULL);
INSERT INTO Demonetization VALUES(173,0,NULL);
INSERT INTO Demonetization VALUES(178,0,NULL);
INSERT INTO Demonetization VALUES(185,0,NULL);
INSERT INTO Demonetization VALUES(189,0,NULL);
INSERT INTO Demonetization VALUES(242,0,NULL);
INSERT INTO Demonetization VALUES(243,0,NULL);
INSERT INTO Demonetization VALUES(377,0,NULL);
INSERT INTO Demonetization VALUES(403,0,NULL);
INSERT INTO Demonetization VALUES(465,0,NULL);
INSERT INTO Demonetization VALUES(524,0,NULL);
INSERT INTO Demonetization VALUES(573,0,NULL);
INSERT INTO Demonetization VALUES(587,0,NULL);
INSERT INTO Demonetization VALUES(589,0,NULL);
INSERT INTO Demonetization VALUES(591,0,NULL);
INSERT INTO Demonetization VALUES(596,0,NULL);
INSERT INTO Demonetization VALUES(614,0,NULL);
INSERT INTO Demonetization VALUES(648,0,NULL);
INSERT INTO Demonetization VALUES(649,0,NULL);
INSERT INTO Demonetization VALUES(664,0,NULL);
INSERT INTO Demonetization VALUES(665,0,NULL);
INSERT INTO Demonetization VALUES(666,0,NULL);
INSERT INTO Demonetization VALUES(681,1,'1980-04-30');
INSERT INTO Demonetization VALUES(734,1,'2002-01-01');
INSERT INTO Demonetization VALUES(766,1,'1991-00-00');
INSERT INTO Demonetization VALUES(768,1,NULL);
INSERT INTO Demonetization VALUES(770,1,'2002-02-28');
INSERT INTO Demonetization VALUES(771,1,'2002-02-28');
INSERT INTO Demonetization VALUES(772,1,'2002-02-28');
INSERT INTO Demonetization VALUES(773,1,'2002-02-28');
INSERT INTO Demonetization VALUES(774,1,'2002-02-28');
INSERT INTO Demonetization VALUES(775,1,'2002-02-28');
INSERT INTO Demonetization VALUES(776,1,'2002-02-28');
INSERT INTO Demonetization VALUES(779,1,'2002-02-28');
INSERT INTO Demonetization VALUES(781,1,'1997-01-01');
INSERT INTO Demonetization VALUES(782,1,'1997-01-01');
INSERT INTO Demonetization VALUES(783,1,'2002-02-28');
INSERT INTO Demonetization VALUES(784,1,'2002-02-28');
INSERT INTO Demonetization VALUES(787,1,'1997-01-01');
INSERT INTO Demonetization VALUES(844,1,'2002-02-28');
INSERT INTO Demonetization VALUES(846,1,'2001-12-31');
INSERT INTO Demonetization VALUES(847,1,'2001-12-31');
INSERT INTO Demonetization VALUES(850,1,'2001-12-31');
INSERT INTO Demonetization VALUES(854,1,'2001-12-31');
INSERT INTO Demonetization VALUES(861,0,NULL);
INSERT INTO Demonetization VALUES(862,0,NULL);
INSERT INTO Demonetization VALUES(863,1,'2017-10-15');
INSERT INTO Demonetization VALUES(864,0,NULL);
INSERT INTO Demonetization VALUES(865,0,NULL);
INSERT INTO Demonetization VALUES(867,0,NULL);
INSERT INTO Demonetization VALUES(868,0,NULL);
INSERT INTO Demonetization VALUES(875,0,NULL);
INSERT INTO Demonetization VALUES(876,0,NULL);
INSERT INTO Demonetization VALUES(879,0,NULL);
INSERT INTO Demonetization VALUES(907,1,NULL);
INSERT INTO Demonetization VALUES(908,0,NULL);
INSERT INTO Demonetization VALUES(941,1,'2020-12-31');
INSERT INTO Demonetization VALUES(946,1,'1997-01-01');
INSERT INTO Demonetization VALUES(991,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1051,0,NULL);
INSERT INTO Demonetization VALUES(1073,0,NULL);
INSERT INTO Demonetization VALUES(1149,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1236,1,'1982-01-01');
INSERT INTO Demonetization VALUES(1237,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1238,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1241,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1242,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1243,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1258,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1262,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1263,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1264,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1266,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1267,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1324,0,NULL);
INSERT INTO Demonetization VALUES(1353,1,'1997-01-01');
INSERT INTO Demonetization VALUES(1366,1,'2002-02-28');
INSERT INTO Demonetization VALUES(1376,0,NULL);
INSERT INTO Demonetization VALUES(1384,1,'2017-10-15');
INSERT INTO Demonetization VALUES(1389,1,'2017-10-15');
INSERT INTO Demonetization VALUES(1390,1,'2017-10-15');
INSERT INTO Demonetization VALUES(1395,1,'2017-10-15');
INSERT INTO Demonetization VALUES(1397,1,'2017-10-15');
INSERT INTO Demonetization VALUES(1571,0,NULL);
INSERT INTO Demonetization VALUES(1589,0,NULL);
INSERT INTO Demonetization VALUES(1643,0,NULL);
INSERT INTO Demonetization VALUES(1702,0,NULL);
INSERT INTO Demonetization VALUES(1703,0,NULL);
INSERT INTO Demonetization VALUES(1998,0,NULL);
INSERT INTO Demonetization VALUES(2047,1,'2001-12-31');
INSERT INTO Demonetization VALUES(2168,0,NULL);
INSERT INTO Demonetization VALUES(2169,0,NULL);
INSERT INTO Demonetization VALUES(2173,0,NULL);
INSERT INTO Demonetization VALUES(2175,0,NULL);
INSERT INTO Demonetization VALUES(2178,0,NULL);
INSERT INTO Demonetization VALUES(2180,0,NULL);
INSERT INTO Demonetization VALUES(2183,0,NULL);
INSERT INTO Demonetization VALUES(2201,0,NULL);
INSERT INTO Demonetization VALUES(2204,0,NULL);
INSERT INTO Demonetization VALUES(2217,0,NULL);
INSERT INTO Demonetization VALUES(2236,0,NULL);
INSERT INTO Demonetization VALUES(2252,0,NULL);
INSERT INTO Demonetization VALUES(2253,0,NULL);
INSERT INTO Demonetization VALUES(2254,1,'2002-02-28');
INSERT INTO Demonetization VALUES(2255,1,'2002-02-28');
INSERT INTO Demonetization VALUES(2304,1,'2002-02-28');
INSERT INTO Demonetization VALUES(2374,1,'1997-01-01');
INSERT INTO Demonetization VALUES(2375,0,NULL);
INSERT INTO Demonetization VALUES(2376,0,NULL);
INSERT INTO Demonetization VALUES(2383,1,NULL);
INSERT INTO Demonetization VALUES(2384,1,NULL);
INSERT INTO Demonetization VALUES(2432,0,NULL);
INSERT INTO Demonetization VALUES(2433,0,NULL);
INSERT INTO Demonetization VALUES(2504,0,NULL);
INSERT INTO Demonetization VALUES(2736,1,'1997-01-01');
INSERT INTO Demonetization VALUES(2763,1,'2017-10-15');
INSERT INTO Demonetization VALUES(2842,0,NULL);
INSERT INTO Demonetization VALUES(2903,0,NULL);
INSERT INTO Demonetization VALUES(2986,1,'2002-02-28');
INSERT INTO Demonetization VALUES(2994,0,NULL);
INSERT INTO Demonetization VALUES(3002,0,NULL);
INSERT INTO Demonetization VALUES(3044,1,'2009-01-01');
INSERT INTO Demonetization VALUES(3200,1,'1997-01-01');
INSERT INTO Demonetization VALUES(3223,0,NULL);
INSERT INTO Demonetization VALUES(3224,1,'1987-00-00');
INSERT INTO Demonetization VALUES(3225,0,NULL);
INSERT INTO Demonetization VALUES(3228,0,NULL);
INSERT INTO Demonetization VALUES(3256,0,NULL);
INSERT INTO Demonetization VALUES(3282,1,'2002-02-28');
INSERT INTO Demonetization VALUES(3372,0,NULL);
INSERT INTO Demonetization VALUES(3510,0,NULL);
INSERT INTO Demonetization VALUES(3818,0,NULL);
INSERT INTO Demonetization VALUES(3888,1,'2002-02-28');
INSERT INTO Demonetization VALUES(3932,1,'1997-01-01');
INSERT INTO Demonetization VALUES(4038,0,NULL);
INSERT INTO Demonetization VALUES(4039,0,NULL);
INSERT INTO Demonetization VALUES(4141,1,NULL);
INSERT INTO Demonetization VALUES(4546,1,'2002-02-28');
INSERT INTO Demonetization VALUES(4580,0,NULL);
INSERT INTO Demonetization VALUES(4729,1,'2002-02-28');
INSERT INTO Demonetization VALUES(4901,1,NULL);
INSERT INTO Demonetization VALUES(4902,1,'1951-00-00');
INSERT INTO Demonetization VALUES(5010,0,NULL);
INSERT INTO Demonetization VALUES(5012,0,NULL);
INSERT INTO Demonetization VALUES(5063,0,NULL);
INSERT INTO Demonetization VALUES(5086,0,NULL);
INSERT INTO Demonetization VALUES(5109,0,NULL);
INSERT INTO Demonetization VALUES(5444,1,NULL);
INSERT INTO Demonetization VALUES(5492,1,NULL);
INSERT INTO Demonetization VALUES(5624,1,'2002-02-28');
INSERT INTO Demonetization VALUES(5628,0,NULL);
INSERT INTO Demonetization VALUES(5737,0,NULL);
INSERT INTO Demonetization VALUES(5786,1,NULL);
INSERT INTO Demonetization VALUES(6071,1,'1998-10-01');
INSERT INTO Demonetization VALUES(6163,0,NULL);
INSERT INTO Demonetization VALUES(6164,0,NULL);
INSERT INTO Demonetization VALUES(6165,0,NULL);
INSERT INTO Demonetization VALUES(6258,1,'2002-02-28');
INSERT INTO Demonetization VALUES(6278,1,NULL);
INSERT INTO Demonetization VALUES(6293,0,NULL);
INSERT INTO Demonetization VALUES(6298,0,NULL);
INSERT INTO Demonetization VALUES(6307,0,NULL);
INSERT INTO Demonetization VALUES(6319,0,NULL);
INSERT INTO Demonetization VALUES(6329,0,NULL);
INSERT INTO Demonetization VALUES(6333,0,NULL);
INSERT INTO Demonetization VALUES(6334,0,NULL);
INSERT INTO Demonetization VALUES(6350,0,NULL);
INSERT INTO Demonetization VALUES(6361,0,NULL);
INSERT INTO Demonetization VALUES(6373,0,NULL);
INSERT INTO Demonetization VALUES(6374,0,NULL);
INSERT INTO Demonetization VALUES(6376,0,NULL);
INSERT INTO Demonetization VALUES(6418,0,NULL);
INSERT INTO Demonetization VALUES(6499,1,'2002-00-00');
INSERT INTO Demonetization VALUES(6500,1,NULL);
INSERT INTO Demonetization VALUES(6612,0,NULL);
INSERT INTO Demonetization VALUES(6926,0,NULL);
INSERT INTO Demonetization VALUES(7047,0,NULL);
INSERT INTO Demonetization VALUES(7048,0,NULL);
INSERT INTO Demonetization VALUES(7130,1,NULL);
INSERT INTO Demonetization VALUES(7184,1,'2002-02-28');
INSERT INTO Demonetization VALUES(7193,1,NULL);
INSERT INTO Demonetization VALUES(7337,1,NULL);
INSERT INTO Demonetization VALUES(7338,1,'2002-00-00');
INSERT INTO Demonetization VALUES(7398,0,NULL);
INSERT INTO Demonetization VALUES(7461,0,NULL);
INSERT INTO Demonetization VALUES(7524,0,NULL);
INSERT INTO Demonetization VALUES(7576,1,'1989-01-01');
INSERT INTO Demonetization VALUES(7639,0,NULL);
INSERT INTO Demonetization VALUES(7872,0,NULL);
INSERT INTO Demonetization VALUES(7905,0,NULL);
INSERT INTO Demonetization VALUES(8862,0,NULL);
INSERT INTO Demonetization VALUES(8896,0,NULL);
INSERT INTO Demonetization VALUES(8925,1,'2002-02-28');
INSERT INTO Demonetization VALUES(9224,0,NULL);
INSERT INTO Demonetization VALUES(9285,1,NULL);
INSERT INTO Demonetization VALUES(9761,0,NULL);
INSERT INTO Demonetization VALUES(9826,1,NULL);
INSERT INTO Demonetization VALUES(9828,1,'1998-00-00');
INSERT INTO Demonetization VALUES(9831,1,NULL);
INSERT INTO Demonetization VALUES(9834,1,NULL);
INSERT INTO Demonetization VALUES(9894,0,NULL);
INSERT INTO Demonetization VALUES(9895,0,NULL);
INSERT INTO Demonetization VALUES(9896,0,NULL);
INSERT INTO Demonetization VALUES(10004,0,NULL);
INSERT INTO Demonetization VALUES(10126,1,NULL);
INSERT INTO Demonetization VALUES(10288,1,NULL);
INSERT INTO Demonetization VALUES(10854,0,NULL);
INSERT INTO Demonetization VALUES(10856,0,NULL);
INSERT INTO Demonetization VALUES(10857,0,NULL);
INSERT INTO Demonetization VALUES(10860,0,NULL);
INSERT INTO Demonetization VALUES(10862,0,NULL);
INSERT INTO Demonetization VALUES(11526,0,NULL);
INSERT INTO Demonetization VALUES(11635,1,'2002-02-28');
INSERT INTO Demonetization VALUES(11691,1,'2002-02-28');
INSERT INTO Demonetization VALUES(11695,1,'2002-02-28');
INSERT INTO Demonetization VALUES(11952,1,'2002-02-28');
INSERT INTO Demonetization VALUES(13034,1,'2002-02-28');
INSERT INTO Demonetization VALUES(13038,1,'2002-02-28');
INSERT INTO Demonetization VALUES(13820,0,NULL);
INSERT INTO Demonetization VALUES(15296,0,NULL);
INSERT INTO Demonetization VALUES(15575,1,NULL);
INSERT INTO Demonetization VALUES(16586,0,NULL);
INSERT INTO Demonetization VALUES(16588,0,NULL);
INSERT INTO Demonetization VALUES(18054,0,NULL);
INSERT INTO Demonetization VALUES(18666,0,NULL);
INSERT INTO Demonetization VALUES(19979,0,NULL);
INSERT INTO Demonetization VALUES(20700,0,NULL);
INSERT INTO Demonetization VALUES(20892,0,NULL);
INSERT INTO Demonetization VALUES(22038,0,NULL);
INSERT INTO Demonetization VALUES(22544,0,NULL);
INSERT INTO Demonetization VALUES(22652,0,NULL);
INSERT INTO Demonetization VALUES(24276,0,NULL);
INSERT INTO Demonetization VALUES(25746,0,NULL);
INSERT INTO Demonetization VALUES(25766,0,NULL);
INSERT INTO Demonetization VALUES(26208,1,NULL);
INSERT INTO Demonetization VALUES(26791,0,NULL);
INSERT INTO Demonetization VALUES(26792,0,NULL);
INSERT INTO Demonetization VALUES(27352,0,NULL);
INSERT INTO Demonetization VALUES(27395,0,NULL);
INSERT INTO Demonetization VALUES(27528,0,NULL);
INSERT INTO Demonetization VALUES(28191,0,NULL);
INSERT INTO Demonetization VALUES(28330,0,NULL);
INSERT INTO Demonetization VALUES(28608,0,NULL);
INSERT INTO Demonetization VALUES(28610,0,NULL);
INSERT INTO Demonetization VALUES(28611,0,NULL);
INSERT INTO Demonetization VALUES(32604,0,NULL);
INSERT INTO Demonetization VALUES(36740,0,NULL);
INSERT INTO Demonetization VALUES(40522,0,NULL);
INSERT INTO Demonetization VALUES(41904,0,NULL);
INSERT INTO Demonetization VALUES(42976,0,NULL);
INSERT INTO Demonetization VALUES(49339,0,NULL);
INSERT INTO Demonetization VALUES(54956,0,NULL);
INSERT INTO Demonetization VALUES(56030,0,NULL);
INSERT INTO Demonetization VALUES(56035,0,NULL);
INSERT INTO Demonetization VALUES(61644,0,NULL);
INSERT INTO Demonetization VALUES(67631,0,NULL);
INSERT INTO Demonetization VALUES(68395,0,NULL);
INSERT INTO Demonetization VALUES(69263,0,NULL);
INSERT INTO Demonetization VALUES(69264,0,NULL);
INSERT INTO Demonetization VALUES(70547,0,NULL);
INSERT INTO Demonetization VALUES(81058,0,NULL);
INSERT INTO Demonetization VALUES(82237,0,NULL);
INSERT INTO Demonetization VALUES(84061,0,NULL);
INSERT INTO Demonetization VALUES(87329,0,NULL);
INSERT INTO Demonetization VALUES(88649,0,NULL);
INSERT INTO Demonetization VALUES(89870,0,NULL);
INSERT INTO Demonetization VALUES(91431,0,NULL);
INSERT INTO Demonetization VALUES(100658,0,NULL);
INSERT INTO Demonetization VALUES(102445,0,NULL);
INSERT INTO Demonetization VALUES(105040,0,NULL);
INSERT INTO Demonetization VALUES(122665,0,NULL);
INSERT INTO Demonetization VALUES(133815,0,NULL);
INSERT INTO Demonetization VALUES(133816,0,NULL);
INSERT INTO Demonetization VALUES(134685,0,NULL);
INSERT INTO Demonetization VALUES(157845,0,NULL);
INSERT INTO Demonetization VALUES(192990,0,NULL);
INSERT INTO Demonetization VALUES(201624,0,NULL);
INSERT INTO Demonetization VALUES(201676,1,'2020-12-31');
INSERT INTO Demonetization VALUES(202243,1,'1986-05-30');
INSERT INTO Demonetization VALUES(202287,0,NULL);
INSERT INTO Demonetization VALUES(202397,0,NULL);
INSERT INTO Demonetization VALUES(202523,0,NULL);
INSERT INTO Demonetization VALUES(206382,0,NULL);
INSERT INTO Demonetization VALUES(206385,0,NULL);
INSERT INTO Demonetization VALUES(206387,0,NULL);
INSERT INTO Demonetization VALUES(258832,0,NULL);
INSERT INTO Demonetization VALUES(264789,0,NULL);
INSERT INTO Demonetization VALUES(274850,0,NULL);
INSERT INTO Demonetization VALUES(275891,0,NULL);
INSERT INTO Demonetization VALUES(302331,0,NULL);
INSERT INTO Demonetization VALUES(314709,0,NULL);
INSERT INTO Demonetization VALUES(314962,0,NULL);
INSERT INTO Demonetization VALUES(318748,0,NULL);
INSERT INTO Demonetization VALUES(319351,0,NULL);
INSERT INTO Demonetization VALUES(321378,0,NULL);
INSERT INTO Demonetization VALUES(331445,0,NULL);
INSERT INTO Demonetization VALUES(338338,0,NULL);
INSERT INTO Demonetization VALUES(338339,0,NULL);
INSERT INTO Demonetization VALUES(368994,0,NULL);
INSERT INTO Demonetization VALUES(369820,0,NULL);
INSERT INTO Demonetization VALUES(377368,0,NULL);
CREATE TABLE Composition (
id INTEGER NOT NULL PRIMARY KEY,
text TEXT
);
INSERT INTO Composition VALUES(3,'Copper-aluminium-nickel (92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(4,'Copper-aluminium-nickel (92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(5,'Nickel');
INSERT INTO Composition VALUES(8,'Nickel plated copper-nickel');
INSERT INTO Composition VALUES(9,'Bimetallic: nickel centre in aluminium bronze ring (Ring: 92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(12,'Nickel');
INSERT INTO Composition VALUES(42,'Copper (95% Copper (Cu) 5% Zinc (Zn))');
INSERT INTO Composition VALUES(43,'Copper plated zinc');
INSERT INTO Composition VALUES(44,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(53,'Copper-nickel clad copper (91.67% Copper, 8.33% Nickel)');
INSERT INTO Composition VALUES(55,'Copper-nickel clad copper');
INSERT INTO Composition VALUES(57,'Copper plated steel');
INSERT INTO Composition VALUES(58,'Copper plated steel');
INSERT INTO Composition VALUES(73,'Copper plated steel');
INSERT INTO Composition VALUES(74,'Copper plated steel');
INSERT INTO Composition VALUES(75,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(78,'Copper plated steel');
INSERT INTO Composition VALUES(79,'Nordic gold');
INSERT INTO Composition VALUES(81,'Copper plated steel');
INSERT INTO Composition VALUES(82,'Copper plated steel');
INSERT INTO Composition VALUES(83,'Copper plated steel');
INSERT INTO Composition VALUES(84,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(85,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(88,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(91,'Copper plated steel');
INSERT INTO Composition VALUES(96,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(97,'Copper plated steel');
INSERT INTO Composition VALUES(98,'Copper plated steel');
INSERT INTO Composition VALUES(99,'Copper plated steel');
INSERT INTO Composition VALUES(100,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(105,'Copper plated steel');
INSERT INTO Composition VALUES(106,'Copper plated steel');
INSERT INTO Composition VALUES(107,'Copper plated steel');
INSERT INTO Composition VALUES(108,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(109,'Nordic gold');
INSERT INTO Composition VALUES(110,'Nordic gold');
INSERT INTO Composition VALUES(111,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(115,'Copper plated steel');
INSERT INTO Composition VALUES(116,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(118,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(120,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(121,'Copper plated steel');
INSERT INTO Composition VALUES(122,'Copper plated steel');
INSERT INTO Composition VALUES(125,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(129,'Copper plated steel');
INSERT INTO Composition VALUES(130,'Copper plated steel');
INSERT INTO Composition VALUES(131,'Copper plated steel');
INSERT INTO Composition VALUES(132,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(133,'Nordic gold');
INSERT INTO Composition VALUES(136,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(137,'Copper plated steel');
INSERT INTO Composition VALUES(138,'Copper plated steel');
INSERT INTO Composition VALUES(139,'Copper plated steel');
INSERT INTO Composition VALUES(144,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(145,'Copper plated steel');
INSERT INTO Composition VALUES(146,'Copper plated steel');
INSERT INTO Composition VALUES(147,'Copper plated steel');
INSERT INTO Composition VALUES(149,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(152,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(153,'Copper plated steel');
INSERT INTO Composition VALUES(154,'Copper plated steel');
INSERT INTO Composition VALUES(155,'Copper plated steel');
INSERT INTO Composition VALUES(156,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(171,'Aluminium bronze (92% copper, 6% aluminium, 2% nickel)');
INSERT INTO Composition VALUES(173,'Copper-nickel (75% copper, 25% nickel; non-magnetic)');
INSERT INTO Composition VALUES(178,'Copper-nickel (75% copper, 25% nickel; non-magnetic)');
INSERT INTO Composition VALUES(185,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(189,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(242,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(243,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(377,'Nickel plated steel');
INSERT INTO Composition VALUES(403,'Nickel');
INSERT INTO Composition VALUES(465,'Bronze plated nickel (.915 nickel, .085 bronze)');
INSERT INTO Composition VALUES(524,'Manganese brass');
INSERT INTO Composition VALUES(573,'Copper-nickel');
INSERT INTO Composition VALUES(587,'Bimetallic: aluminium bronze centre in stainless steel ring');
INSERT INTO Composition VALUES(589,'Bimetallic: aluminium bronze centre in stainless steel ring');
INSERT INTO Composition VALUES(591,'Bimetallic: nickel brass centre in aluminium bronze ring (Core: 65% Copper, 10% Nickel, 25% Zinc - Ring: 92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(596,'Bimetallic: brass centre in stainless steel ring');
INSERT INTO Composition VALUES(614,'Copper-nickel clad copper');
INSERT INTO Composition VALUES(648,'Copper-nickel clad copper');
INSERT INTO Composition VALUES(649,'Copper-nickel clad copper');
INSERT INTO Composition VALUES(664,'Bronze (97% Cu, 2.5% Zn, 0.5% Sn)');
INSERT INTO Composition VALUES(665,'Bronze (97% Cu, 2.5% Zn, 0.5% Sn)');
INSERT INTO Composition VALUES(666,'Stainless steel');
INSERT INTO Composition VALUES(681,'Silver (.900) (Copper .100)');
INSERT INTO Composition VALUES(734,'Nickel');
INSERT INTO Composition VALUES(766,'Brass (58% Copper, 40% Zinc, 2% Manganese (ЛМц 58-2))');
INSERT INTO Composition VALUES(768,'Bronze');
INSERT INTO Composition VALUES(770,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(771,'Nickel brass (Cu790, Zn200, Ni10)');
INSERT INTO Composition VALUES(772,'Copper-nickel (Cu750 + Ni250)');
INSERT INTO Composition VALUES(773,'Nickel brass (79% Copper, 20% Zinc, 1% Nickel)');
INSERT INTO Composition VALUES(774,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(775,'Bronze (Cu 950 + Sn 30 + Zn 20)');
INSERT INTO Composition VALUES(776,'Bronze (Cu 950 + Sn 30+ Zn 20)');
INSERT INTO Composition VALUES(779,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(781,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(782,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(783,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(784,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(787,'Aluminium bronze (92% copper, 6% aluminum, 2% nickel)');
INSERT INTO Composition VALUES(844,'Copper-nickel clad nickel (Cladding: 75% Copper, 25% Nickel; Core: 100% Nickel)');
INSERT INTO Composition VALUES(846,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(847,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(850,'Brass clad steel (90% Iron, 10% Brass)');
INSERT INTO Composition VALUES(854,'Copper clad iron (90% Iron, 10% Copper)');
INSERT INTO Composition VALUES(861,'Bronze');
INSERT INTO Composition VALUES(862,'Copper plated steel');
INSERT INTO Composition VALUES(863,'Nickel brass');
INSERT INTO Composition VALUES(864,'Copper-nickel');
INSERT INTO Composition VALUES(865,'Copper-nickel (84% Cu, 16% Ni)');
INSERT INTO Composition VALUES(867,'Bronze');
INSERT INTO Composition VALUES(868,'Copper plated steel');
INSERT INTO Composition VALUES(875,'Copper-nickel (75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(876,'Copper-nickel (75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(879,'Copper-nickel (75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(907,'Nickel brass (Cu 610 + Zn 200 + Ni 190)');
INSERT INTO Composition VALUES(908,'Bronze');
INSERT INTO Composition VALUES(941,'Copper plated zinc');
INSERT INTO Composition VALUES(946,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(991,'Nickel brass (61% Copper, 20% Zinc, 19% Nickel)');
INSERT INTO Composition VALUES(1051,'Nickel brass (65% Copper, 20% Zinc, 15% Nickel)');
INSERT INTO Composition VALUES(1073,'Nickel brass (65% Copper, 20% Zinc, 15% Nickel)');
INSERT INTO Composition VALUES(1149,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1236,'Bronze (Cu 950 + Sn 30 + Zn 20)');
INSERT INTO Composition VALUES(1237,'Bronze (Cu 950 + Sn 30 +Zn 20)');
INSERT INTO Composition VALUES(1238,'Bimetallic: copper-nickel centre in aluminium bronze ring');
INSERT INTO Composition VALUES(1241,'Nickel brass (Cu790 + Zn200 + Ni10)');
INSERT INTO Composition VALUES(1242,'Bimetallic: aluminium bronze centre in copper-nickel ring (Core: 90% Copper, 5% Aluminium, 5% Nickel; Ring: 75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(1243,'Copper-nickel (Cu750, Ni250)');
INSERT INTO Composition VALUES(1258,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1262,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1263,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1264,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1266,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(1267,'Aluminium (96% aluminum, 3.5% magnesium, 0.5% manganese)');
INSERT INTO Composition VALUES(1324,'Bimetallic: copper-nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(1353,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(1366,'Aluminium');
INSERT INTO Composition VALUES(1376,'Copper-nickel (84% Cu, 16% Ni)');
INSERT INTO Composition VALUES(1384,'Nickel brass');
INSERT INTO Composition VALUES(1389,'Nickel brass');
INSERT INTO Composition VALUES(1390,'Nickel brass');
INSERT INTO Composition VALUES(1395,'Nickel brass');
INSERT INTO Composition VALUES(1397,'Nickel brass');
INSERT INTO Composition VALUES(1571,'Aluminium (100%)');
INSERT INTO Composition VALUES(1589,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(1643,'Bimetallic: aluminium bronze centre in copper-nickel ring');
INSERT INTO Composition VALUES(1702,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(1703,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(1998,'Nickel brass (75% Copper, 4% Nickel, 21% Zinc)');
INSERT INTO Composition VALUES(2047,'Bimetallic: copper-nickel plated nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(2168,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(2169,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(2173,'Copper plated steel');
INSERT INTO Composition VALUES(2175,'Copper plated steel');
INSERT INTO Composition VALUES(2178,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(2180,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(2183,'Copper plated steel');
INSERT INTO Composition VALUES(2201,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(2204,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(2217,'Bimetallic: copper-aluminium-nickel centre in copper-nickel ring (Cu 92 Al 6 Ni 2 - Cu 75 Ni 25)');
INSERT INTO Composition VALUES(2236,'Copper-nickel (75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(2252,'Bronze plated steel');
INSERT INTO Composition VALUES(2253,'Bronze plated steel');
INSERT INTO Composition VALUES(2254,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(2255,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(2304,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(2374,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(2375,'Nickel brass');
INSERT INTO Composition VALUES(2376,'Nickel brass');
INSERT INTO Composition VALUES(2383,'Copper-nickel');
INSERT INTO Composition VALUES(2384,'Copper-nickel');
INSERT INTO Composition VALUES(2432,'Bimetallic: aluminium bronze centre in nickel brass ring (Core: 92% Copper, 6% Aluminium, 2% Nickel; Ring: 65% Copper, 20% Zinc, 15% Nickel)');
INSERT INTO Composition VALUES(2433,'Aluminium bronze (92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(2504,'Bimetallic: stainless steel centre in brass ring');
INSERT INTO Composition VALUES(2736,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(2763,'Nickel brass');
INSERT INTO Composition VALUES(2842,'Nickel brass');
INSERT INTO Composition VALUES(2903,'Bronze plated steel');
INSERT INTO Composition VALUES(2986,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(2994,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(3002,'Stainless steel');
INSERT INTO Composition VALUES(3044,'Bimetallic: nickel brass centre in nickel brass ring (Core: 81% Copper, 4% Nickel, 15% Zinc - Ring: 75% Copper, 15% Nickel, 10% Zinc)');
INSERT INTO Composition VALUES(3200,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(3223,'Stainless steel');
INSERT INTO Composition VALUES(3224,'Nickel clad steel (90-95% Copper, 10-5% Nickel)');
INSERT INTO Composition VALUES(3225,'Stainless steel');
INSERT INTO Composition VALUES(3228,'Stainless steel');
INSERT INTO Composition VALUES(3256,'Aluminium bronze');
INSERT INTO Composition VALUES(3282,'Bronze (Cu 950 + Sn 30 + Zn 20)');
INSERT INTO Composition VALUES(3372,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(3510,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(3818,'Bimetallic: brass centre in copper-nickel ring');
INSERT INTO Composition VALUES(3888,'Aluminium bronze (88.4% copper, 5% nickel, 5% aluminum, 1% iron, 0.6% manganese)');
INSERT INTO Composition VALUES(3932,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(4038,'Copper plated steel');
INSERT INTO Composition VALUES(4039,'Copper plated steel');
INSERT INTO Composition VALUES(4141,'Bronze');
INSERT INTO Composition VALUES(4546,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(4580,'Brass clad steel');
INSERT INTO Composition VALUES(4729,'Bimetallic: brass centre in copper-nickel ring');
INSERT INTO Composition VALUES(4901,'Brass (95% Copper, 5% Zinc)');
INSERT INTO Composition VALUES(4902,'Copper-nickel');
INSERT INTO Composition VALUES(5010,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(5012,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(5063,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(5086,'Copper plated steel');
INSERT INTO Composition VALUES(5109,'Bimetallic: copper-nickel centre in brass ring');
INSERT INTO Composition VALUES(5444,'Copper-nickel clad nickel');
INSERT INTO Composition VALUES(5492,'Copper-nickel');
INSERT INTO Composition VALUES(5624,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(5628,'Copper-nickel');
INSERT INTO Composition VALUES(5737,'Brass plated steel');
INSERT INTO Composition VALUES(5786,'Copper-nickel');
INSERT INTO Composition VALUES(6071,'Copper-nickel');
INSERT INTO Composition VALUES(6163,'Bimetallic: copper-nickel centre in brass ring (Core: 75% Copper, 15% Nickel, 10% Zinc - Ring: 81% Copper, 4% Nickel, 15% Zinc)');
INSERT INTO Composition VALUES(6164,'Nickel brass (60% Copper, 14% Nickel, 26% Zinc)');
INSERT INTO Composition VALUES(6165,'Brass (65% Copper, 6% Nickel, 29% Zinc)');
INSERT INTO Composition VALUES(6258,'Nickel brass');
INSERT INTO Composition VALUES(6278,'Aluminium');
INSERT INTO Composition VALUES(6293,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(6298,'Copper plated steel');
INSERT INTO Composition VALUES(6307,'Nordic gold');
INSERT INTO Composition VALUES(6319,'Nordic gold');
INSERT INTO Composition VALUES(6329,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(6333,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(6334,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(6350,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(6361,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(6373,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(6374,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(6376,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(6418,'Nordic gold');
INSERT INTO Composition VALUES(6499,'Copper-nickel');
INSERT INTO Composition VALUES(6500,'Copper-nickel');
INSERT INTO Composition VALUES(6612,'Copper-nickel (75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(6926,'Nordic gold (89% copper, 5% aluminium, 5% zinc, 1% tin)');
INSERT INTO Composition VALUES(7047,'Nickel brass (65% Copper, 6% Nickel, 29% Zinc)');
INSERT INTO Composition VALUES(7048,'Bimetallic: nickel brass centre in nickel brass ring (Core: 81% Copper, 4% Nickel, 15% Zinc - Ring: 75% Copper, 15% Nickel, 10% Zinc)');
INSERT INTO Composition VALUES(7130,'Copper-nickel');
INSERT INTO Composition VALUES(7184,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(7193,'Copper-nickel');
INSERT INTO Composition VALUES(7337,'Copper-nickel');
INSERT INTO Composition VALUES(7338,'Copper-nickel');
INSERT INTO Composition VALUES(7398,'Copper plated steel');
INSERT INTO Composition VALUES(7461,'Brass');
INSERT INTO Composition VALUES(7524,'Aluminium bronze (92% Copper, 6% Aluminium, 2% Nickel)');
INSERT INTO Composition VALUES(7576,'Aluminium (96% aluminum, 3.5% magnesium, 0.5% manganese)');
INSERT INTO Composition VALUES(7639,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(7872,'Aluminium');
INSERT INTO Composition VALUES(7905,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(8862,'Stainless steel');
INSERT INTO Composition VALUES(8896,'Bimetallic: stainless steel centre in bronze plated steel ring');
INSERT INTO Composition VALUES(8925,'Copper-nickel (75% copper, 25% nickel)');
INSERT INTO Composition VALUES(9224,'Copper-nickel (75% Copper, 25% Nickel)');
INSERT INTO Composition VALUES(9285,'Bronze');
INSERT INTO Composition VALUES(9761,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(9826,'Nickel brass');
INSERT INTO Composition VALUES(9828,'Copper-nickel');
INSERT INTO Composition VALUES(9831,'Copper-nickel');
INSERT INTO Composition VALUES(9834,'Copper-nickel');
INSERT INTO Composition VALUES(9894,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(9895,'Nordic gold');
INSERT INTO Composition VALUES(9896,'Nordic gold');
INSERT INTO Composition VALUES(10004,'Aluminium');
INSERT INTO Composition VALUES(10126,'Copper-nickel');
INSERT INTO Composition VALUES(10288,'Bimetallic: copper-nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(10854,'Copper plated steel');
INSERT INTO Composition VALUES(10856,'Copper plated steel');
INSERT INTO Composition VALUES(10857,'Copper plated steel');
INSERT INTO Composition VALUES(10860,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(10862,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(11526,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(11635,'Bimetallic: copper-nickel centre in aluminium bronze ring');
INSERT INTO Composition VALUES(11691,'Copper-nickel');
INSERT INTO Composition VALUES(11695,'Copper-nickel');
INSERT INTO Composition VALUES(11952,'Nickel brass');
INSERT INTO Composition VALUES(13034,'Copper-nickel');
INSERT INTO Composition VALUES(13038,'Copper-nickel');
INSERT INTO Composition VALUES(13820,'Stainless steel');
INSERT INTO Composition VALUES(15296,'Copper-nickel');
INSERT INTO Composition VALUES(15575,'Aluminium');
INSERT INTO Composition VALUES(16586,'Copper plated steel');
INSERT INTO Composition VALUES(16588,'Copper plated steel');
INSERT INTO Composition VALUES(18054,'Stainless steel');
INSERT INTO Composition VALUES(18666,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(19979,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(20700,'Copper-nickel');
INSERT INTO Composition VALUES(20892,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(22038,'Bimetallic: aluminium bronze centre in copper-nickel ring');
INSERT INTO Composition VALUES(22544,'Aluminium');
INSERT INTO Composition VALUES(22652,'Brass plated steel');
INSERT INTO Composition VALUES(24276,'Brass plated steel');
INSERT INTO Composition VALUES(25746,'Nickel plated steel');
INSERT INTO Composition VALUES(25766,'Nickel plated steel');
INSERT INTO Composition VALUES(26208,'Aluminium');
INSERT INTO Composition VALUES(26791,'Brass plated steel');
INSERT INTO Composition VALUES(26792,'Brass');
INSERT INTO Composition VALUES(27352,'Bimetallic: nordic gold centre in copper-nickel ring');
INSERT INTO Composition VALUES(27395,'Bimetallic: copper-nickel centre in nordic gold ring');
INSERT INTO Composition VALUES(27528,'Bimetallic: copper-nickel centre in aluminium bronze ring (Cu 75 Ni 25 - Cu 92 Al 6 Ni 2)');
INSERT INTO Composition VALUES(28191,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(28330,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(28608,'Bronze plated steel');
INSERT INTO Composition VALUES(28610,'Bronze plated steel');
INSERT INTO Composition VALUES(28611,'Bronze plated steel');
INSERT INTO Composition VALUES(32604,'Brass plated steel');
INSERT INTO Composition VALUES(36732,'Copper-nickel');
INSERT INTO Composition VALUES(36733,'Copper-nickel');
INSERT INTO Composition VALUES(36734,'Copper-nickel');
INSERT INTO Composition VALUES(36735,'Copper-nickel');
INSERT INTO Composition VALUES(36736,'Copper-nickel');
INSERT INTO Composition VALUES(36737,'Copper-nickel');
INSERT INTO Composition VALUES(36738,'Copper-nickel');
INSERT INTO Composition VALUES(36739,'Copper-nickel');
INSERT INTO Composition VALUES(36740,'Copper-nickel');
INSERT INTO Composition VALUES(36741,'Copper-nickel');
INSERT INTO Composition VALUES(36742,'Copper-nickel');
INSERT INTO Composition VALUES(36743,'Copper-nickel');
INSERT INTO Composition VALUES(40522,'Nickel plated steel');
INSERT INTO Composition VALUES(41904,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(42976,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(49339,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(54956,'Nordic gold (89% Copper, 5% Aluminium, 5% Zinc, 1% Tin)');
INSERT INTO Composition VALUES(56030,'Copper plated steel');
INSERT INTO Composition VALUES(56035,'Nordic gold');
INSERT INTO Composition VALUES(61644,'Brass plated steel');
INSERT INTO Composition VALUES(67631,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(68395,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(69263,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(69264,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(70547,'Nickel plated steel');
INSERT INTO Composition VALUES(81058,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(82237,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(84061,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(87329,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(88649,'Copper plated steel');
INSERT INTO Composition VALUES(89870,'Bimetallic: copper-nickel centre in copper-aluminium-nickel ring');
INSERT INTO Composition VALUES(91431,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(100658,'Bimetallic: nickel plated brass centre in nickel brass ring');
INSERT INTO Composition VALUES(102445,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(105040,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(122665,'Nordic gold');
INSERT INTO Composition VALUES(133815,'Nickel plated steel');
INSERT INTO Composition VALUES(133816,'Nickel brass');
INSERT INTO Composition VALUES(134685,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(157845,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(192990,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(201624,'Polymer');
INSERT INTO Composition VALUES(201676,'Paper');
INSERT INTO Composition VALUES(202243,'Paper');
INSERT INTO Composition VALUES(202279,'Paper');
INSERT INTO Composition VALUES(202287,'Paper');
INSERT INTO Composition VALUES(202397,'Paper (75% Cotton, 25% Linen)');
INSERT INTO Composition VALUES(202523,'Polymer');
INSERT INTO Composition VALUES(206382,'Paper');
INSERT INTO Composition VALUES(206385,'Paper');
INSERT INTO Composition VALUES(206387,'Paper');
INSERT INTO Composition VALUES(258832,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(264789,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(274850,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(275891,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(302331,'Paper');
INSERT INTO Composition VALUES(314709,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(314962,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(318748,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(319351,'Brass plated steel');
INSERT INTO Composition VALUES(321378,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(331445,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(338338,'Bimetallic: copper-nickel clad nickel centre in nickel brass ring');
INSERT INTO Composition VALUES(338339,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring');
INSERT INTO Composition VALUES(368994,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring (Core: 75% Cu, 20% Zn, 5% Ni Ring: 75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(369820,'Bimetallic: nickel brass clad nickel centre in copper-nickel ring (Core: 75% Cu, 20% Zn, 5% Ni Ring: 75% Cu, 25% Ni)');
INSERT INTO Composition VALUES(377368,'Nickel plated steel');
CREATE TABLE Technique (
id INTEGER NOT NULL PRIMARY KEY,
text TEXT
);
INSERT INTO Technique VALUES(3,'Milled');
INSERT INTO Technique VALUES(4,'Milled');
INSERT INTO Technique VALUES(5,'Milled');
INSERT INTO Technique VALUES(8,'Milled');
INSERT INTO Technique VALUES(9,'Milled');
INSERT INTO Technique VALUES(12,'Milled');
INSERT INTO Technique VALUES(42,'Milled');
INSERT INTO Technique VALUES(43,'Milled');
INSERT INTO Technique VALUES(44,'Milled');
INSERT INTO Technique VALUES(53,'Milled');
INSERT INTO Technique VALUES(55,'Milled');
INSERT INTO Technique VALUES(57,'Milled');
INSERT INTO Technique VALUES(58,'Milled');
INSERT INTO Technique VALUES(73,'Milled');
INSERT INTO Technique VALUES(74,'Milled');
INSERT INTO Technique VALUES(75,'Milled');
INSERT INTO Technique VALUES(78,'Milled');
INSERT INTO Technique VALUES(79,'Milled');
INSERT INTO Technique VALUES(81,'Milled');
INSERT INTO Technique VALUES(82,'Milled');
INSERT INTO Technique VALUES(83,'Milled');
INSERT INTO Technique VALUES(84,'Milled');
INSERT INTO Technique VALUES(85,'Milled');
INSERT INTO Technique VALUES(88,'Milled');
INSERT INTO Technique VALUES(91,'Milled');
INSERT INTO Technique VALUES(96,'Milled');
INSERT INTO Technique VALUES(97,'Milled');
INSERT INTO Technique VALUES(98,'Milled');
INSERT INTO Technique VALUES(99,'Milled');
INSERT INTO Technique VALUES(100,'Milled');
INSERT INTO Technique VALUES(105,'Milled');
INSERT INTO Technique VALUES(106,'Milled');
INSERT INTO Technique VALUES(107,'Milled');
INSERT INTO Technique VALUES(108,'Milled');
INSERT INTO Technique VALUES(109,'Milled');
INSERT INTO Technique VALUES(110,'Milled');
INSERT INTO Technique VALUES(111,'Milled');
INSERT INTO Technique VALUES(115,'Milled');
INSERT INTO Technique VALUES(116,'Milled');
INSERT INTO Technique VALUES(118,'Milled');
INSERT INTO Technique VALUES(120,'Milled');
INSERT INTO Technique VALUES(121,'Milled');
INSERT INTO Technique VALUES(122,'Milled');
INSERT INTO Technique VALUES(125,'Milled');
INSERT INTO Technique VALUES(129,'Milled');
INSERT INTO Technique VALUES(130,'Milled');
INSERT INTO Technique VALUES(131,'Milled');
INSERT INTO Technique VALUES(132,'Milled');
INSERT INTO Technique VALUES(133,'Milled');
INSERT INTO Technique VALUES(136,'Milled');
INSERT INTO Technique VALUES(137,'Milled');
INSERT INTO Technique VALUES(138,'Milled');
INSERT INTO Technique VALUES(139,'Milled');
INSERT INTO Technique VALUES(144,'Milled');
INSERT INTO Technique VALUES(145,'Milled');
INSERT INTO Technique VALUES(146,'Milled');
INSERT INTO Technique VALUES(147,'Milled');
INSERT INTO Technique VALUES(149,'Milled');
INSERT INTO Technique VALUES(152,'Milled');
INSERT INTO Technique VALUES(153,'Milled');
INSERT INTO Technique VALUES(154,'Milled');
INSERT INTO Technique VALUES(155,'Milled');
INSERT INTO Technique VALUES(156,'Milled');
INSERT INTO Technique VALUES(171,'Milled');
INSERT INTO Technique VALUES(173,'Milled');
INSERT INTO Technique VALUES(178,'Milled');
INSERT INTO Technique VALUES(185,'Milled');
INSERT INTO Technique VALUES(189,'Milled');
INSERT INTO Technique VALUES(242,'Milled');
INSERT INTO Technique VALUES(243,'Milled');
INSERT INTO Technique VALUES(377,'Milled');
INSERT INTO Technique VALUES(403,'Milled');
INSERT INTO Technique VALUES(465,'Milled');
INSERT INTO Technique VALUES(524,'Milled');
INSERT INTO Technique VALUES(573,'Milled');
INSERT INTO Technique VALUES(587,'Milled');
INSERT INTO Technique VALUES(589,'Milled');
INSERT INTO Technique VALUES(591,'Milled');
INSERT INTO Technique VALUES(596,'Milled');
INSERT INTO Technique VALUES(614,'Milled');
INSERT INTO Technique VALUES(648,'Milled');
INSERT INTO Technique VALUES(649,'Milled');
INSERT INTO Technique VALUES(664,'Milled');
INSERT INTO Technique VALUES(665,'Milled');
INSERT INTO Technique VALUES(666,'Milled');
INSERT INTO Technique VALUES(681,'Milled');
INSERT INTO Technique VALUES(734,'Milled');
INSERT INTO Technique VALUES(766,'Milled');
INSERT INTO Technique VALUES(768,'Milled');
INSERT INTO Technique VALUES(770,'Milled');
INSERT INTO Technique VALUES(771,'Milled');
INSERT INTO Technique VALUES(772,'Milled');
INSERT INTO Technique VALUES(773,'Milled');
INSERT INTO Technique VALUES(774,'Milled');
INSERT INTO Technique VALUES(775,'Milled');
INSERT INTO Technique VALUES(776,'Milled');
INSERT INTO Technique VALUES(779,'Milled');
INSERT INTO Technique VALUES(781,'Milled');
INSERT INTO Technique VALUES(782,'Milled');
INSERT INTO Technique VALUES(783,'Milled');
INSERT INTO Technique VALUES(784,'Milled');
INSERT INTO Technique VALUES(787,'Milled');
INSERT INTO Technique VALUES(844,'Milled');
INSERT INTO Technique VALUES(846,'Milled');
INSERT INTO Technique VALUES(847,'Milled');
INSERT INTO Technique VALUES(850,'Milled');
INSERT INTO Technique VALUES(854,'Milled');
INSERT INTO Technique VALUES(861,'Milled');
INSERT INTO Technique VALUES(862,'Milled');
INSERT INTO Technique VALUES(863,'Milled');
INSERT INTO Technique VALUES(864,'Milled');
INSERT INTO Technique VALUES(865,'Milled');
INSERT INTO Technique VALUES(867,'Milled');
INSERT INTO Technique VALUES(868,'Milled');
INSERT INTO Technique VALUES(875,'Milled');
INSERT INTO Technique VALUES(876,'Milled');
INSERT INTO Technique VALUES(879,'Milled');
INSERT INTO Technique VALUES(907,'Milled');
INSERT INTO Technique VALUES(908,'Milled');
INSERT INTO Technique VALUES(941,'Milled');
INSERT INTO Technique VALUES(946,'Milled');
INSERT INTO Technique VALUES(991,'Milled');
INSERT INTO Technique VALUES(1051,'Milled');
INSERT INTO Technique VALUES(1073,'Milled');
INSERT INTO Technique VALUES(1149,'Milled');
INSERT INTO Technique VALUES(1236,'Milled');
INSERT INTO Technique VALUES(1237,'Milled');
INSERT INTO Technique VALUES(1238,'Milled');
INSERT INTO Technique VALUES(1241,'Milled');
INSERT INTO Technique VALUES(1242,'Milled');
INSERT INTO Technique VALUES(1243,'Milled');
INSERT INTO Technique VALUES(1258,'Milled');
INSERT INTO Technique VALUES(1262,'Milled');
INSERT INTO Technique VALUES(1263,'Milled');
INSERT INTO Technique VALUES(1264,'Milled');
INSERT INTO Technique VALUES(1266,'Milled');
INSERT INTO Technique VALUES(1267,'Milled');
INSERT INTO Technique VALUES(1324,'Milled');
INSERT INTO Technique VALUES(1353,'Milled');
INSERT INTO Technique VALUES(1366,'Milled');
INSERT INTO Technique VALUES(1376,'Milled');
INSERT INTO Technique VALUES(1384,'Milled');
INSERT INTO Technique VALUES(1389,'Milled');
INSERT INTO Technique VALUES(1390,'Milled');
INSERT INTO Technique VALUES(1395,'Milled');
INSERT INTO Technique VALUES(1397,'Milled');
INSERT INTO Technique VALUES(1571,'Milled');
INSERT INTO Technique VALUES(1589,'Milled');
INSERT INTO Technique VALUES(1643,'Milled');
INSERT INTO Technique VALUES(1702,'Milled');
INSERT INTO Technique VALUES(1703,'Milled');
INSERT INTO Technique VALUES(1998,'Milled');
INSERT INTO Technique VALUES(2047,'Milled');
INSERT INTO Technique VALUES(2168,'Milled');
INSERT INTO Technique VALUES(2169,'Milled');
INSERT INTO Technique VALUES(2173,'Milled');
INSERT INTO Technique VALUES(2175,'Milled');
INSERT INTO Technique VALUES(2178,'Milled');
INSERT INTO Technique VALUES(2180,'Milled');
INSERT INTO Technique VALUES(2183,'Milled');
INSERT INTO Technique VALUES(2201,'Milled');
INSERT INTO Technique VALUES(2204,'Milled');
INSERT INTO Technique VALUES(2217,'Milled');
INSERT INTO Technique VALUES(2236,'Milled');
INSERT INTO Technique VALUES(2252,'Milled');
INSERT INTO Technique VALUES(2253,'Milled');
INSERT INTO Technique VALUES(2254,'Milled');
INSERT INTO Technique VALUES(2255,'Milled');
INSERT INTO Technique VALUES(2304,'Milled');
INSERT INTO Technique VALUES(2374,'Milled');
INSERT INTO Technique VALUES(2375,'Milled');
INSERT INTO Technique VALUES(2376,'Milled');
INSERT INTO Technique VALUES(2383,'Milled');
INSERT INTO Technique VALUES(2384,'Milled');
INSERT INTO Technique VALUES(2432,'Milled');
INSERT INTO Technique VALUES(2433,'Milled');
INSERT INTO Technique VALUES(2504,'Milled');
INSERT INTO Technique VALUES(2736,'Milled');
INSERT INTO Technique VALUES(2763,'Milled');
INSERT INTO Technique VALUES(2842,'Milled');
INSERT INTO Technique VALUES(2903,'Milled');
INSERT INTO Technique VALUES(2986,'Milled');
INSERT INTO Technique VALUES(2994,'Milled');
INSERT INTO Technique VALUES(3002,'Milled');
INSERT INTO Technique VALUES(3044,'Milled');
INSERT INTO Technique VALUES(3200,'Milled');
INSERT INTO Technique VALUES(3223,'Milled');
INSERT INTO Technique VALUES(3224,'Milled');
INSERT INTO Technique VALUES(3225,'Milled');
INSERT INTO Technique VALUES(3228,'Milled');
INSERT INTO Technique VALUES(3256,'Milled');
INSERT INTO Technique VALUES(3282,'Milled');
INSERT INTO Technique VALUES(3372,'Milled');
INSERT INTO Technique VALUES(3510,'Milled');
INSERT INTO Technique VALUES(3818,'Milled');
INSERT INTO Technique VALUES(3888,'Milled');
INSERT INTO Technique VALUES(3932,'Milled');
INSERT INTO Technique VALUES(4038,'Milled');
INSERT INTO Technique VALUES(4039,'Milled');
INSERT INTO Technique VALUES(4141,'Milled');
INSERT INTO Technique VALUES(4546,'Milled');
INSERT INTO Technique VALUES(4580,'Milled');
INSERT INTO Technique VALUES(4729,'Milled');
INSERT INTO Technique VALUES(4901,'Milled');
INSERT INTO Technique VALUES(4902,'Milled');
INSERT INTO Technique VALUES(5010,'Milled');
INSERT INTO Technique VALUES(5012,'Milled');
INSERT INTO Technique VALUES(5063,'Milled');
INSERT INTO Technique VALUES(5086,'Milled');
INSERT INTO Technique VALUES(5109,'Milled');
INSERT INTO Technique VALUES(5444,'Milled');
INSERT INTO Technique VALUES(5492,'Milled');
INSERT INTO Technique VALUES(5624,'Milled');
INSERT INTO Technique VALUES(5628,'Milled');
INSERT INTO Technique VALUES(5737,'Milled');
INSERT INTO Technique VALUES(5786,'Milled');
INSERT INTO Technique VALUES(6071,'Milled');
INSERT INTO Technique VALUES(6163,'Milled');
INSERT INTO Technique VALUES(6164,'Milled');
INSERT INTO Technique VALUES(6165,'Milled');
INSERT INTO Technique VALUES(6258,'Milled');
INSERT INTO Technique VALUES(6278,'Milled');
INSERT INTO Technique VALUES(6293,'Milled');
INSERT INTO Technique VALUES(6298,'Milled');
INSERT INTO Technique VALUES(6307,'Milled');
INSERT INTO Technique VALUES(6319,'Milled');
INSERT INTO Technique VALUES(6329,'Milled');
INSERT INTO Technique VALUES(6333,'Milled');
INSERT INTO Technique VALUES(6334,'Milled');
INSERT INTO Technique VALUES(6350,'Milled');
INSERT INTO Technique VALUES(6361,'Milled');
INSERT INTO Technique VALUES(6373,'Milled');
INSERT INTO Technique VALUES(6374,'Milled');
INSERT INTO Technique VALUES(6376,'Milled');
INSERT INTO Technique VALUES(6418,'Milled');
INSERT INTO Technique VALUES(6499,'Milled');
INSERT INTO Technique VALUES(6500,'Milled');
INSERT INTO Technique VALUES(6612,'Milled');
INSERT INTO Technique VALUES(6926,'Milled');
INSERT INTO Technique VALUES(7047,'Milled');
INSERT INTO Technique VALUES(7048,'Milled');
INSERT INTO Technique VALUES(7130,'Milled');
INSERT INTO Technique VALUES(7184,'Milled');
INSERT INTO Technique VALUES(7193,'Milled');
INSERT INTO Technique VALUES(7337,'Milled');
INSERT INTO Technique VALUES(7338,'Milled');
INSERT INTO Technique VALUES(7398,'Milled');
INSERT INTO Technique VALUES(7461,'Milled');
INSERT INTO Technique VALUES(7524,'Milled');
INSERT INTO Technique VALUES(7576,'Milled');
INSERT INTO Technique VALUES(7639,'Milled');
INSERT INTO Technique VALUES(7872,'Milled');
INSERT INTO Technique VALUES(7905,'Milled');
INSERT INTO Technique VALUES(8862,'Milled');
INSERT INTO Technique VALUES(8896,'Milled');
INSERT INTO Technique VALUES(8925,'Milled');
INSERT INTO Technique VALUES(9224,'Milled');
INSERT INTO Technique VALUES(9285,'Milled');
INSERT INTO Technique VALUES(9761,'Milled');
INSERT INTO Technique VALUES(9826,'Milled');
INSERT INTO Technique VALUES(9828,'Milled');
INSERT INTO Technique VALUES(9831,'Milled');
INSERT INTO Technique VALUES(9834,'Milled');
INSERT INTO Technique VALUES(9894,'Milled');
INSERT INTO Technique VALUES(9895,'Milled');
INSERT INTO Technique VALUES(9896,'Milled');
INSERT INTO Technique VALUES(10004,'Milled');
INSERT INTO Technique VALUES(10126,'Milled');
INSERT INTO Technique VALUES(10288,'Milled');
INSERT INTO Technique VALUES(10854,'Milled');
INSERT INTO Technique VALUES(10856,'Milled');
INSERT INTO Technique VALUES(10857,'Milled');
INSERT INTO Technique VALUES(10860,'Milled');
INSERT INTO Technique VALUES(10862,'Milled');
INSERT INTO Technique VALUES(11526,'Milled');
INSERT INTO Technique VALUES(11635,'Milled');
INSERT INTO Technique VALUES(11691,'Milled');
INSERT INTO Technique VALUES(11695,'Milled');
INSERT INTO Technique VALUES(11952,'Milled');
INSERT INTO Technique VALUES(13034,'Milled');
INSERT INTO Technique VALUES(13038,'Milled');
INSERT INTO Technique VALUES(13820,'Milled');
INSERT INTO Technique VALUES(15296,'Milled');
INSERT INTO Technique VALUES(15575,'Milled');
INSERT INTO Technique VALUES(16586,'Milled');
INSERT INTO Technique VALUES(16588,'Milled');
INSERT INTO Technique VALUES(18054,'Milled');
INSERT INTO Technique VALUES(18666,'Milled');
INSERT INTO Technique VALUES(19979,'Milled');
INSERT INTO Technique VALUES(20700,'Milled');
INSERT INTO Technique VALUES(20892,'Milled');
INSERT INTO Technique VALUES(22038,'Milled');
INSERT INTO Technique VALUES(22544,'Milled');
INSERT INTO Technique VALUES(22652,'Milled');
INSERT INTO Technique VALUES(24276,'Milled');
INSERT INTO Technique VALUES(25746,'Milled');
INSERT INTO Technique VALUES(25766,'Milled');
INSERT INTO Technique VALUES(26208,'Milled');
INSERT INTO Technique VALUES(26791,'Milled');
INSERT INTO Technique VALUES(26792,'Milled');
INSERT INTO Technique VALUES(27352,'Milled');
INSERT INTO Technique VALUES(27395,'Milled');
INSERT INTO Technique VALUES(27528,'Milled');
INSERT INTO Technique VALUES(28191,'Milled');
INSERT INTO Technique VALUES(28330,'Milled');
INSERT INTO Technique VALUES(28608,'Milled');
INSERT INTO Technique VALUES(28610,'Milled');
INSERT INTO Technique VALUES(28611,'Milled');
INSERT INTO Technique VALUES(32604,'Milled');
INSERT INTO Technique VALUES(36732,'Milled');
INSERT INTO Technique VALUES(36733,'Milled');
INSERT INTO Technique VALUES(36734,'Milled');
INSERT INTO Technique VALUES(36735,'Milled');
INSERT INTO Technique VALUES(36736,'Milled');
INSERT INTO Technique VALUES(36737,'Milled');
INSERT INTO Technique VALUES(36738,'Milled');
INSERT INTO Technique VALUES(36739,'Milled');
INSERT INTO Technique VALUES(36740,'Milled');
INSERT INTO Technique VALUES(36741,'Milled');
INSERT INTO Technique VALUES(36742,'Milled');
INSERT INTO Technique VALUES(36743,'Milled');
INSERT INTO Technique VALUES(40522,'Milled');
INSERT INTO Technique VALUES(41904,'Milled');
INSERT INTO Technique VALUES(42976,'Milled');
INSERT INTO Technique VALUES(49339,'Milled');
INSERT INTO Technique VALUES(54956,'Milled');
INSERT INTO Technique VALUES(56030,'Milled');
INSERT INTO Technique VALUES(56035,'Milled');
INSERT INTO Technique VALUES(61644,'Milled');
INSERT INTO Technique VALUES(67631,'Milled');
INSERT INTO Technique VALUES(68395,'Milled');
INSERT INTO Technique VALUES(69263,'Milled');
INSERT INTO Technique VALUES(69264,'Milled');
INSERT INTO Technique VALUES(70547,'Milled');
INSERT INTO Technique VALUES(81058,'Milled');
INSERT INTO Technique VALUES(82237,'Milled');
INSERT INTO Technique VALUES(84061,'Milled');
INSERT INTO Technique VALUES(87329,'Milled');
INSERT INTO Technique VALUES(88649,'Milled');
INSERT INTO Technique VALUES(89870,'Milled');
INSERT INTO Technique VALUES(91431,'Milled');
INSERT INTO Technique VALUES(100658,'Milled');
INSERT INTO Technique VALUES(102445,'Milled');
INSERT INTO Technique VALUES(105040,'Milled');
INSERT INTO Technique VALUES(122665,'Milled');
INSERT INTO Technique VALUES(133815,'Milled');
INSERT INTO Technique VALUES(133816,'Milled');
INSERT INTO Technique VALUES(134685,'Milled');
INSERT INTO Technique VALUES(157845,'Milled');
INSERT INTO Technique VALUES(192990,'Milled');
INSERT INTO Technique VALUES(258832,'Milled');
INSERT INTO Technique VALUES(264789,'Milled');
INSERT INTO Technique VALUES(274850,'Milled');
INSERT INTO Technique VALUES(275891,'Milled');
INSERT INTO Technique VALUES(314709,'Milled');
INSERT INTO Technique VALUES(314962,'Milled');
INSERT INTO Technique VALUES(318748,'Milled');
INSERT INTO Technique VALUES(319351,'Milled');
INSERT INTO Technique VALUES(321378,'Milled');
INSERT INTO Technique VALUES(331445,'Milled');
INSERT INTO Technique VALUES(338338,'Milled');
INSERT INTO Technique VALUES(338339,'Milled');
INSERT INTO Technique VALUES(368994,'Milled');
INSERT INTO Technique VALUES(369820,'Milled');
INSERT INTO Technique VALUES(377368,'Milled');
CREATE TABLE Reverse (
id INTEGER NOT NULL PRIMARY KEY,
engravers TEXT,
designers TEXT,
description TEXT,
lettering TEXT,
lettering_scripts TEXT,
unabridged_legend TEXT,
lettering_translation TEXT,
picture TEXT,
thumbnail TEXT,
picture_copyright TEXT,
picture_copyright_url TEXT,
picture_license_name TEXT,
picture_license_url TEXT
);
INSERT INTO Reverse VALUES(3,'Adrien Dieudonné',NULL,'The face value is surrounded with a wheat ear, an olive branch and the French motto.',replace(replace('LIBERTE · EGALITE\r\n· FRATERNITE ·\r\n10\r\nCENTIMES\r\n1967\r\nA. DIEUDONNE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Liberty Equality\r\nBrotherhood','\r',char(13)),'\n',char(10)),'/photos/france/5f9dd2069663b8.25893871-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd2069663b8.25893871-180.jpg','Jérémy Pureur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(4,'Adrien Dieudonné',NULL,'The face value is surrounded with a wheat ear, an olive branch and the French motto: "LIBERTE - EGALITE - FRATERNITE" (liberty, equality, fraternity)',replace(replace('A.DIEUDONNE\r\nLIBERTE·EGALITE\r\n·FRATERNITE·\r\n20\r\nCENTIMES\r\n1968','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Liberty, Equality\r\nFraternity','\r',char(13)),'\n',char(10)),'/photos/france/5f9dd2c6a02336.42871704-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd2c6a02336.42871704-180.jpg','Jérémy Pureur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5,'Louis-Oscar Roty',NULL,'Underneath the face value, an olive branch is surrounded with the French motto: "LIBERTE - EGALITE - FRATERNITE" (liberty, equality, fraternity)',replace(replace('LIBERTE·EGALITE·FRATERNITE\r\n1/2\r\nFRANC\r\n2000','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Liberty, Equality, Fraternity','/photos/france/5608-original.jpg','https://en.numista.com/catalogue/photos/france/5608-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(8,'Louis-Oscar Roty',NULL,'Olive branches, oak branches and wheat ears, underneath the face value, are surrounded with the French motto.',replace(replace('LIBERTE•EGALITE•FRATERNITE\r\n5\r\nFRANCS\r\n1970','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'LIBERTY • EQUALITY • FRATERNITY','/photos/france/5f9dd414d40668.27338105-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd414d40668.27338105-180.jpg','Jérémy Pureur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9,'Jean Luc Maréchal',NULL,'The face value, crossed out with wide stripes, is surrounded by the French motto: "LIBERTÉ ÉGALITÉ FRATERNITÉ" (liberty, equality, fraternity)',replace(replace('LIBERTÉ EGALITÉ\r\n10F\r\n1989\r\nFRATERNITÉ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Liberty Equality\r\nBrotherhood','\r',char(13)),'\n',char(10)),'/photos/france/5f9dd498b4d939.41396241-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd498b4d939.41396241-180.jpg','Jérémy Pureur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(12,'Émile Rousseau',NULL,'Denomination within six sided wreath, dates below',replace(replace('LIBERTÉ · EGALITÉ · FRATERNITÉ\r\n1 F.\r\n1958·1988','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/613499de4ad8c1.02797384-original.jpg','https://en.numista.com/catalogue/photos/france/613499de4ad8c1.02797384-180.jpg','CGB','http://www.cgb.fr',NULL,NULL);
INSERT INTO Reverse VALUES(42,'Frank Gasparro',NULL,'The Lincoln Memorial surrounded with the face value in full, the lettering: "UNITED STATES OF AMERICA" and the motto: "E • PLURIBUS • UNUM •".',replace(replace('UNITED STATES OF AMERICA\r\nE • PLURIBUS \r\n• UNUM • \r\nFG\r\nONE CENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many One','/photos/etats-unis/60a7cd51217f39.20669591-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/60a7cd51217f39.20669591-180.jpg','Pinheiro, Rafael',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(43,'Frank Gasparro',NULL,'The Lincoln Memorial is surrounded with the face value in full, the lettering : "UNITED STATES oF AMERICA" and the motto : "E • PLURIBUS • UNUM •".',replace(replace('UNITED STATES oF AMERICA\r\nE • PLURIBUS • UNUM •\r\nFG\r\nONE CENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many, One','/photos/etats-unis/627fa60ea6c6b3.15582220-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/627fa60ea6c6b3.15582220-180.jpg','Nyxain',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(44,'Felix Schlag',NULL,'A representation of Monticello, President Thomas Jefferson''s Virginia home.',replace(replace('E PLURIBUS UNUM \r\nMONTICELLO\r\nFIVE CENTS\r\nUNITED STATES OF AMERICA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'OUT OF MANY, ONE','/photos/etats-unis/6214498b59e507.16200277-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/6214498b59e507.16200277-180.jpg','EZE711CBA',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(53,'John R. Sinnock',NULL,'Ahead of the motto "E • PLU RIB US • U NUM", an olive branch, a torch, and an oak branch symbolize respectively peace, liberty, and victory and are surrounded with the face value and the lettering "UNITED STATES OF AMERICA"',replace(replace('E • PLURIBUS • UNUM \r\nUNITED STATES OF AMERICA \r\n• ONE DIME •','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many, One','/photos/etats-unis/5225-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/5225-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(55,'John Flanagan',NULL,'An eagle, wings spread, and standing on a shaft of arrows with two olive sprays beneath the eagle, is surrounded with the face value, the motto "E PLURIBUS UNUM" and the lettering "UNITED STATES OF AMERICA"',replace(replace('UNITED STATES OF AMERICA\r\nE PLURIBUS\r\nUNUM\r\n\r\nQUARTER DOLLAR','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many One','/photos/etats-unis/2860-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/2860-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(57,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/autriche/62ca843116f7d5.49400449-original.jpg','https://en.numista.com/catalogue/photos/autriche/62ca843116f7d5.49400449-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(58,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/autriche/621339f98e9cc9.26512080-original.jpg','https://en.numista.com/catalogue/photos/autriche/621339f98e9cc9.26512080-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(73,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/belgique/61f9096597aca4.76643749-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f9096597aca4.76643749-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(74,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/belgique/61fde21b82e9f5.76970017-original.jpg','https://en.numista.com/catalogue/photos/belgique/61fde21b82e9f5.76970017-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(75,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/belgique/3430-original.jpg','https://en.numista.com/catalogue/photos/belgique/3430-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(78,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/belgique/61f95163bcd270.19204610-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f95163bcd270.19204610-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(79,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/3169-original.jpg','https://en.numista.com/catalogue/photos/belgique/3169-180.jpg','moi4992',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(81,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/62c135e28b0459.19800323-original.jpg','https://en.numista.com/catalogue/photos/espagne/62c135e28b0459.19800323-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(82,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/6212efc87a59e9.32615523-original.jpg','https://en.numista.com/catalogue/photos/espagne/6212efc87a59e9.32615523-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(83,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/61ff71a7d756a3.00233374-original.jpg','https://en.numista.com/catalogue/photos/espagne/61ff71a7d756a3.00233374-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(84,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/62be9c7ab0d005.64602918-original.jpg','https://en.numista.com/catalogue/photos/espagne/62be9c7ab0d005.64602918-180.jpg','StanCollects',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(85,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/627287323c35e4.15853079-original.jpg','https://en.numista.com/catalogue/photos/espagne/627287323c35e4.15853079-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(88,'Luc Luycx',NULL,'A map, next to the face value, shows the 15 states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/espagne/62ca7e3c06f2d3.74143567-original.jpg','https://en.numista.com/catalogue/photos/espagne/62ca7e3c06f2d3.74143567-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(91,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/finlande/61fde2821ebd14.28849922-original.jpg','https://en.numista.com/catalogue/photos/finlande/61fde2821ebd14.28849922-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(96,'Luc Luycx',NULL,'A map, next to the face value, shows the fifteen states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/finlande/612b605f5b9539.75971023-original.jpg','https://en.numista.com/catalogue/photos/finlande/612b605f5b9539.75971023-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(97,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.',replace(replace('1 \r\nEURO\r\nCENT\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/3928-original.jpg','https://en.numista.com/catalogue/photos/france/3928-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(98,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/france/3930-original.jpg','https://en.numista.com/catalogue/photos/france/3930-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(99,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.',replace(replace('5\r\nEURO\r\nCENT\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/61fde301a02a94.57833549-original.jpg','https://en.numista.com/catalogue/photos/france/61fde301a02a94.57833549-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(100,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the 15 nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/france/6289eb6fa421c1.11082254-original.jpg','https://en.numista.com/catalogue/photos/france/6289eb6fa421c1.11082254-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(105,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia, engraver''s initials to the right.',replace(replace('1 EURO \r\nCENT \r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/1384-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1384-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(106,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/allemagne/61fcbadb755495.73524562-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61fcbadb755495.73524562-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(107,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/allemagne/61fde61ce40330.51779213-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61fde61ce40330.51779213-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(108,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/allemagne/2192-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2192-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(109,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/1895-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1895-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(110,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','50 EURO CENT LL','[object Object]',NULL,NULL,'/photos/allemagne/605d7236a09ca5.75059996-original.jpg','https://en.numista.com/catalogue/photos/allemagne/605d7236a09ca5.75059996-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(111,'Luc Luycx',NULL,'A map, next to the face value, shows the gathering of the fifteen states of the European Union','1 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/6054bcd81101a4.32318974-original.jpg','https://en.numista.com/catalogue/photos/allemagne/6054bcd81101a4.32318974-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(115,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/grece/626ea6ce7ef417.14891651-original.jpg','https://en.numista.com/catalogue/photos/grece/626ea6ce7ef417.14891651-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(116,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.',replace(replace('10 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/grece/1825-original.jpg','https://en.numista.com/catalogue/photos/grece/1825-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(118,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.',replace(replace('50\r\nLL \r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/grece/605d731176ff38.14105518-original.jpg','https://en.numista.com/catalogue/photos/grece/605d731176ff38.14105518-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(120,'Luc Luycx',NULL,'A map, next to the face value, shows the fifteen states of the European Union.','2 EURO LL','[object Object]',NULL,NULL,'/photos/grece/63c2ce3b8069f8.14431010-original.jpg','https://en.numista.com/catalogue/photos/grece/63c2ce3b8069f8.14431010-180.jpg','brismike',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(121,NULL,'Luc Luycx','A globe, next to the face value, shows Europe in relation to Africa and Asia.','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/irlande/978-original.jpg','https://en.numista.com/catalogue/photos/irlande/978-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(122,NULL,'Luc Luycx','A globe, next to the face value, shows Europe in relation to Africa and Asia.','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/irlande/980-original.jpg','https://en.numista.com/catalogue/photos/irlande/980-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(125,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/irlande/986-original.jpg','https://en.numista.com/catalogue/photos/irlande/986-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(129,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/italie/61fccce8c39305.18290716-original.jpg','https://en.numista.com/catalogue/photos/italie/61fccce8c39305.18290716-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(130,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/italie/61fcbc112e09c2.46458903-original.jpg','https://en.numista.com/catalogue/photos/italie/61fcbc112e09c2.46458903-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(131,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia',replace(replace('EURO\r\nCENT\r\n5 LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/italie/61ff724c3a0db7.02698926-original.jpg','https://en.numista.com/catalogue/photos/italie/61ff724c3a0db7.02698926-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(132,'Luc Luycx',NULL,'On the left, next to the face value, a map of the Europe with the twelve vertical stars symbolizes the gathering of the nations of the European Union. The map is not geographical since there is space between the borders of each nations of the Europe',replace(replace('10 LL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/italie/61da9cf0d92735.09580640-original.jpg','https://en.numista.com/catalogue/photos/italie/61da9cf0d92735.09580640-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(133,'Luc Luycx',NULL,'On the left, next to the face value, a map of the Europe with the twelve vertical stars symbolizes the gathering of the nations of the European Union. The map is not geographical since there is space between the borders of each nations of the Europe',replace(replace('20 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/italie/61da9d39d089a6.52440788-original.jpg','https://en.numista.com/catalogue/photos/italie/61da9d39d089a6.52440788-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(136,'Luc Luycx',NULL,'A map, next to the face value, shows the 15 states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/italie/5fc27d8977c972.63792175-original.jpg','https://en.numista.com/catalogue/photos/italie/5fc27d8977c972.63792175-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(137,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/luxembourg/61fcd02d00ce32.31683315-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fcd02d00ce32.31683315-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(138,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/luxembourg/61fccf639e9ea0.20174194-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fccf639e9ea0.20174194-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(139,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/luxembourg/61fe0eecddda17.09298112-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fe0eecddda17.09298112-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(144,'Luc Luycx',NULL,'A map, next to the face value, shows the fifteen states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/luxembourg/612b67803f6c06.80626489-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/612b67803f6c06.80626489-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(145,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia',replace(replace('1 EURO\r\nCENT LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/6228249009e060.96783267-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/6228249009e060.96783267-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(146,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia',replace(replace('2 EURO\r\nCENT LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/61fcb9ca08e385.73587269-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/61fcb9ca08e385.73587269-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(147,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia',replace(replace('5 EURO\r\nCENT LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/61fde438a4eb65.87953789-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/61fde438a4eb65.87953789-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(149,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/2526-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2526-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(152,'Luc Luycx',NULL,'A map, next to the face value, shows the fifteen states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/pays-bas/2572-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2572-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(153,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/portugal/5971-original.jpg','https://en.numista.com/catalogue/photos/portugal/5971-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(154,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/portugal/5974-original.jpg','https://en.numista.com/catalogue/photos/portugal/5974-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(155,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/portugal/5976-original.jpg','https://en.numista.com/catalogue/photos/portugal/5976-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(156,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/portugal/62c92394a2db18.80480132-original.jpg','https://en.numista.com/catalogue/photos/portugal/62c92394a2db18.80480132-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(171,NULL,'Karl Friedrich Voigt','Wreath formed of two branches of grape vine bearing three bunches of grapes each and bound with a ribbon below.',replace(replace('5\r\nB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/suisse/5f9f2db6937d19.06564382-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f9f2db6937d19.06564382-180.jpg','stratocaster',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(173,NULL,'Karl Friedrich Voigt','Wreath formed of two oak branches with acorns tied with a ribbon below.',replace(replace('10\r\nB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/suisse/5f32d312709818.43603625-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f32d312709818.43603625-180.jpg','Tauler & Fau Subastas','https://www.tauleryfau.com/',NULL,NULL);
INSERT INTO Reverse VALUES(178,NULL,'Karl Friedrich Voigt','Wreath formed of two alpine rose springs with flowers tied with a ribbon below.',replace(replace('20\r\nB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/suisse/60439aa782ca70.60129588-original.jpg','https://en.numista.com/catalogue/photos/suisse/60439aa782ca70.60129588-180.jpg','Sincona AG','https://www.sincona.com/',NULL,NULL);
INSERT INTO Reverse VALUES(185,'Antoine Bovy','Friedrich Fisch','Wreath formed of oak and alpine rose branches tied with a ribbon below.',replace(replace('1 Fr.\r\n1970','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/suisse/64294a6fbcc8c0.83604330-original.jpg','https://en.numista.com/catalogue/photos/suisse/64294a6fbcc8c0.83604330-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(189,'Antoine Bovy','Friedrich Fisch','Wreath formed of oak and alpine rose branches tied with a ribbon below.',replace(replace('2 Fr. \r\n1968\r\nB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/suisse/1507-original.jpg','https://en.numista.com/catalogue/photos/suisse/1507-180.jpg','Robert Maiersperger',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(242,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','1 EURO LL','[object Object]',NULL,NULL,'/photos/slovenie/927-original.jpg','https://en.numista.com/catalogue/photos/slovenie/927-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(243,'Luc Luycx',NULL,'A geographical map of the European Union accompany the face value.','2 EURO LL','[object Object]',NULL,NULL,'/photos/slovenie/929-original.jpg','https://en.numista.com/catalogue/photos/slovenie/929-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(377,'Emanuel Otto Hahn',NULL,'The Bluenose under sail, a Canadian schooner from Nova Scotia, a celebrated racing ship and a symbol of the province, is surrounded with the face value and the inscription "CANADA"',replace(replace('CANADA\r\n2009\r\n10 CENTS\r\nH','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/canada/64f9f5a42e97f7.69114930-original.jpg','https://en.numista.com/catalogue/photos/canada/64f9f5a42e97f7.69114930-180.jpg','Carlos-Imbe',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(403,'Thomas Shingles','George Kruger Gray','A beaver, over the inscription "CANADA", is surrounded with the face value, flanked on both sides by a maple leaf. This coin uses the same small beaver as KM# 50a, adjusted to the round frame.',replace(replace('5 CENTS\r\nCANADA\r\n1964\r\nK·G','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/canada/619901a409f4c1.32692476-original.jpg','https://en.numista.com/catalogue/photos/canada/619901a409f4c1.32692476-180.jpg','Ringgy',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(465,'Terry Smith','Robert-Ralph Carmichael','A Canadian loon swimming on a lake with above the inscription "CANADA" and below the face value',replace(replace('CANADA\r\n1987\r\nDOLLAR\r\nRRC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/canada/8269-original.jpg','https://en.numista.com/catalogue/photos/canada/8269-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(524,NULL,'Ewa Tyc-Karpińska','The face value accompanied by five oak leaves','5 GROSZY','[object Object]',NULL,NULL,'/photos/pologne/5ebaafe3633550.91025555-original.jpg','https://en.numista.com/catalogue/photos/pologne/5ebaafe3633550.91025555-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(573,'William Maving Gardner',NULL,'Crowned Tudor rose dividing date and legend, denomination below.',replace(replace('TWENTY PENCE\r\n20 00\r\nW G\r\n20','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/96-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/96-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(587,NULL,NULL,'At the center, the denomination $2 with the date above the $ and the mint mark Ṁ to the right. On the outer ring, the stylized designs from the Ring of Days (Anillo de Los Días) on the Aztec calendar stone (Piedra del Sol).',replace(replace('2019\r\n$2 Mo','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/mexique/6300876686b293.76761093-original.jpg','https://en.numista.com/catalogue/photos/mexique/6300876686b293.76761093-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(589,NULL,NULL,'In the center of the coin to the left, the symbol "$", and to the right, the face value, five "5"; top center, the mint year; to the right of the center, the mark of the Mint of Mexico “Mo” As the key motif, a stylized image of the Ring of the Serpents of the Aztec sun stone.',replace(replace('2019\r\n$5 Mo','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/mexique/62f7e90619b930.03249592-original.jpg','https://en.numista.com/catalogue/photos/mexique/62f7e90619b930.03249592-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(591,NULL,NULL,'In the center there is the circle of the Aztec sun stone representing Tonatiuh with the fire mask. In the peripheral ring at top center the value; to the left the mint year, and to the right the mark of the Mint of Mexico "Mo"; at the bottom, the face value in words. On most coins the inverted "L'' shape ornament along the rim. See comments for details.',replace(replace('$10\r\n2019 Mo\r\nDIEZ PESOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Ten Pesos','/photos/mexique/62f7e9642bdcd8.72777248-original.jpg','https://en.numista.com/catalogue/photos/mexique/62f7e9642bdcd8.72777248-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(596,NULL,NULL,'The head of Barbary lion looking left accompanied with the year in the Islamic and the gregorian calendars and surrounded with a stylized pattern inspired by the Hammadid architecture','1992 1413','[object Object]',NULL,NULL,'/photos/algerie/465-original.jpg','https://en.numista.com/catalogue/photos/algerie/465-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(614,'Alfred Maletsky',NULL,'The Statue of Liberty against a map of the state displaying a line tracing the Hudson River and the route of the Erie Canal is accompanied with the state''s name ("NEW YORK"), the date of its admission into Union ("1788"), the words ("GATEWAY TO FREEDOM"), 11 stars, signifying the fact that New York was the 11th state to ratify the Constitution, and the motto "E PLURIBUS UNUM", designed by Daniel Carr',replace(replace('NEW YORK\r\n1788\r\nGATEWAY\r\nTO\r\nFREEDOM\r\nAM\r\n2001\r\nE PLURIBUS UNUM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many, One','/photos/etats-unis/4877-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4877-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Reverse VALUES(648,'Joseph Menna',NULL,'Two locomotives moving toward the golden spike that joins Central Pacific and Union Pacific railroads.',replace(replace('UTAH\r\n1896\r\nCROSSROADS OF THE WEST\r\nJFM\r\n2007\r\nE PLURIBUS UNUM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Utah\r\n1896\r\nCrossroads of the West\r\nJFM\r\n2007\r\nOut of Many, One','\r',char(13)),'\n',char(10)),'/photos/etats-unis/4855-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4855-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Reverse VALUES(649,'Phebe Hemphill',NULL,'Scissor-tailed Flycatcher, Oklahoma''s State Bird, in flight with its distinctive tail feathers spread. The bird is soaring over the State wildflower, the Indian Blanket, backed by a field of similar wildflowers.',replace(replace('OKLAHOMA \r\n1907\r\nPH\r\n2008\r\nE PLURIBUS UNUM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Oklahoma\r\n1907\r\nPH\r\n2008\r\nOut of Many, One','\r',char(13)),'\n',char(10)),'/photos/etats-unis/4947-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4947-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Reverse VALUES(664,NULL,'Christopher Ironside','The badge of the Prince of Wales, a plume of three ostrich feathers enfiling a coronet of cross pattée and fleur de lis, dividing motto with legend above and denomination below.',replace(replace('NEW PENCE\r\nICH DIEN\r\n2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'I serve','/photos/royaume-uni/79-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/79-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(665,NULL,'Christopher Ironside','A crowned portcullis with chains (an adaptation of the Badge of Henry VII which is now the Badge of the Palace of Westminster) and the face value.',replace(replace('NEW PENNY\r\n1','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5f7902fa135f77.28430982-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f7902fa135f77.28430982-180.jpg','Rafael Pinheiro Aquino',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(666,NULL,NULL,'Denomination on linear design at left, 3/4 globe with a sash on right, date below',replace(replace('50 \r\nCENTAVOS \r\n2010','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bresil/1482-original.jpg','https://en.numista.com/catalogue/photos/bresil/1482-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(681,'Atelier de gravure d'après Augustin Dupré',NULL,'The Liberty and the Equality, two ideologies which are not often compatible, reconciled with Fraternity by Hercules; the French motto above.',replace(replace('LIBERTÉ ÉGALITÉ FRATERNITÉ\r\n⦁ Dupré ⦁','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/8652-original.jpg','https://en.numista.com/catalogue/photos/france/8652-180.jpg','smy77',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(734,NULL,NULL,'Denomination, divided date at sides, crown at the top',replace(replace('1950\r\n10 \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/627e973081a602.04870298-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/627e973081a602.04870298-180.jpg','Nyxain',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(766,NULL,NULL,'Value and date within wheat sprigs.',replace(replace('3\r\nКОПЕЙКИ\r\n1989','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'3 Kopecks','/photos/ancienne_urss/12-original.jpg','https://en.numista.com/catalogue/photos/ancienne_urss/12-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(768,'Frederico Augusto de Campos',NULL,'Large wreath (and olive branch to the right and an oak branch to the left both tied by a ribbon at the bottom) containing the value above the date',replace(replace('XX\r\nREIS\r\n1883','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('20\r\nReis\r\n1883','\r',char(13)),'\n',char(10)),'/photos/portugal/5793-original.jpg','https://en.numista.com/catalogue/photos/portugal/5793-180.jpg','Darkcid',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(770,'Euclides Vaz',NULL,'A ship or stylized boat at sail left with four fishes below.',NULL,NULL,NULL,NULL,'/photos/portugal/3012-original.jpg','https://en.numista.com/catalogue/photos/portugal/3012-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(771,'Hélder Batista',NULL,'A stained glass window, engraver''s name and issuer at the bottom.',replace(replace('10 \r\nESCUDOS\r\nH. BATISTA incm','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5e178399229.49978744-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5e178399229.49978744-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(772,'Marcelino Norte de Almeida',NULL,'The coat of arms of Portugal and 4 stars, value below',replace(replace('5$00\r\nMARTINS BARATA DEL. M. NORTE SCULP.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3350-original.jpg','https://en.numista.com/catalogue/photos/portugal/3350-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(773,'Hélder Batista',NULL,'A stained glass window above denomination.',replace(replace('5 \r\nESCUDOS\r\nH BATISTA incm','\r',char(13)),'\n',char(10)),'[object Object]','Imprensa Nacional Casa da Moeda','National Mint Press','/photos/portugal/251-original.jpg','https://en.numista.com/catalogue/photos/portugal/251-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(774,'Marcelino Norte de Almeida',NULL,'The arms of Portugal with the value below',replace(replace('2$50\r\nMARTINS BARATA DEL. M. NORTE SCULP.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3006-original.jpg','https://en.numista.com/catalogue/photos/portugal/3006-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(775,'Marcelino Norte de Almeida',NULL,'Denomination above five wheat ears, engraver''s name to the right.',replace(replace('1\r\nESCVDO\r\nM.NORTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1\r\nEscudo\r\nM.NORTE','\r',char(13)),'\n',char(10)),'/photos/portugal/3153-original.jpg','https://en.numista.com/catalogue/photos/portugal/3153-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(776,'Marcelino Norte de Almeida',NULL,'Five ears of wheat underneath the face value',replace(replace('50\r\nCENTAVOS\r\nMNORTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3151-original.jpg','https://en.numista.com/catalogue/photos/portugal/3151-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(779,'Garcilaso Rollán Sánchez',NULL,'Tribute to Cesar Manrique Sea on the shore of Martiánez, crowned M','25 PTAS CANARIAS M','[object Object]',NULL,'25 PTAS CANARY ISLANDS M','/photos/espagne/269-original.jpg','https://en.numista.com/catalogue/photos/espagne/269-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(781,'Teodoro Miciano Becerra',NULL,'The Spanish coat of arms with the eagle of Saint John and the year in the star to the left with the denomination at the top',replace(replace('5 PTAS\r\nUNA GRANDE LIBRE\r\nPLUS ULTRA\r\n59','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('One, Great and Free\nFurther beyond','\n',char(10)),'/photos/espagne/4659-original.jpg','https://en.numista.com/catalogue/photos/espagne/4659-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(782,'Francisco Martínez Tornero',NULL,'Face value and personal coat of arms of King Juan Carlos I',replace(replace('5 PTAS\r\n79','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/5673-original.jpg','https://en.numista.com/catalogue/photos/espagne/5673-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Reverse VALUES(783,'Luis José Díaz Salas',NULL,'Figure on rearing horse with the denomination to the left',replace(replace('5 PTAS\r\nM ISLAS BALEARES','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 Pesetas\nM Balearic Islands','\n',char(10)),'/photos/espagne/216-original.jpg','https://en.numista.com/catalogue/photos/espagne/216-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(784,'Begoña Castellanos García',NULL,'Hórreo, value',replace(replace('5 PTAS\r\nM ASTURIAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 Pesetas\nM Asturias','\n',char(10)),'/photos/espagne/218-original.jpg','https://en.numista.com/catalogue/photos/espagne/218-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(787,'Manuel Marín Jimeno',NULL,'The arms of Spain and the real date is written in the stars on each side of the word "UNA", part of the denomination divided on both sides',replace(replace('UNA PESETA 1977\r\nUNA GRANDE LIBRE\r\nPLUS ULTRA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('One Peseta 1977\nOne Great Free\nFurther Beyond','\n',char(10)),'/photos/espagne/625cb74aa10319.60902286-original.jpg','https://en.numista.com/catalogue/photos/espagne/625cb74aa10319.60902286-180.jpg','EZE711CBA',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(844,'Reinhart Heinsdorff',NULL,'An eagle facing left, emblem of Germany and the mintmark below the left claw',replace(replace('BUNDESREPUBLIK DEUTSCHLAND\r\n1978\r\nG\r\n2 DEUTSCHE MARK','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Federal Republic of Germany\r\n1978\r\nG\r\n2 Deutsche Mark','\r',char(13)),'\n',char(10)),'/photos/allemagne/1963-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1963-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(846,'J. Bernhart',NULL,'Two oak branches on either side of the face value.',replace(replace('1 \r\nDEUTSCHE \r\nMARK \r\n1965','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'1 German Mark','/photos/allemagne/6280f8dda0c876.82924426-original.jpg','https://en.numista.com/catalogue/photos/allemagne/6280f8dda0c876.82924426-180.jpg','PCGS','https://www.pcgs.com/',NULL,NULL);
INSERT INTO Reverse VALUES(847,'Richard M. Werner',NULL,'Face value surrounded with the country name (German Federal Republic) ; mintmark below.',replace(replace('BUNDESREPUBLIK DEUTSCHLAND\r\n50 · PFENNIG ·\r\nD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Federal Republic of Germany','/photos/allemagne/1889-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1889-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(850,'Adolf Jäger',NULL,'The mintmark in between two rye ears above the denomination',replace(replace('F\r\n10\r\nPFENNIG','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/235-original.jpg','https://en.numista.com/catalogue/photos/allemagne/235-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(854,NULL,NULL,'The mintmark in between two rye ears above the denomination in two lines.',replace(replace('F\r\n1\r\nPFENNIG','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/1757-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1757-180.jpg','Idolenz',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(861,'Christopher Ironside',NULL,'Crowned portcullis with chains (an adaptation of the Badge of Henry VII which is now the Badge of the Palace of Westminster) with legend above and denomination below.',replace(replace('ONE PENNY\r\n1','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/2191-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2191-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(862,'Christopher Ironside',NULL,'A crowned portcullis with chains (an adaptation of the Badge of Henry VII, now the Badge of the Palace of Westminster), denomination around.',replace(replace('ONE PENNY\r\n1','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/65-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/65-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(863,'Leslie Durbin',NULL,'A leek, the emblem of Wales, encircled by the Royal Diadem','ONE POUND','[object Object]',NULL,NULL,'/photos/royaume-uni/8120-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8120-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(864,'Christopher Ironside',NULL,'A figure of Britannia seated beside a lion, with a shield resting against her right side, holding a trident in her right hand and an olive branch in her left, denomination below and legend above.',replace(replace('FIFTY PENCE\r\n50','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/86-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/86-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(865,'William Maving Gardner',NULL,'Crowned Tudor rose dividing date and legend, denomination below.',replace(replace('TWENTY PENCE\r\n1982\r\nW G\r\n20','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/10770-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/10770-180.jpg','Tony K',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(867,'Christopher Ironside',NULL,'The badge of the Prince of Wales, a plume of three ostrich feathers enfiling a coronet of cross pattée and fleur de lis, dividing motto with legend above and denomination below.',replace(replace('TWO PENCE\r\nICH DIEN\r\n2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'I serve','/photos/royaume-uni/63-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/63-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(868,'Christopher Ironside',NULL,'Badge of the Prince of Wales, a plume of three ostrich feathers enfiling a coronet of cross pattée and fleur de lys, dividing motto with legend above and denomination below.',replace(replace('TWO PENCE\r\nICH DIEN\r\n2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'I serve','/photos/royaume-uni/216-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/216-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(875,'Christopher Ironside',NULL,'The Badge of Scotland, a thistle royally crowned, legend above, denomination below.',replace(replace('FIVE PENCE\r\n5','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/208-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/208-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(876,'Christopher Ironside',NULL,'The Badge of Scotland, a thistle royally crowned, with legend above and denomination below.',replace(replace('FIVE PENCE\r\n5','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5534-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5534-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(879,'Christopher Ironside',NULL,'Part of the crest of England, a lion passant guardant royally crowned, legend above, denomination below.',replace(replace('TEN PENCE\r\n10','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/69-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/69-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(907,'José Simões de Almeida',NULL,'Coat of arms of Portugal within designed circle and wreath above value','1 ESCUDO','[object Object]',NULL,NULL,'/photos/portugal/62ca16b3dc4080.89290249-original.jpg','https://en.numista.com/catalogue/photos/portugal/62ca16b3dc4080.89290249-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(908,'Victor David Brenner',NULL,replace(replace('Two wheat ears surrounding lettering.\r\n\r\nOn some of the 1909 issues, Brenner''s initials appear on the bottom of the reverse side. They were removed that year, thus creating two varieties for each of the two mints in 1909.','\r',char(13)),'\n',char(10)),replace(replace('E·PLURIBUS·UNUM\r\nONE CENT\r\nUNITED STATES OF AMERICA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Out of Many One','/photos/etats-unis/1117-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/1117-180.jpg','Heritage Auctions','http://www.ha.com',NULL,NULL);
INSERT INTO Reverse VALUES(941,NULL,NULL,'Starfish.',replace(replace('ONE CENT\r\n· ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/693-original.jpg','https://en.numista.com/catalogue/photos/bahamas/693-180.jpg','HOOK',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(946,'Antonio Leandro Nieto',NULL,'The world, a soccer ball, and the face value',replace(replace('5 PTAS\r\nESPAÑA 82\r\n82','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 Pesetas\nSpain 82\n82','\n',char(10)),'/photos/espagne/186-original.jpg','https://en.numista.com/catalogue/photos/espagne/186-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(991,'José Simões de Almeida',NULL,'The Portuguese coat of arms and the denomination below.',replace(replace('50\r\n* CENTAVOS *','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3227-original.jpg','https://en.numista.com/catalogue/photos/portugal/3227-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1051,NULL,NULL,'Quimbaya spindlewheel with stylized bird heads.',NULL,NULL,NULL,NULL,'/photos/colombie/1301-original.jpg','https://en.numista.com/catalogue/photos/colombie/1301-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Reverse VALUES(1073,NULL,NULL,'Value within wreath',replace(replace('50 \r\nPESOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/colombie/1300-original.jpg','https://en.numista.com/catalogue/photos/colombie/1300-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Reverse VALUES(1149,'Begoña Castellanos García',NULL,'Dancer on stilts and grapes with the mintmark to the left and the denomination to the upper right',replace(replace('5 PTAS\r\nM LA RIOJA','\r',char(13)),'\n',char(10)),'[object Object]','5 Pesetas',NULL,'/photos/espagne/206-original.jpg','https://en.numista.com/catalogue/photos/espagne/206-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1236,'Marcelino Norte de Almeida',NULL,'Olive branches underneath the face value in Roman numerals',replace(replace('X\r\nCENTAVOS\r\nM NORTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3036-original.jpg','https://en.numista.com/catalogue/photos/portugal/3036-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1237,'Marcelino Norte de Almeida',NULL,'Branches of the olive tree (Binomial name: Olea europaea) underneath the face value in Roman numerals',replace(replace('XX \r\nCENTAVOS\r\nM NORTE.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('XX\r\nCentavos\r\nM Norte.','\r',char(13)),'\n',char(10)),'/photos/portugal/62b0b916d5c2e7.13981359-original.jpg','https://en.numista.com/catalogue/photos/portugal/62b0b916d5c2e7.13981359-180.jpg','The_Seismologist',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1238,'José Cândido',NULL,'Garcia de Orta (1501-1568), a Renaissance Portuguese Jewish physician and naturalist facing right, mintmark and engraver''s name on the sides.',replace(replace('GARCIA DE ORTA\r\nJ. CANDIDO INCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3016-original.jpg','https://en.numista.com/catalogue/photos/portugal/3016-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1241,'Hélder Batista',NULL,'A stained glass window.',replace(replace('1\r\nESCUDO\r\nH.BATISTA INCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63bac3531aeee1.05973943-original.jpg','https://en.numista.com/catalogue/photos/portugal/63bac3531aeee1.05973943-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(1242,'José Cândido',NULL,'Pedro Nunes (1502-1578), a Portuguese mathematician, cosmographer, and professor, facing left',replace(replace('PEDRO NUNES \r\nE**U**R**O**P**A\r\nincm JOSÉ CANDIDO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5e0ac9ceb16.51789048-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5e0ac9ceb16.51789048-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(1243,'Euclides Vaz',NULL,'A nautical compass with pointer at top and Order of Christ Cross at right.',NULL,NULL,NULL,NULL,'/photos/portugal/3008-original.jpg','https://en.numista.com/catalogue/photos/portugal/3008-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1258,'Manuel Martínez Tornero',NULL,'The Spanish coat of arms with the face value on top and below and the FNMT mintmark to its left side',replace(replace('CIEN\r\nPLVS VLTRA\r\nM\r\nPESETAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('One Hundred\nFurther Beyond\nM\nPesetas','\n',char(10)),'/photos/espagne/182-original.jpg','https://en.numista.com/catalogue/photos/espagne/182-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1262,'Alfonso Morales Muñoz',NULL,'Value above stylized sailboats',replace(replace('5 PTAS\r\nM','\r',char(13)),'\n',char(10)),'[object Object]','5 pesetas',NULL,'/photos/espagne/204-original.jpg','https://en.numista.com/catalogue/photos/espagne/204-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1263,'Rafael Vallejo García',NULL,'Botafumeiro from Cathedral of Santiago de Compostela and Way of St. James logo',replace(replace('5 PTAS\r\nM 1993','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 Pesetas\nMadrid','\n',char(10)),'/photos/espagne/208-original.jpg','https://en.numista.com/catalogue/photos/espagne/208-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1264,'Luis Antonio García Ruiz',NULL,'Centre hole divides ancient phoenician amphora and dates',replace(replace('25 PTAS\r\nM MELILLA 1497-1997','\r',char(13)),'\n',char(10)),'[object Object]','25 Pesetas',NULL,'/photos/espagne/210-original.jpg','https://en.numista.com/catalogue/photos/espagne/210-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1266,'Esther González Pastor',NULL,'Murcia waterwheel',replace(replace('5 \r\nPTAS\r\nM \r\nMURCIA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 \nPesetas\nM \nMurcia','\n',char(10)),'/photos/espagne/214-original.jpg','https://en.numista.com/catalogue/photos/espagne/214-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1267,'Luis Antonio García Ruiz',NULL,'Arms of Spain and the date in the upper-right corner',replace(replace('+1998+\r\nPLVS VLTRA\r\nM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Further beyond\nMadrid','\n',char(10)),'/photos/espagne/222-original.jpg','https://en.numista.com/catalogue/photos/espagne/222-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1324,'Bruce Rushin',NULL,'Four concentric circles representing the Iron Age, Industrial Revolution, silicon chip and the internet, denomination above, date below.',replace(replace('TWO POUNDS \r\nBR\r\n1998','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/8794-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8794-180.jpg','narracan coins',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1353,'Antonio Leandro Nieto',NULL,'Football in front of net above value and to the right of vertically "ESPAÑA"',replace(replace('ESPAÑA 82 25 PESETAS\r\n82','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Spain','/photos/espagne/284-original.jpg','https://en.numista.com/catalogue/photos/espagne/284-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1366,'Marcelino Norte de Almeida',NULL,'Value above two Olive sprigs, engraver''s name to the right.',replace(replace('10\r\nCENTAVOS\r\nM.NORTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3356-original.jpg','https://en.numista.com/catalogue/photos/portugal/3356-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1376,'William Maving Gardner',NULL,'Crowned Tudor rose dividing date and legend, denomination below.',replace(replace('TWENTY PENCE\r\n19 97\r\nW G\r\n20','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/99-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/99-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1384,'Eric Sewell',NULL,'Royal Shield of Arms above denomination.',replace(replace('HONI SO[IT QUI M]AL Y PENSE\r\nDIEU ET MON DROIT\r\nONE POUND','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Shame on he who thinks evil of it\r\nGod and my right','\r',char(13)),'\n',char(10)),'/photos/royaume-uni/6007ec35f10735.71235873-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6007ec35f10735.71235873-180.jpg','tolnomur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1389,'Eric Sewell',NULL,'Royal Arms with supporters, denomination below.',replace(replace('HONI SOIT QUI MAL Y PENSE\r\nDIEU ET MON DROIT\r\nONE POUND','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Shame on he who thinks evil of it\r\nGod and my right','\r',char(13)),'\n',char(10)),'/photos/royaume-uni/8142-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8142-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(1390,'Norman Sillman',NULL,'A Celtic cross charged at the centre with an annulet, therein a Pimpernel flower and overall an ancient Torque, denomination below.','ONE POUND','[object Object]',NULL,NULL,'/photos/royaume-uni/8148-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8148-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(1395,'Norman Sillman',NULL,'A Celtic cross charged at the centre with an Annulet therein a Pimpernel flower and overall an ancient Torque, denomination below','ONE POUND','[object Object]',NULL,NULL,'/photos/royaume-uni/600606b15f4a00.86508115-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/600606b15f4a00.86508115-180.jpg','tolnomur',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1397,'Norman Sillman',NULL,'Three lions passant guardant above denomination','ONE POUND','[object Object]',NULL,NULL,'/photos/royaume-uni/6078b06251e238.62911478-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6078b06251e238.62911478-180.jpg',NULL,NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(1571,NULL,NULL,'Achhami cattle facing left',replace(replace('श्री भवानी\r\n५ पाँच पैसा','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Shree Bhavani\r\n5 Five Paisa','\r',char(13)),'\n',char(10)),'/photos/nepal/1128-original.jpg','https://en.numista.com/catalogue/photos/nepal/1128-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(1589,NULL,NULL,'Large value in center, date below',replace(replace('100\r\n昭和47年','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('100\r\nYear 47 of Shōwa','\r',char(13)),'\n',char(10)),'/photos/japon/12-original.jpg','https://en.numista.com/catalogue/photos/japon/12-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1643,NULL,NULL,'Wat Arun (Temple of the Dawn) with Chao Phraya River in the front, denomination in braille dots on top and denomination inscriptions bottom',replace(replace('ประเทศไทย ⠂⠴ พ.ศ. ๒๕๔๕\r\n๑๐ บาท 10','\r',char(13)),'\n',char(10)),'[object Object], [object Object]','ประเทศไทย ⠂⠴ พุทธศักราช ๒๕๔๕',replace(replace('Thailand 10 Buddhist Era 2545\r\n10 Baht','\r',char(13)),'\n',char(10)),'/photos/thailande/22-original.jpg','https://en.numista.com/catalogue/photos/thailande/22-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(1702,NULL,'Stuart Devlin','Platypus (Ornithorhynchus anatinus) and the numeral "20"',replace(replace('20\r\nSD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/australie/62a210dc350a20.47448877-original.jpg','https://en.numista.com/catalogue/photos/australie/62a210dc350a20.47448877-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(1703,NULL,'Stuart Devlin','Platypus (Ornithorhynchus anatinus) and the numeral "20"',replace(replace('20\r\nSD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/australie/62a2133ed01437.43713544-original.jpg','https://en.numista.com/catalogue/photos/australie/62a2133ed01437.43713544-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(1998,'István Kósa, István Bartos',NULL,'The denomination with the mintmark below.',replace(replace('5\r\nFORINT\r\nBP.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/hongrie/62dbe4246e4d26.71759969-original.jpg','https://en.numista.com/catalogue/photos/hongrie/62dbe4246e4d26.71759969-180.jpg','Máté Bikfalvi',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(2047,'João Cutileiro',NULL,'Expo 98 and fish within sprigs',replace(replace('EXPO\r\n98\r\nINCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3923-original.jpg','https://en.numista.com/catalogue/photos/portugal/3923-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2168,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/espagne/1771-original.jpg','https://en.numista.com/catalogue/photos/espagne/1771-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(2169,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/1332-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1332-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(2173,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','EURO 1 CENT LL','[object Object]',NULL,NULL,'/photos/chypre/673-original.jpg','https://en.numista.com/catalogue/photos/chypre/673-180.jpg','Comptoir des Monnaies','http://www.comptoir-des-monnaies.com',NULL,NULL);
INSERT INTO Reverse VALUES(2175,'Luc Luycx',NULL,'The reverse of the coin shows Europe in relation to Africa and Asia on a globe; it also features the numeral 5 and the inscription EURO CENT.',replace(replace('5 \r\nEURO \r\nCENT\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/chypre/62c90b401315b3.35059836-original.jpg','https://en.numista.com/catalogue/photos/chypre/62c90b401315b3.35059836-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(2178,'Luc Luycx',NULL,'The reverse of the coin shows a geographical image of Europe; it also features the numeral 50 and the inscription EURO CENT.',replace(replace('50 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/chypre/605d6fb16932d3.04128821-original.jpg','https://en.numista.com/catalogue/photos/chypre/605d6fb16932d3.04128821-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(2180,'Luc Luycx',NULL,'The reverse of the coin shows a geographical image of Europe; it also features the numeral 2 and the inscription EURO.',replace(replace('2 EURO \r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/chypre/687-original.jpg','https://en.numista.com/catalogue/photos/chypre/687-180.jpg','Comptoir des Monnaies','http://www.comptoir-des-monnaies.com',NULL,NULL);
INSERT INTO Reverse VALUES(2183,'Luc Luycx',NULL,replace(replace('Left: The numeral 5 and the inscription EURO CENT. \r\nRight: The coin shows Europe in relation to Africa and Asia on a globe with 6 Radiating stars each on either side.','\r',char(13)),'\n',char(10)),'5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/malte/545-original.jpg','https://en.numista.com/catalogue/photos/malte/545-180.jpg','Comptoir des Monnaies','http://www.comptoir-des-monnaies.com',NULL,NULL);
INSERT INTO Reverse VALUES(2201,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/5fc9f05c605f76.74087568-original.jpg','https://en.numista.com/catalogue/photos/allemagne/5fc9f05c605f76.74087568-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(2204,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/2773-original.jpg','https://en.numista.com/catalogue/photos/portugal/2773-180.jpg','V. GLADYSH',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2217,NULL,NULL,'A replica of the reverse of the first national coin, with the 32-rayed National Sun surrounded by the inscription in the center and the date below and the denomination above in the outer rim',replace(replace('UN PESO\r\nPROVINCIAS DEL RIO DE LA PLATA\r\n2006','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('One Peso\r\nProvinces of the Rio de la Plata\r\n2006','\r',char(13)),'\n',char(10)),'/photos/argentine/1496-original.jpg','https://en.numista.com/catalogue/photos/argentine/1496-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2236,'Christopher Ironside',NULL,'Part of the Crest of England, a lion passant guardant royally crowned, legend above, denomination below.',replace(replace('TEN PENCE\r\n10','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/60bb754b603047.36155089-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/60bb754b603047.36155089-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(2252,NULL,NULL,'The stylized parts of the Brazilian emblem (stripes and stars, globe) with the denomination above the date to the left',replace(replace('25 \r\nCENTAVOS \r\n2004','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bresil/40-original.jpg','https://en.numista.com/catalogue/photos/bresil/40-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(2253,NULL,NULL,'The value above the date with National Emblem of Brazil (Southern Cross constellation) and diagonal stripes.',replace(replace('10 \r\nCENTAVOS \r\n2014','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bresil/6415b4c18b1fc0.64531988-original.jpg','https://en.numista.com/catalogue/photos/bresil/6415b4c18b1fc0.64531988-180.jpg','Rogbert',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(2254,'Rafael Vallejo García',NULL,'Torre del Oro, in Seville and the denomination above and to the right of the center hole','25 PTAS SEVILLA ''92 M','[object Object]','25 Pesetas Sevilla ''92 M','25 Pesetas Seville 1992 M','/photos/espagne/247-original.jpg','https://en.numista.com/catalogue/photos/espagne/247-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(2255,'Garcilaso Rollán Sánchez',NULL,'Centre hole divides value and buildings and the facade of the Oñate University',replace(replace('PAIS VASCO\r\n25 PTAS M','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Basque Country\n25 pesetas Madrid','\n',char(10)),'/photos/espagne/249-original.jpg','https://en.numista.com/catalogue/photos/espagne/249-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(2304,'Begoña Castellanos García',NULL,'Furrows in the earth with ear of wheat',replace(replace('100 PTAS\r\nM\r\nFAO','\r',char(13)),'\n',char(10)),'[object Object]',replace(replace('100 pesetas\r\nM\r\nFood and Agriculture Organisation','\r',char(13)),'\n',char(10)),NULL,'/photos/espagne/2250-original.jpg','https://en.numista.com/catalogue/photos/espagne/2250-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Reverse VALUES(2374,'Manuel Marín Jimeno',NULL,'Coat of arms of Spain flanked by face value. Two 5-pointed stars inscribed with the actual mint year.',replace(replace('100\r\n19 76 \r\nPTAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/5020-original.jpg','https://en.numista.com/catalogue/photos/espagne/5020-180.jpg','Chilian',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2375,'Petar Stoikov, Vladimir Yossifov',NULL,'The twelve stars of the European community, denomination, and date.',replace(replace('10\r\n1999\r\nСТОТИНКИ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'10 Stotinki','/photos/bulgarie/1056-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1056-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2376,'Petar Stoikov, Vladimir Yossifov',NULL,'The twelve stars of the European community, denomination and date',replace(replace('20\r\n1999\r\nСТОТИНКИ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('20 \r\n1999\r\nStotinki','\r',char(13)),'\n',char(10)),'/photos/bulgarie/1054-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1054-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2383,NULL,NULL,'Head laureate left, date lower left',replace(replace('LIBERDADE DEMOCRACIA\r\n1977\r\nNORTE D''ALMEIDA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5650-original.jpg','https://en.numista.com/catalogue/photos/portugal/5650-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(2384,NULL,NULL,'Laureate head facing left and the date to the left',replace(replace('LIBERDADE DEMOCRACIA \r\n1986\r\nNORTE D''ALMEIDA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Freedom and Democracy','/photos/portugal/3009-original.jpg','https://en.numista.com/catalogue/photos/portugal/3009-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2432,NULL,NULL,'Value above the date',replace(replace('500 \r\nPESOS \r\n2010','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/colombie/1288-original.jpg','https://en.numista.com/catalogue/photos/colombie/1288-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Reverse VALUES(2433,NULL,NULL,'Value within a laurel wreath','100 PESOS','[object Object]',NULL,NULL,'/photos/colombie/1298-original.jpg','https://en.numista.com/catalogue/photos/colombie/1298-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Reverse VALUES(2504,NULL,NULL,'Portrait and name of one of the founding fathers of the Dominican Republic - Francisco del Rosario Sánchez, with the issuer name above and the date below',replace(replace('BANCO CENTRAL DE REPUBLICA DOMINICANA\r\nSANCHEZ\r\n· 2008 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Central Bank of the Dominican Republic\r\nSánchez\r\n2008','\r',char(13)),'\n',char(10)),'/photos/republique_dominicaine/597-original.jpg','https://en.numista.com/catalogue/photos/republique_dominicaine/597-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2736,'Francisco Martínez Tornero',NULL,'Large crown at top, value abbreviated below, date (last two numerals) at bottom within star',replace(replace('25 PTAS\r\n79','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/2293-original.jpg','https://en.numista.com/catalogue/photos/espagne/2293-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Reverse VALUES(2763,'Edwina Ellis',NULL,'A representation of the Menai Bridge inside a border of railings and stanchions.','ONE POUND','[object Object]',NULL,NULL,'/photos/royaume-uni/606b80795b8ce9.01239281-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/606b80795b8ce9.01239281-180.jpg',NULL,NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(2842,NULL,NULL,'Denomination above date within wreath.',replace(replace('10\r\nPESOS\r\n1986','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/chili/1662-original.jpg','https://en.numista.com/catalogue/photos/chili/1662-180.jpg','Quodlibet',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2903,'Susan Erasmus',NULL,'King Protea flower with denomination at upper-right','20c SE','[object Object]',NULL,NULL,'/photos/afrique_du_sud/6035627a3fb917.34022941-original.jpg','https://en.numista.com/catalogue/photos/afrique_du_sud/6035627a3fb917.34022941-180.jpg','Robert Cronjé',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(2986,'Garcilaso Rollán Sánchez',NULL,'Emblem of the United Nations for the elderly',replace(replace('1999\r\nM\r\n100 PTAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/571-original.jpg','https://en.numista.com/catalogue/photos/espagne/571-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(2994,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/627f62bf09d7d5.28528275-original.jpg','https://en.numista.com/catalogue/photos/allemagne/627f62bf09d7d5.28528275-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(3002,NULL,NULL,'Denomination in digits, denomination in words, year of issue',replace(replace('BANCO CENTRAL DEL ECUADOR\r\n10\r\nAÑO \r\n2000\r\nDIEZ CENTAVOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Central Bank of Ecuador\r\nYear 2000\r\nTen centavos','\r',char(13)),'\n',char(10)),'/photos/equateur/5fc7c8fae5e4f2.19901762-original.jpg','https://en.numista.com/catalogue/photos/equateur/5fc7c8fae5e4f2.19901762-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(3044,NULL,NULL,'Value within circle, date below',replace(replace('1\r\nYENİ TÜRK LİRASI\r\n2006','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1\r\nNew Turkish Lira\r\n2006','\r',char(13)),'\n',char(10)),'/photos/turquie/1171-original.jpg','https://en.numista.com/catalogue/photos/turquie/1171-180.jpg','KennyG',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3200,'Francisco Martínez Tornero',NULL,'The personal coat of arms of King Juan Carlos I dividing the denomination with the actual date in the stars flanking the number "50"','19 50 78 PTAS','[object Object]',NULL,'1978 50 Pesetas','/photos/espagne/2297-original.jpg','https://en.numista.com/catalogue/photos/espagne/2297-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Reverse VALUES(3223,NULL,NULL,'Denomination with sprigs below within inner rope circle, motto between toothed outer circle and inner rope circle, date below.',replace(replace('LA UNION ES LA FUERZA\r\n20 \r\nCENTAVOS\r\n1987','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Unity is strength','/photos/bolivie/62023dc2034434.51250636-original.jpg','https://en.numista.com/catalogue/photos/bolivie/62023dc2034434.51250636-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3224,NULL,NULL,'Denomination, date at bottom.',replace(replace('CINCUENTA CENTAVOS \r\n50\r\n1980','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bolivie/62054d5c576849.05953848-original.jpg','https://en.numista.com/catalogue/photos/bolivie/62054d5c576849.05953848-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3225,NULL,NULL,'Face value with sprigs below within inner rope circle, motto between toothed outer circle and inner rope circle, date below.',replace(replace('LA UNION ES LA FUERZA\r\n50 \r\nCENTAVOS\r\n1995','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Unity is strength','/photos/bolivie/61ffcb786c5df5.93434559-original.jpg','https://en.numista.com/catalogue/photos/bolivie/61ffcb786c5df5.93434559-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3228,NULL,NULL,'Denomination within inner circle, legend between toothed outer circle and inner rope circle, date below.',replace(replace('LA UNION ES LA FUERZA \r\n1\r\nBOLIVIANO\r\n1991','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Unity is strength','/photos/bolivie/308-original.jpg','https://en.numista.com/catalogue/photos/bolivie/308-180.jpg','seb',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3256,NULL,NULL,'The denomination in the center and the date below and points or granas around the rim',replace(replace('25\r\ncentavos\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/argentine/1181-original.jpg','https://en.numista.com/catalogue/photos/argentine/1181-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3282,'Marcelino Norte de Almeida',NULL,'Value above two olive sprigs.',replace(replace('20\r\nCENTAVOS\r\nM NORTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/637b551e6b67a9.41212167-original.jpg','https://en.numista.com/catalogue/photos/portugal/637b551e6b67a9.41212167-180.jpg','karrlot',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3372,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('10 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/62bc4f390c82c6.45871979-original.jpg','https://en.numista.com/catalogue/photos/espagne/62bc4f390c82c6.45871979-180.jpg','RuibaiK',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(3510,'Luc Luycx',NULL,'Geographic map of Europe with no internal borders with twelve vertical lines and stars to the left of denomination','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/france/6289f8530bc8a8.86021889-original.jpg','https://en.numista.com/catalogue/photos/france/6289f8530bc8a8.86021889-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(3818,NULL,NULL,replace(replace('Inner disc: Emblem\r\nOuter circle: Five grooves, with dates on left and right, star at top, lettering below - divided by 5 numeral which overlaps both sections','\r',char(13)),'\n',char(10)),replace(replace('2002 1423\r\nإِن تنْصُرُوا اللهَ يَنصُركُم\r\nخمسة 5 دراهم','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2002 1423\r\nIf you support God, help you\r\nFive 5 dirhams','\r',char(13)),'\n',char(10)),'/photos/maroc/615-original.jpg','https://en.numista.com/catalogue/photos/maroc/615-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(3888,'Manuel Martínez Tornero',NULL,'Emblem of the Way of Saint James (Camino de Santiago) of the Council of Europe surrounded by the twelve stars of the European Union',replace(replace('CAMINO DE EUROPA\r\n-·- 1993 -·-','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Road of Europe','/photos/espagne/3800-original.jpg','https://en.numista.com/catalogue/photos/espagne/3800-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(3932,'Francisco Martínez Tornero',NULL,'Crossed Scepters within the Order of the Golden Fleece with crown on top divide value 5 and PTAS, the abbreviation for pesetas.',replace(replace('5 PTAS \r\nM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('5 PTAS \nM','\n',char(10)),'/photos/espagne/443-original.jpg','https://en.numista.com/catalogue/photos/espagne/443-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(4038,'Matthew Dent',NULL,'Left part of Royal Shield, denomination in left segment.',replace(replace('ONE PENNY\r\nMD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5530-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5530-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(4039,'Matthew Dent',NULL,'Top right section of the Royal Shield of Arms, denomination above.',replace(replace('TWO PENCE\r\nMD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5532-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5532-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(4141,'Frederico Augusto de Campos',NULL,'Value and date within wreath',replace(replace('V\r\nREIS\r\n1885','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/60bbadd5954c14.62441231-original.jpg','https://en.numista.com/catalogue/photos/portugal/60bbadd5954c14.62441231-180.jpg','RRnumismatics',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(4546,'Alfonso Morales Muñoz',NULL,'Sphere of the Universal Exposition of Seville ''92',replace(replace('EXPO 92 \r\n50 PESETAS 1990','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/547-original.jpg','https://en.numista.com/catalogue/photos/espagne/547-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(4580,'Alexander Baklanov','Alexander Baklanov','Slightly to the right of the centre is the denomination of the coin: with the number 50 above“КОПЕЕК” written horizontally at the bottom of the disc and a stylized vegetable ornament in form of two branches below',replace(replace('50\r\nКОПЕЕК','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Kopecks','/photos/russie/6679-original.jpg','https://en.numista.com/catalogue/photos/russie/6679-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(4729,'Vítor Manuel Fernandes dos Santos',NULL,'Monk Seal left','EXPOSIÇÃO MUNDIAL DE LISBOA EXPO''98','[object Object]',NULL,'Lisbon World Exhibition Expo 1998','/photos/portugal/4751-original.jpg','https://en.numista.com/catalogue/photos/portugal/4751-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(4901,NULL,NULL,'The caduceus (a staff entwined by two serpents, surmounted by wings) divides denomination, olive sprays below, date at bottom.',replace(replace('CINCUENTA CENTAVOS\r\n50 C\r\n1942','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Fifty Cents\r\n50 c\r\n1942','\r',char(13)),'\n',char(10)),'/photos/bolivie/6214bb3921f4e4.87659322-original.jpg','https://en.numista.com/catalogue/photos/bolivie/6214bb3921f4e4.87659322-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(4902,NULL,NULL,'The caduceus (a staff entwined by two serpents, surmounted by wings) divides denomination, olive sprays below, date at bottom.',replace(replace('CINCUENTA CENTAVOS\r\n50 C\r\n1939','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Fifty Centavos','/photos/bolivie/6214bce16e9ff7.82437752-original.jpg','https://en.numista.com/catalogue/photos/bolivie/6214bce16e9ff7.82437752-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5010,NULL,NULL,'Pineapple (Ananas comosus) above garland and the denomination at the top',replace(replace('FIVE CENTS\r\n·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/358-original.jpg','https://en.numista.com/catalogue/photos/bahamas/358-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5012,NULL,'Arnold Machin','Hibiscus (Hibiscus rosa-sinensis) and the denomination divided below','· · · FIFTEEN · CENTS · · ·','[object Object]',NULL,NULL,'/photos/bahamas/262-original.jpg','https://en.numista.com/catalogue/photos/bahamas/262-180.jpg','moi4992',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(5063,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/5fc9d5d1ee39b7.78935658-original.jpg','https://en.numista.com/catalogue/photos/france/5fc9d5d1ee39b7.78935658-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(5086,'Luc Luycx',NULL,'View of the Earth with Europe','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/slovaquie/61ff74e15fbaf7.17194714-original.jpg','https://en.numista.com/catalogue/photos/slovaquie/61ff74e15fbaf7.17194714-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(5109,'Petar Stoykov',NULL,'Denomination and date.',replace(replace('1\r\nΛЕВ 2002','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'1 Lev','/photos/bulgarie/1909-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1909-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5444,'Marcelino Norte de Almeida',NULL,'Arms of Portugal, 4 stars, value below',replace(replace('10$00\r\nMARTINS BARATA DEL.\r\nM. NORTE SCULP.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63ba9c748ae356.99686716-original.jpg','https://en.numista.com/catalogue/photos/portugal/63ba9c748ae356.99686716-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(5492,'Armando Matos Simões',NULL,'Pattern of 12 woven ribbons.',replace(replace('PORTUGAL*EUROPA\r\nINCM\r\n1986\r\nMS (Behind ''EUROPA'' is de monogram of the engraver)','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3827-original.jpg','https://en.numista.com/catalogue/photos/portugal/3827-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5624,'Begoña Castellanos García',NULL,'Five books and a pen, value',replace(replace('ESPAÑA 1997\r\n200 PESETAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/2317-original.jpg','https://en.numista.com/catalogue/photos/espagne/2317-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Reverse VALUES(5628,'Matthew Dent',NULL,'Lower right section of the Royal Shield, denomination to right segment of rim.',replace(replace('TWENTY PENCE\r\nMD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5544-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5544-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(5737,NULL,NULL,'Farmer ploughing with water buffalos',replace(replace('नेपाल NEPAL\r\n२ रुपैयाँ','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Nepal\r\n2 Rupee','\r',char(13)),'\n',char(10)),'/photos/nepal/597-original.jpg','https://en.numista.com/catalogue/photos/nepal/597-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(5786,'António Marinho',NULL,replace(replace('Espingarda - Mounted cavalry man shooting rifle\r\nthe chinese characters mean "iron" and "gun"','\r',char(13)),'\n',char(10)),replace(replace('鉄砲\r\nINCM A.MARINHO\r\nESPINGARDA\r\n1543·1575','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3860-original.jpg','https://en.numista.com/catalogue/photos/portugal/3860-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6071,'Marcelino Norte de Almeida',NULL,replace(replace('Portrait of Alexandre Herculano\r\n(Portuguese writer and poet)','\r',char(13)),'\n',char(10)),replace(replace('CENTENARIO·DA·MORTE·DE·ALEXANDRE·HERCULANO *\r\n1877 1977 \r\nincm 1977 \r\nM.NORTE SC VLP','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5b7e9746399.72878266-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5b7e9746399.72878266-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(6163,NULL,NULL,'Crescent and Star (National Emblem) at the top and the date at the bottom of a designed ring of Rumi art and denomination in the center and a Rumi Motif in the background',replace(replace('1\r\nTÜRK LİRASI\r\n2012','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1\r\nTurkish Lira\r\n2012','\r',char(13)),'\n',char(10)),'/photos/turquie/2816-original.jpg','https://en.numista.com/catalogue/photos/turquie/2816-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6164,NULL,NULL,'Crescent and Star (National Emblem of Turkey), a Kufic calligraphic, and the value along with the date',replace(replace('25\r\nKURUŞ\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/turquie/60b653bd2e8064.89871840-original.jpg','https://en.numista.com/catalogue/photos/turquie/60b653bd2e8064.89871840-180.jpg','rsirian1',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(6165,NULL,NULL,'Crescent and Star (National Emblem) above the value with a Rumi motif, the arabesques and geometric patterns of Islamic art, in the background and the date at the bottom',replace(replace('10\r\nKURUŞ\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/turquie/2934-original.jpg','https://en.numista.com/catalogue/photos/turquie/2934-180.jpg','AvrAlex (Belgorod, Russia)',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6258,'Hélder Batista',NULL,NULL,replace(replace('CONSELHO DA EUROPA MUNDO RURAL\r\n10$00','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3392-original.jpg','https://en.numista.com/catalogue/photos/portugal/3392-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6278,NULL,NULL,'Depiction of the Stupa at Swayambhunath.',replace(replace('श्री स्वयम्भू महाचैत्य\r\n५० पैसा','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Sri Swayambhu Mahachaitya (i.e. Great Stupa at Swayambhunath) \r\n50 Paisa','\r',char(13)),'\n',char(10)),'/photos/nepal/395-original.jpg','https://en.numista.com/catalogue/photos/nepal/395-180.jpg','Nestor',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6293,'Luc Luycx',NULL,'A map, next to the face value, shows the 15 states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/belgique/629783ab03c342.60282595-original.jpg','https://en.numista.com/catalogue/photos/belgique/629783ab03c342.60282595-180.jpg','Numista',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6298,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/belgique/61f93b029062a5.76364516-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f93b029062a5.76364516-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6307,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('50 LL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/605d6e3a934770.08230135-original.jpg','https://en.numista.com/catalogue/photos/belgique/605d6e3a934770.08230135-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6319,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','20 EURO CENT LL','[object Object]',NULL,NULL,'/photos/allemagne/2280-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2280-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6329,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/irlande/1055-original.jpg','https://en.numista.com/catalogue/photos/irlande/1055-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(6333,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','1 EURO LL','[object Object]',NULL,NULL,'/photos/irlande/6054c2f086ea62.02110006-original.jpg','https://en.numista.com/catalogue/photos/irlande/6054c2f086ea62.02110006-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6334,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','2 EURO LL','[object Object]',NULL,NULL,'/photos/irlande/428-original.jpg','https://en.numista.com/catalogue/photos/irlande/428-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(6350,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/grece/1819-original.jpg','https://en.numista.com/catalogue/photos/grece/1819-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6361,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/6272885e317c58.81031263-original.jpg','https://en.numista.com/catalogue/photos/espagne/6272885e317c58.81031263-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6373,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the nations of the European Union',replace(replace('20 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/3411-original.jpg','https://en.numista.com/catalogue/photos/france/3411-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(6374,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the nations of the European Union',replace(replace('50 \r\nLL\r\nEURO \r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/605d71971faa70.33889999-original.jpg','https://en.numista.com/catalogue/photos/france/605d71971faa70.33889999-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6376,'Luc Luycx',NULL,'A map of the European continent is represented on a dynamic canvas composed of the twelve stars of the European Union.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/612b61ba7b54d6.48806333-original.jpg','https://en.numista.com/catalogue/photos/france/612b61ba7b54d6.48806333-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6418,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/luxembourg/2091-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/2091-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6499,NULL,NULL,'Namban art. Depicts trade between Portugal and Japan, and Portugal acting as intermediaries in Asian trade.',replace(replace('南蛮文化\r\nARTE NAMBAN\r\n1543 · 1639\r\nISABEL C. - F. BRANCO\r\nINCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/2310-original.jpg','https://en.numista.com/catalogue/photos/portugal/2310-180.jpg',NULL,NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(6500,NULL,NULL,'To the right, busts of 4 young men sent to Europe between 1582 and 1590 as representants of the christianized Daimios (Lords) of Kiushu. Legend to the left and next to a Roman colmn, the same in Japanese characters',replace(replace('ENVIADOS DAIMIOS KIUSHU\r\n天\r\n正\r\n少 1582\r\n年 1590\r\n使\r\n節','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Tenshō boy envoys','/photos/portugal/3420-original.jpg','https://en.numista.com/catalogue/photos/portugal/3420-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(6612,'Matthew Dent',NULL,'Central section of the Royal Arms showing elements of all four quadrants.','FIVE PENCE','[object Object]',NULL,NULL,'/photos/royaume-uni/5536-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5536-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(6926,NULL,'Ernst Norin, Marita Norin','Three crowns superimposed by value divides mint official''s mark at left and the first letter in the surname of the Governor of the Central bank at right. Above a motto.',replace(replace('FÖR SVERIGE\r\n- I TIDEN\r\nE 10 H\r\nKRONOR','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('For Sweden\r\n- With the Time\r\nE 10 H\r\nKronor','\r',char(13)),'\n',char(10)),'/photos/suede/2001-original.jpg','https://en.numista.com/catalogue/photos/suede/2001-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7047,NULL,NULL,'Crescent and Star (National Emblem) at the top above the value, the Tree of Life at the right, and the date at the bottom',replace(replace('5\r\nKURUŞ\r\n2010','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/turquie/60b65167f11553.34262375-original.jpg','https://en.numista.com/catalogue/photos/turquie/60b65167f11553.34262375-180.jpg','rsirian1',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(7048,NULL,NULL,'Istanbul suspension bridge or the Bosphorus strait bridge that links Asia with Europe continent',replace(replace('50\r\nKURUŞ\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/turquie/1687-original.jpg','https://en.numista.com/catalogue/photos/turquie/1687-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(7130,'Hélder Batista',NULL,NULL,replace(replace('25 ABRIL 1984\r\nDEMOCRACIA\r\n० 25 ESCUDOS ०\r\nLIBERDADE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3386-original.jpg','https://en.numista.com/catalogue/photos/portugal/3386-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7184,'Manuel Martínez Tornero',NULL,'Madrid monument "Portadores de la antorcha" (Torch bearers)',replace(replace('MADRID 1992 CAPITAL EUROPEA DE LA CULTURA\r\nESPAÑA\r\nM\r\nPORTADORES\r\nDE LA\r\nANTORCHA\r\n200 PTAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/6252fcc628a063.56881635-original.jpg','https://en.numista.com/catalogue/photos/espagne/6252fcc628a063.56881635-180.jpg','Chilian',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7193,'Eloisa Byrne',NULL,'Portuguese boat, probably a carrack or nau, close to the Japanese coast on the left, drawn according to the style of Namban art. Around above, name in latin and Japanese caracters of the landing island, south of Kyushu.',replace(replace('種子島 * TANEGASHIMA \r\nINCM * 1543•1993 * E.BYRNE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63112709ea8152.94355727-original.jpg','https://en.numista.com/catalogue/photos/portugal/63112709ea8152.94355727-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(7337,'Dorita Castal-Branco',NULL,'Player running for attack',replace(replace('82\r\nincm 82\r\nDorita\r\nMUNDIAL HÓQUEI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3372-original.jpg','https://en.numista.com/catalogue/photos/portugal/3372-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7338,'Marcelino Norte de Almeida',NULL,replace(replace('Portrait of Alexandre Herculano\r\n(Portuguese writer and poet)','\r',char(13)),'\n',char(10)),replace(replace('CENTENÁRIO·DA·MORTE·DE·ALEXANDRE·HERCULANO *\r\n1877 1977\r\nincm 1977 \r\nM.NORTE SC VLP','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3364-original.jpg','https://en.numista.com/catalogue/photos/portugal/3364-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7398,'Christopher Ironside',NULL,'The badge of the Prince of Wales, a plume of three ostrich feathers enfiling a coronet of cross pattée and fleur de lys, dividing motto with legend above and denomination below.',replace(replace('TWO PENCE\r\nICH DIEN\r\n2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'I serve','/photos/royaume-uni/2465-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2465-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(7461,NULL,NULL,NULL,replace(replace('वागेश्वरी\r\nनेपाल रुपैयाँ\r\n१','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/nepal/1637-original.jpg','https://en.numista.com/catalogue/photos/nepal/1637-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7524,NULL,NULL,'Filigree design',NULL,NULL,NULL,NULL,'/photos/colombie/1281-original.jpg','https://en.numista.com/catalogue/photos/colombie/1281-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Reverse VALUES(7576,'Manuel Martínez Tornero',NULL,'Spike divides value','50 CTS','[object Object]',NULL,'50 Centimos','/photos/espagne/5592-original.jpg','https://en.numista.com/catalogue/photos/espagne/5592-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7639,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/4611-original.jpg','https://en.numista.com/catalogue/photos/portugal/4611-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Reverse VALUES(7872,NULL,NULL,replace(replace('"Shree Bhavani"\r\n"Pachis paisa" in Devanagari\r\nDenomination flanked by grain ears','\r',char(13)),'\n',char(10)),replace(replace('श्री भवानी \r\n२५\r\nपचीस पैसा','\r',char(13)),'\n',char(10)),'[object Object]',replace(replace('Shree Bhavani\r\n25\r\nPachis paisa','\r',char(13)),'\n',char(10)),replace(replace('Goddess Bhavani\r\n25\r\nTwenty-five paisa','\r',char(13)),'\n',char(10)),'/photos/nepal/1546-original.jpg','https://en.numista.com/catalogue/photos/nepal/1546-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(7905,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','1 EURO LL','[object Object]',NULL,NULL,'/photos/autriche/6214138c1e90f1.02130354-original.jpg','https://en.numista.com/catalogue/photos/autriche/6214138c1e90f1.02130354-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(8862,NULL,NULL,replace(replace('Dagger flanked by garlands from above. Legends in Devanagari :\r\n"Shree Shree Shree Gorkhanath" in segments outside circle;\r\n"Shree Bhavani" over garlands;\r\n"Ek Rupaiya" straight line; \r\n"Nepal" bottom semicircle.','\r',char(13)),'\n',char(10)),replace(replace('श्री श्री श्री गो र ख ना थ\r\nश्री भवानी \r\nएक रुपैयाँ \r\nनेपाल','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/nepal/1560-original.jpg','https://en.numista.com/catalogue/photos/nepal/1560-180.jpg','Alexandr Prokofyev',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(8896,NULL,NULL,'Numerical denomination and date surrounded by geometric patterns and Southern Cross.',replace(replace('1\r\nREAL\r\n2007','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bresil/6415b674c4fe24.52982882-original.jpg','https://en.numista.com/catalogue/photos/bresil/6415b674c4fe24.52982882-180.jpg','Rogbert',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(8925,'Alfonso Morales Muñoz',NULL,'Value within circle',replace(replace('ESPANA 1998\r\n200 PTAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/2319-original.jpg','https://en.numista.com/catalogue/photos/espagne/2319-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Reverse VALUES(9224,NULL,'Arnold Machin','Two Bonefish (Albula vulpes) above the denomination',replace(replace('FM\r\nTEN CENTS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/360-original.jpg','https://en.numista.com/catalogue/photos/bahamas/360-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9285,NULL,NULL,'Central value, lettering around outside, date below. Beaded border',replace(replace('REPUBLICA PORTUGUESA\r\n2\r\nCENTAVOS\r\n· 1921 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Portuguese Republic','/photos/portugal/2662-original.jpg','https://en.numista.com/catalogue/photos/portugal/2662-180.jpg',NULL,NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(9761,'Luc Luycx',NULL,'A map, next to the face value, shows the gathering of the fifteen states of the European Union','2 EURO LL','[object Object]',NULL,NULL,'/photos/autriche/612b591167a159.41914993-original.jpg','https://en.numista.com/catalogue/photos/autriche/612b591167a159.41914993-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(9826,'Dorita Castel-Branco',NULL,'Hockey player',replace(replace('82\r\nincm 82\r\nDorita\r\nMUNDIAL HÓQUEI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3837-original.jpg','https://en.numista.com/catalogue/photos/portugal/3837-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9828,'Dorita Castel-Branco',NULL,'Player dominating the ball with the stick',replace(replace('82\r\nincm 82\r\nDorita\r\nMUNDIAL HÓQUEI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3368-original.jpg','https://en.numista.com/catalogue/photos/portugal/3368-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9831,'Euclides Vaz',NULL,replace(replace('Cod fish, F.A.O. and date.\r\n Atlantic cod (Gadus morhua) Fish.','\r',char(13)),'\n',char(10)),replace(replace('ALIMENTOS PARA TODOS\r\nFAO\r\n1983\r\nincm','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3378-original.jpg','https://en.numista.com/catalogue/photos/portugal/3378-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9834,'António Marinho',NULL,'Head left, map, cross, dates and 1/2 star design',replace(replace('COLOMBO E PORTUGAL\r\n1476\r\n1485','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Colombo of Portugal\r\n1476\r\n1485','\r',char(13)),'\n',char(10)),'/photos/portugal/3412-original.jpg','https://en.numista.com/catalogue/photos/portugal/3412-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9894,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','1 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/6054c664151d05.88940419-original.jpg','https://en.numista.com/catalogue/photos/portugal/6054c664151d05.88940419-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(9895,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union','10 EURO CENT LL','[object Object]',NULL,NULL,'/photos/portugal/3482-original.jpg','https://en.numista.com/catalogue/photos/portugal/3482-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(9896,'Luc Luycx',NULL,'A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union',replace(replace('20\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3484-original.jpg','https://en.numista.com/catalogue/photos/portugal/3484-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(10004,'Supab Aun-aree',NULL,'Temple',replace(replace('ประเทศไทย พ.ศ.๒๕๓๓\r\n๑ 1\r\nสตางค์','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/thailande/2099-original.jpg','https://en.numista.com/catalogue/photos/thailande/2099-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(10126,'Marcelino Norte de Almeida',NULL,'Portrait of Alexandre Herculano',replace(replace('CENTENÁRIO·DA·MORTE·DE·ALEXANDRE·HERCULANO * \r\n1877 1977 \r\nincm 1977 \r\nM.NORTE SC VLP','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3362-original.jpg','https://en.numista.com/catalogue/photos/portugal/3362-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(10288,NULL,NULL,'Olympic rings below Sydney Opera House',replace(replace('JOGOS OLIMPICOS\r\nSIDNEY 2000','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5dd80d9c115.01056289-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5dd80d9c115.01056289-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Reverse VALUES(10854,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia',replace(replace('5 \r\nEURO \r\nCENT \r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/61ff754d067f05.21439227-original.jpg','https://en.numista.com/catalogue/photos/espagne/61ff754d067f05.21439227-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(10856,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','1 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/6277dca7361d70.47033965-original.jpg','https://en.numista.com/catalogue/photos/espagne/6277dca7361d70.47033965-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(10857,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/62135350332902.43919305-original.jpg','https://en.numista.com/catalogue/photos/espagne/62135350332902.43919305-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(10860,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','50 EURO CENT LL','[object Object]',NULL,NULL,'/photos/espagne/605d7eb9e2a500.98959439-original.jpg','https://en.numista.com/catalogue/photos/espagne/605d7eb9e2a500.98959439-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(10862,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/espagne/62724486980840.75437656-original.jpg','https://en.numista.com/catalogue/photos/espagne/62724486980840.75437656-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(11526,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/5676-original.jpg','https://en.numista.com/catalogue/photos/france/5676-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(11635,'João Duarte',NULL,'Jig-saw, the symbol of UN and 50',replace(replace('50\r\n1945-1995\r\nJ.DUARTE INCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3426-original.jpg','https://en.numista.com/catalogue/photos/portugal/3426-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(11691,'Isabel Carriço, Fernando Branco',NULL,NULL,replace(replace('1532 - Pe. LUIS FROIS - 1597\r\nHISTORIA DE JAPAM\r\nISABEL C. F.BRANCO\r\nINCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/4757-original.jpg','https://en.numista.com/catalogue/photos/portugal/4757-180.jpg','Rui-Manuel',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(11695,'Isabel Carriço, Fernando Branco',NULL,'Vasco da Gama ship and its name, making sail to the right where shown the coast of India north of Calicut from the map of the Atlas Lopo Homem-Reinels of 1519. 1498 is the year of arrival in India.',replace(replace('ISABEL C.-F.BRANCO INCM\r\nINDIA - 1498 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/2308-original.jpg','https://en.numista.com/catalogue/photos/portugal/2308-180.jpg',NULL,NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(11952,'Marcelino Norte de Almeida',NULL,'Value',replace(replace('1\r\nESCUDO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3370-original.jpg','https://en.numista.com/catalogue/photos/portugal/3370-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(13034,'A.Marinho',NULL,NULL,replace(replace('MORTE NO MAR\r\nA. MARINHO INCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3446-original.jpg','https://en.numista.com/catalogue/photos/portugal/3446-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(13038,'Eloísa Byrne',NULL,'Portrait in armor with a sword in his right hand and an astrolabe in the left hand in recognition of his talents as military and cartographer. His name above and dates of birth and death. Beaded circle around.',replace(replace('DUARTE PACHECO PEREIRA\r\n1460\r\n1533\r\nINCM\r\nE.BYRNE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3450-original.jpg','https://en.numista.com/catalogue/photos/portugal/3450-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(13820,NULL,NULL,'Denomination within inner circle, motto between outer beaded circle and inner circle, date below.',replace(replace('LA UNION ES LA FUERZA\r\n2\r\nBOLIVIANOS\r\n· 2008 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Unity is strength','/photos/bolivie/1097-original.jpg','https://en.numista.com/catalogue/photos/bolivie/1097-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(15296,'Arnold Machin',NULL,'Bahamian sailboat, value above','TWENTYFIVE CENTS','[object Object]',NULL,NULL,'/photos/bahamas/689-original.jpg','https://en.numista.com/catalogue/photos/bahamas/689-180.jpg','fryant',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(15575,NULL,NULL,replace(replace('Sri Swayambunath Mahachaitya''s (Buddhist Temple) Dome/tower\r\nBelow : A type of Prayer bells','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,replace(replace('Sri Swayambunath Mahachaitya \r\n50 Paisa','\r',char(13)),'\n',char(10)),'/photos/nepal/961-original.jpg','https://en.numista.com/catalogue/photos/nepal/961-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(16586,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.','2 EURO CENT LL','[object Object]',NULL,NULL,'/photos/estonie/564-original.jpg','https://en.numista.com/catalogue/photos/estonie/564-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(16588,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia','5 EURO CENT LL','[object Object]',NULL,NULL,'/photos/estonie/566-original.jpg','https://en.numista.com/catalogue/photos/estonie/566-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(18054,NULL,NULL,'Face value within inner circle, motto between beaded outer circle and inner circle, date below.',replace(replace('LA UNION ES LA FUERZA\r\n2\r\nBOLIVIANOS\r\n2010','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Unity is strength\r\n2\r\nBolivianos \r\n2010','\r',char(13)),'\n',char(10)),'/photos/bolivie/61fbd8ce4fe5d9.40981720-original.jpg','https://en.numista.com/catalogue/photos/bolivie/61fbd8ce4fe5d9.40981720-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(18666,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/628c807ec8e8f6.14974412-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628c807ec8e8f6.14974412-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(19979,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/espagne/627f67817b0652.97085620-original.jpg','https://en.numista.com/catalogue/photos/espagne/627f67817b0652.97085620-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(20700,'Christopher Ironside',NULL,'A figure of Britannia seated beside a lion, with a shield resting against her right side, holding a trident in her right hand and an olive branch in her left, denomination below and legend above.',replace(replace('FIFTY PENCE\r\n50','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/5f816920d120f9.74858211-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f816920d120f9.74858211-180.jpg','squivvia',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(20892,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/italie/61c7465d0fa1c1.18739146-original.jpg','https://en.numista.com/catalogue/photos/italie/61c7465d0fa1c1.18739146-180.jpg','Numista',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(22038,NULL,NULL,'Arun Temple (Temple of the Dawn), Bangkok',replace(replace('ประเทศไทย ⠂⠴ พ.ศ.๒๕๕๕\r\n๑๐ บาท 10','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Thailand 10 BE2555\r\n10 Baht 10','\r',char(13)),'\n',char(10)),'/photos/thailande/1885-original.jpg','https://en.numista.com/catalogue/photos/thailande/1885-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(22544,NULL,NULL,'Swayambhunath temple',NULL,NULL,NULL,NULL,'/photos/nepal/397-original.jpg','https://en.numista.com/catalogue/photos/nepal/397-180.jpg','Ben Dettweiler',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(22652,NULL,NULL,'Shell emblem (scallop)','SHELL','[object Object]',NULL,NULL,'/photos/france/62c7ffab925d70.22265296-original.jpg','https://en.numista.com/catalogue/photos/france/62c7ffab925d70.22265296-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(24276,NULL,NULL,'Shell emblem (scallop)','SHELL','[object Object]',NULL,NULL,'/photos/france/62c801bceb85d5.57922851-original.jpg','https://en.numista.com/catalogue/photos/france/62c801bceb85d5.57922851-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(25746,'Matthew Dent',NULL,'Upper left section of the Royal Shield of Arms, denomination to upper segment.','TEN PENCE','[object Object]',NULL,NULL,'/photos/royaume-uni/5542-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5542-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(25766,'Matthew Dent',NULL,'Centre section of the Royal Shield of Arms, denomination central.','FIVE PENCE','[object Object]',NULL,NULL,'/photos/royaume-uni/5538-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5538-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(26208,NULL,NULL,'Denomination Flanked by Wheat ears',NULL,NULL,NULL,'Sri Bhavani','/photos/nepal/959-original.jpg','https://en.numista.com/catalogue/photos/nepal/959-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(26791,NULL,NULL,'Janaki or Sita Mandir or Temple',NULL,NULL,NULL,NULL,'/photos/nepal/957-original.jpg','https://en.numista.com/catalogue/photos/nepal/957-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(26792,NULL,NULL,'Pashupatinath temple, Kathmandu',replace(replace('श्री पशुपतिनाथ \r\nनेपाल रुपैयाँ\r\n५','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Shree Pashupatinath \r\nNepal\r\n5\r\nRupee','\r',char(13)),'\n',char(10)),'/photos/nepal/951-original.jpg','https://en.numista.com/catalogue/photos/nepal/951-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(27352,NULL,NULL,'Hassan II Mosque, value on the right above year.',replace(replace('5\r\nخمسة دراهم','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('5\r\nFive Dirhams','\r',char(13)),'\n',char(10)),'/photos/maroc/1347-original.jpg','https://en.numista.com/catalogue/photos/maroc/1347-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(27395,NULL,NULL,'Boumalne-du-Dades Fortress, palm tree at left, large value at right.',replace(replace('10\r\n2016 - 1437\r\n10\r\nعشرة دراهم','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/maroc/1343-original.jpg','https://en.numista.com/catalogue/photos/maroc/1343-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(27528,NULL,NULL,'Value within the Logo of Bicentenario created by Cristina Fernández for the celebration of the Bicentenary of the Revolution of May in 2010.',replace(replace('2\r\nPESOS\r\n2011','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/argentine/1073-original.jpg','https://en.numista.com/catalogue/photos/argentine/1073-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(28191,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/autriche/2666-original.jpg','https://en.numista.com/catalogue/photos/autriche/2666-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(28330,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/4096-original.jpg','https://en.numista.com/catalogue/photos/france/4096-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(28608,'Petar Stoikov, Vladimir Yossifov',NULL,'Denomination above date, half-circle of 12 stars across the top',replace(replace('2\r\n2000\r\nСТОТИНКИ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2\r\n2000\r\nStotinki','\r',char(13)),'\n',char(10)),'/photos/bulgarie/1520-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1520-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(28610,'Petar Stoikov, Vladimir Yossifov',NULL,'Denomination above date, half circle of 12 stars across top',replace(replace('1\r\n2000\r\nСТОТИНКА','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1\r\n2000\r\nStotinka','\r',char(13)),'\n',char(10)),'/photos/bulgarie/1507-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1507-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(28611,'Petar Stoikov, Vladimir Yossifov',NULL,'Denomination above date, half circle of 12 stars across top',replace(replace('5\r\n2000\r\nСТОТИНКИ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('5\r\n2000\r\nStotinki','\r',char(13)),'\n',char(10)),'/photos/bulgarie/1538-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1538-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(32604,NULL,'Robert-Ralph Carmichael','Loon with security feature above, with the country name above and the denomination at the bottom',replace(replace('CANADA\r\nDOLLAR\r\nRRC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/canada/3229-original.jpg','https://en.numista.com/catalogue/photos/canada/3229-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(36732,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231d63cadb6.41444147-original.jpg','https://en.numista.com/catalogue/photos/chine/606231d63cadb6.41444147-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36733,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231d892b9d7.50822137-original.jpg','https://en.numista.com/catalogue/photos/chine/606231d892b9d7.50822137-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36734,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231dad59eb7.11389822-original.jpg','https://en.numista.com/catalogue/photos/chine/606231dad59eb7.11389822-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36735,NULL,NULL,'Dragon',replace(replace('清大\r\n帝皇大二十','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/chine/606231dd3aa5a8.07528815-original.jpg','https://en.numista.com/catalogue/photos/chine/606231dd3aa5a8.07528815-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36736,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231df9b4810.17354627-original.jpg','https://en.numista.com/catalogue/photos/chine/606231df9b4810.17354627-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36737,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231e1dba379.03535438-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e1dba379.03535438-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36738,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231e4490b12.02711543-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e4490b12.02711543-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36739,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231e6762cb2.91339870-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e6762cb2.91339870-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36740,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231e8bbeac0.83670836-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e8bbeac0.83670836-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36741,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231eb1f5264.67992186-original.jpg','https://en.numista.com/catalogue/photos/chine/606231eb1f5264.67992186-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36742,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231ed5ede24.41491594-original.jpg','https://en.numista.com/catalogue/photos/chine/606231ed5ede24.41491594-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(36743,NULL,NULL,'Dragon',NULL,NULL,NULL,NULL,'/photos/chine/606231efdc5795.96381491-original.jpg','https://en.numista.com/catalogue/photos/chine/606231efdc5795.96381491-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(40522,'Geoffrey Colley',NULL,'Dallah (traditional Arabic coffee pot) above dates','١٤٣٥-٢٠١٤','[object Object]',NULL,'2014-1435','/photos/emirats_arabes_unis/283-original.jpg','https://en.numista.com/catalogue/photos/emirats_arabes_unis/283-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(41904,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/5146-original.jpg','https://en.numista.com/catalogue/photos/france/5146-180.jpg','bofried',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(42976,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/espagne/5fcdb9bc8f30e2.24815292-original.jpg','https://en.numista.com/catalogue/photos/espagne/5fcdb9bc8f30e2.24815292-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(49339,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/belgique/2321-original.jpg','https://en.numista.com/catalogue/photos/belgique/2321-180.jpg','kevin4430',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(54956,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders',replace(replace('10 EURO \r\nCENT LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/pays-bas/63c250f8b32813.01251747-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/63c250f8b32813.01251747-180.jpg','brismike',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(56030,'Luc Luycx',NULL,'A globe, next to the face value, shows Europe in relation to Africa and Asia.',replace(replace('EURO\r\nCENT\r\n1 LL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/61f94d9a944ae6.03694853-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f94d9a944ae6.03694853-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(56035,'Luc Luycx',NULL,'Relief map of Western Europe, stars and value',replace(replace('50\r\nLL\r\nEURO\r\nCENT','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/605d6f24db4298.62700064-original.jpg','https://en.numista.com/catalogue/photos/belgique/605d6f24db4298.62700064-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(61644,NULL,'Ewa Tyc-Karpińska','Five oak leaves below denomination.','5 GROSZY','[object Object]',NULL,NULL,'/photos/pologne/6227-original.jpg','https://en.numista.com/catalogue/photos/pologne/6227-180.jpg','Narodowy Bank Polski','http://www.nbp.pl',NULL,NULL);
INSERT INTO Reverse VALUES(67631,'Luc Luycx',NULL,replace(replace('Left: The numeral 1 \r\nRight: The coin shows EURO superimposed on Europe Map with 6 Radiating stars each on either side.','\r',char(13)),'\n',char(10)),replace(replace('1 EURO \r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/lituanie/882-original.jpg','https://en.numista.com/catalogue/photos/lituanie/882-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(68395,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders',replace(replace('2 EURO \r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/andorre/468-original.jpg','https://en.numista.com/catalogue/photos/andorre/468-180.jpg','kevin4430',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(69263,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/628dc1fa315a23.95710021-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628dc1fa315a23.95710021-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(69264,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/628c85621a4388.83072341-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628c85621a4388.83072341-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(70547,NULL,'Matthew Dent','Centre section of the Royal Shield, denomination central.','FIVE PENCE','[object Object]',NULL,NULL,'/photos/royaume-uni/5f25a7043cf6c9.88081525-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f25a7043cf6c9.88081525-180.jpg','The Royal Mint, 2020',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(81058,'Luc Luycx',NULL,'The face value, next to a map showing the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/5fcdbd597648b2.36847417-original.jpg','https://en.numista.com/catalogue/photos/espagne/5fcdbd597648b2.36847417-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(82237,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/7446-original.jpg','https://en.numista.com/catalogue/photos/france/7446-180.jpg','Iwantallcoins',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(84061,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/6280886fb0c5d0.72926579-original.jpg','https://en.numista.com/catalogue/photos/portugal/6280886fb0c5d0.72926579-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(87329,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/62807eb2b0d045.00245162-original.jpg','https://en.numista.com/catalogue/photos/portugal/62807eb2b0d045.00245162-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(88649,'Ernst Nordin',NULL,'Stylized solar corona, denomination with three crowns above, initials on the sides.',replace(replace('S SI\r\nSVERIGE\r\n1\r\nEN KRONA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Sweden\r\nOne Krona','\r',char(13)),'\n',char(10)),'/photos/suede/2790-original.jpg','https://en.numista.com/catalogue/photos/suede/2790-180.jpg','Ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(89870,NULL,NULL,'It is seen in the nucleus, on the left, the face value and the word reading "PESOS" vertically. Closes the composition of a stylization of the sun of epaulet military uniform belonging to Gral. Don Jose de San Martin. In the ring, the arc top, the motto "IN UNION AND FREEDOM", used since the first patriotic coins minted by the Assembly of year XIII during the War of Independence. On the lower arch, the year of mintage "2016" to right a milled edge with 8 points.',replace(replace('EN UNION Y LIBERTAD \r\n2 PESOS\r\n2016','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('IN UNION AND FREEDOM\r\n2 PESOS\r\n2016','\r',char(13)),'\n',char(10)),'/photos/argentine/1260-original.jpg','https://en.numista.com/catalogue/photos/argentine/1260-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(91431,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/5fc9e406be0ca1.75773125-original.jpg','https://en.numista.com/catalogue/photos/france/5fc9e406be0ca1.75773125-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(100658,NULL,'David Pearce','An English rose, Welsh leek, Scottish thistle and Northern Irish shamrock emerging from one stem within a royal coronet, with the minting year as incuse micro-legend around the rim.',replace(replace('— 2017 — — 2017 —\r\nD P\r\nONE POUND','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/royaume-uni/639dfa2407d068.39111385-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/639dfa2407d068.39111385-180.jpg','The Royal Mint, 2017',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(102445,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/allemagne/5fc9e4ff7431a2.70955033-original.jpg','https://en.numista.com/catalogue/photos/allemagne/5fc9e4ff7431a2.70955033-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(105040,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/portugal/628067f80bff99.75617345-original.jpg','https://en.numista.com/catalogue/photos/portugal/628067f80bff99.75617345-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(122665,NULL,NULL,'Large 250 within elliptical border design, bank name ''BANQUE DU LIBAN'', denomination, and year of issue.',replace(replace('2014\r\n250 LIVRES\r\nBANQUE DU LIBAN','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('250 Pounds\nBank of Lebanon','\n',char(10)),'/photos/liban/313-original.jpg','https://en.numista.com/catalogue/photos/liban/313-180.jpg','Doc_man',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(133815,NULL,NULL,'Value.',replace(replace('10 \r\nBANI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/roumanie/5f6ba0625b9a02.18853218-original.jpg','https://en.numista.com/catalogue/photos/roumanie/5f6ba0625b9a02.18853218-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(133816,NULL,NULL,'Value.',replace(replace('50 \r\nBANI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/roumanie/6264503def5718.15541684-original.jpg','https://en.numista.com/catalogue/photos/roumanie/6264503def5718.15541684-180.jpg','Máté Bikfalvi',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(134685,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/11132-original.jpg','https://en.numista.com/catalogue/photos/france/11132-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(157845,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/6280854f9b0509.97938157-original.jpg','https://en.numista.com/catalogue/photos/portugal/6280854f9b0509.97938157-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(192990,'Luc Luycx',NULL,'A map of the European continent is represented on a dynamic canvas composed of the twelve stars of the European Union.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/5e3c1809885d08.72987161-original.jpg','https://en.numista.com/catalogue/photos/france/5e3c1809885d08.72987161-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(201624,NULL,NULL,'A portrait of Sir Winston Churchill at centre, at left a view of Westminster, home of the UK government, and the Elizabeth Tower (containing Big Ben) from London’s South Bank, looking across Westminster Bridge. Part of motto on the Nobel Prize in literature "Inventas vitam iuvat excoluisse per artes" with meaning "It is beneficial to have improved (human) life through discovered arts" depicts on medal above the building.',replace(replace('5 Bank of England £ 5\r\n1953 NOBEL PRIZE IN LITERATURE \r\nAWARDED TO SIR WINSTON CHURCHILL\r\nTAS·VITAM·IUVAT· EXCOLLUISE PER\r\nBOE\r\nWinston. Churchill\r\nFive Pounds \r\nI have nothing to offer but blood, toil, tears and sweat\r\nSir Winston Churchill 1874-1965\r\n© THE GOVERNOR AND COMPANY OF THE BANK OF ENGLAND 2015','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/england/5e967991a72138.74075379-original.jpg','https://en.numista.com/catalogue/photos/england/5e967991a72138.74075379-180.jpg','BCNumismatics',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(201676,NULL,'Kiril Gogov','А facsimile of the Zografou draft of the “Historiae Sclavo-Bulgaricus”.',replace(replace('За подправка виновните се наказват съгласно закона\r\nДва Лева\r\nБългарска Народна Банка','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('For forgery the guilty are punished according to the law\r\nTwo Leva\r\nBulgarian National Bank','\r',char(13)),'\n',char(10)),'/photos/bulgarie/63ee095888bc78.86268486-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/63ee095888bc78.86268486-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(202243,NULL,NULL,'Floatplane with Belém tower at the back.',replace(replace('Banco de Portugal\r\n1922- GAGO COUTINHO INICIA A NAVEGAÇÃO AÉREA ASTRONÓMICA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Bank of Portugal\r\n1922- Gago Coutinho starts the astronomical aerial navigation','\r',char(13)),'\n',char(10)),'/photos/portugal/62736731988983.67513316-original.jpg','https://en.numista.com/catalogue/photos/portugal/62736731988983.67513316-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(202279,NULL,NULL,replace(replace('Tan-Tan Moussem, an annual gathering of nomadic tribes of Southern Morocco. Moroccan tent in a desert during Tan-Tan Moussem.\r\nWind turbines, wind farm, symbolizing renewable energy. Berber nomads riding on camels. Ornament inspired from Moroccan carpets.','\r',char(13)),'\n',char(10)),replace(replace('100\r\nBank Al-Maghrib\r\n100 Dirhams','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/maroc/5e961f350ae720.65044848-original.jpg','https://en.numista.com/catalogue/photos/maroc/5e961f350ae720.65044848-180.jpg','Pedro Branco',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(202287,NULL,NULL,replace(replace('Train crossing the new Moulay-Hassan II Bridge connecting cities of Rabat and Salé across the Bouregreg river in Rabat. \r\n\r\nThe Hassan II Mosque is a mosque in Casablanca, Morocco. It is the second largest functioning mosque in Africa and is the 7th largest in the world. Its minaret is the world''s second tallest minaret at 210 metres (689 ft). A maximum of 105,000 worshippers can gather together for prayer: 25,000 inside the mosque hall and another 80,000 on the mosque''s outside ground.\r\n\r\nWallpaper from Hassan II Mosque. Ornament from Moroccan carpets.','\r',char(13)),'\n',char(10)),replace(replace('20\r\nBank Al-Maghrib\r\n20 Dirhams','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/maroc/63df88843b37e8.83552016-original.jpg','https://en.numista.com/catalogue/photos/maroc/63df88843b37e8.83552016-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(202397,'Bureau of Engraving, Printing',NULL,'Lincoln Memorial at center.',replace(replace('THE UNITED STATES OF AMERICA\r\nIN GOD WE TRUST\r\nFIVE DOLLARS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/5e99c87c615983.56245819-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/5e99c87c615983.56245819-180.jpg','glorkar',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(202523,NULL,NULL,'Bust of Jane Austen at centre, image of tower over clear window at right centre.',replace(replace('Bank of England\r\nTen Pounds\r\nI declare after all there is no enjoyment like reading','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/england/641809f94facd5.05706245-original.jpg','https://en.numista.com/catalogue/photos/england/641809f94facd5.05706245-180.jpg','GarlicMonster',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Reverse VALUES(206382,NULL,NULL,'Portrait of Ord. Prof. Dr. Aydın Sayılı (1913-1993), diagrams of solar system, atom, ancient cave and a left-handed Z-DNA helix',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\nBEŞ TÜRK LİRASI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Five Turkish Lira','/photos/turquie/6299fbf4d1c841.09987623-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fbf4d1c841.09987623-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(206385,NULL,NULL,'Portrait of Ord. Prof. Dr. Cahit Arf, Arf invariant, arithmetic series, abacus, binary',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\nON TÜRK LİRASI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Ten Turkish Lira','/photos/turquie/6299fc0e798573.49030163-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fc0e798573.49030163-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(206387,NULL,NULL,'Architect Mimar Kemaleddin, Gazi University main building, aqueduct, circular motif and cube-globe-cylinder symbolizing architecture',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\nYİRMİ TÜRK LİRASI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Twenty Turkish Lira','/photos/turquie/6299fc2623c180.23170639-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fc2623c180.23170639-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(258832,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5fe1bc0a2c1ce7.56425085-original.jpg','https://en.numista.com/catalogue/photos/portugal/5fe1bc0a2c1ce7.56425085-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(264789,'Luc Luycx',NULL,replace(replace('A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean.\r\n\r\n12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.','\r',char(13)),'\n',char(10)),replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/602fca95f2e0e4.04429380-original.jpg','https://en.numista.com/catalogue/photos/espagne/602fca95f2e0e4.04429380-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(274850,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/629fa708c2d7c0.14966277-original.jpg','https://en.numista.com/catalogue/photos/portugal/629fa708c2d7c0.14966277-180.jpg','adinumismaitcs',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(275891,'Luc Luycx',NULL,replace(replace('A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean.\r\n12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.','\r',char(13)),'\n',char(10)),replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/62ba04a9235d29.16063723-original.jpg','https://en.numista.com/catalogue/photos/france/62ba04a9235d29.16063723-180.jpg','adinumismatics',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(302331,NULL,'Kiril Gogov','Parts of paintings by Ivan Milev.',replace(replace('Пет Лева\r\nБългарска Народна Банка\r\nЗа подправка виновните се наказват съгласно закона','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Five Leva\r\nBulgarian National Bank\r\nFor forgery the guilty are punished according to the law','\r',char(13)),'\n',char(10)),'/photos/bulgarie/62349fe131ff32.07951497-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/62349fe131ff32.07951497-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Reverse VALUES(314709,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/61c832c12f0434.83857155-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61c832c12f0434.83857155-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(314962,'Luc Luycx',NULL,'A map, next to the face value, shows the European continent without borders','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/630397ad6c2075.44691008-original.jpg','https://en.numista.com/catalogue/photos/france/630397ad6c2075.44691008-180.jpg','adinumismatics',NULL,NULL,NULL);
INSERT INTO Reverse VALUES(318748,NULL,'Luc Luycx',replace(replace('A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean.\r\n12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.','\r',char(13)),'\n',char(10)),'2 EURO LL','[object Object]',NULL,NULL,'/photos/france/61f5412773e5d1.03753151-original.jpg','https://en.numista.com/catalogue/photos/france/61f5412773e5d1.03753151-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(319351,NULL,NULL,replace(replace('Nepal''s updated map with outline of the states.\r\n2 bump dots for visually impaired people.\r\nAt the top value in English and at the bottom value in Nepali','\r',char(13)),'\n',char(10)),replace(replace('Rs. Two\r\n२ रुपैयाँ','\r',char(13)),'\n',char(10)),'[object Object], [object Object], [object Object]',NULL,'Rs. 2','/photos/nepal/61fcca3e967fc3.60164369-original.jpg','https://en.numista.com/catalogue/photos/nepal/61fcca3e967fc3.60164369-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Reverse VALUES(321378,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/62ff620a5be5e0.99498485-original.jpg','https://en.numista.com/catalogue/photos/portugal/62ff620a5be5e0.99498485-180.jpg','Ponpandi Perumal',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Reverse VALUES(331445,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/italie/62b5e728810591.61058485-original.jpg','https://en.numista.com/catalogue/photos/italie/62b5e728810591.61058485-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(338338,NULL,'Luc Luycx','Denomination and a map of Europe','1 EURO LL','[object Object]',NULL,NULL,'/photos/croatie/64172b03abca26.55758076-original.jpg','https://en.numista.com/catalogue/photos/croatie/64172b03abca26.55758076-180.jpg','papilio',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(338339,NULL,'Luc Luycx','Denomination and a map of Europe','2 EURO LL','[object Object]',NULL,NULL,'/photos/croatie/641729ac8c3e96.99099112-original.jpg','https://en.numista.com/catalogue/photos/croatie/641729ac8c3e96.99099112-180.jpg','papilio',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(368994,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.',replace(replace('2 EURO\r\nLL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/64f2077e61c953.21717500-original.jpg','https://en.numista.com/catalogue/photos/portugal/64f2077e61c953.21717500-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(369820,NULL,'Luc Luycx','A geographical map of Western Europe spans the outer ring and inner core on the right side of the coin. The inscription 2 EURO is superimposed over the map of Europe, with the numeral “2” located in an open field representing the eastern Atlantic Ocean. 12 stars are located on the right side of the outer ring, with six stars atop the map of Europe and six stars below it; six vertical stripes cut across the inner core of the coin, visually connecting the upper and lower star segments.','2 EURO LL','[object Object]',NULL,NULL,'/photos/france/649a7f440ac669.81627835-original.jpg','https://en.numista.com/catalogue/photos/france/649a7f440ac669.81627835-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Reverse VALUES(377368,NULL,'Emanuel Otto Hahn','A caribou is accompanied with the face value and surrounded with the inscription "CANADA" and the date.',replace(replace('CANADA 2003\r\n25\r\nCents\r\nH','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/canada/64f88fc561c6b4.80986911-original.jpg','https://en.numista.com/catalogue/photos/canada/64f88fc561c6b4.80986911-180.jpg','Monéphil',NULL,NULL,NULL);
CREATE TABLE Obverse (
id INTEGER NOT NULL PRIMARY KEY,
engravers TEXT,
designers TEXT,
description TEXT,
lettering TEXT,
lettering_scripts TEXT,
unabridged_legend TEXT,
lettering_translation TEXT,
picture TEXT,
thumbnail TEXT,
picture_copyright TEXT,
picture_copyright_url TEXT,
picture_license_name TEXT,
picture_license_url TEXT
);
INSERT INTO Obverse VALUES(3,'Henri Lagriffoul',NULL,'Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering.',replace(replace('REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'French Republic','/photos/france/5f9dd206551cb6.99630125-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd206551cb6.99630125-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(4,'Henri Lagriffoul',NULL,'Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering: "REPUBLIQUE FRANÇAISE" (French Republic)',replace(replace('REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'French Republic','/photos/france/5f9dd2c65f7916.51386836-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd2c65f7916.51386836-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5,'Louis-Oscar Roty',NULL,'The Sower, designed by Oscar Roty in 1900: a national emblem of the French Republic',replace(replace('REPUBLIQUE FRANÇAISE\r\nO. Roty','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'French Republic','/photos/france/5607-original.jpg','https://en.numista.com/catalogue/photos/france/5607-180.jpg','HOOK',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(8,'Louis-Oscar Roty',NULL,'The Sower, designed by Oscar Roty in 1900, a national emblem of the French Republic',replace(replace('REPUBLIQUE FRANÇAISE\r\nO. Roty','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'French Republic.','/photos/france/5f9dd414800e77.93186810-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd414800e77.93186810-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9,'Jean Luc Maréchal',NULL,'A representation of the Génie de la Liberté (the Spirit of Freedom, approximately), a sculpture located at the top of the "July Column" in Paris, is flanked with the letters R and F, the initials of the French Republic. The rim constitutes a striated geometrical pattern.','R F','[object Object]','République Française','French Republic','/photos/france/5f9dd4986e4891.47003450-original.jpg','https://en.numista.com/catalogue/photos/france/5f9dd4986e4891.47003450-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(12,'Émile Rousseau',NULL,'A portrait in right profile of Charles de Gaulle is surrounded with the inscription "RÉPUBLIQUE FRANÇAISE" (French Republic)',replace(replace('CHARLES DE GAULLE\r\nER\r\nRÉPUBLIQUE FRANÇAISE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/613499dd658130.74509920-original.jpg','https://en.numista.com/catalogue/photos/france/613499dd658130.74509920-180.jpg','CGB','http://www.cgb.fr',NULL,NULL);
INSERT INTO Obverse VALUES(42,'Victor David Brenner',NULL,replace(replace('The portrait of Abraham Lincoln, the 16th President of the United States from 1861 to 1865, facing right accompanied by the lettering "LIBERTY" and the motto "IN GOD WE TRUST".\r\n\r\nNOTE: Cents dated 1968-1974 bearing an "S" mintmark are most likely not proofs. The San Francisco Mint struck this coin for circulation as well as all proofs for this type. "S" cents dated 1975 and later are always proofs.','\r',char(13)),'\n',char(10)),replace(replace('IN GOD WE TRUST\r\nLIBERTY\r\n1978\r\nS\r\nV D B','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/60a7cd50afd856.85546909-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/60a7cd50afd856.85546909-180.jpg','Pinheiro, Rafael',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(43,'Victor David Brenner',NULL,'The portrait in right profile of Abraham Lincoln, the 16th President of the United States from 1861 to 1865, is accompanied with the lettering "LIBERTY" and the motto "IN GOD WE TRUST".',replace(replace('IN GOD WE TRUST\r\nLIBERTY\r\n2007\r\nVDB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/627fa60e7729f9.86339073-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/627fa60e7729f9.86339073-180.jpg','Nyxain',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(44,'Felix Schlag',NULL,'The portrait of Thomas Jefferson, the 3rd president of the U.S. from 1801 to 1809.',replace(replace('IN GOD WE TRUST\r\nLIBERTY * 1978 S\r\nFS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/6214498a93dd11.94704126-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/6214498a93dd11.94704126-180.jpg','EZE711CBA',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(53,'John R. Sinnock',NULL,'The portrait of Franklin D. Roosevelt facing left, the 32nd President of the United States from 1933 to his death in 1945, accompanied by the motto: "IN GOD WE TRUST" and surrounded with the lettering "LIBERTY".',replace(replace('LIBERTY \r\nIN GOD WE TRUST \r\n2017 P\r\nJS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/5226-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/5226-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(55,'John Flanagan',NULL,replace(replace('The portrait in left profile of George Washington, the first President of the United States from 1789 to 1797, is accompanied with the motto: "IN GOD WE TRUST" and surrounded with the lettering: "LIBERTY"\r\n\r\nNOTE: KM#164a reprised after 1977 as KM#A164a','\r',char(13)),'\n',char(10)),replace(replace('LIBERTY \r\nIN GOD WE TRUST\r\nJF \r\n1998 D','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/2859-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/2859-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(57,'Josef Kaiser',NULL,'A gentian, which symbolizes a duty to the environment encircled by the face value, heraldic hatchings representing the Austrian flag and twelve five-pointed stars representing the European Union around the rim','EIN EURO CENT 2007','[object Object]',NULL,NULL,'/photos/autriche/62ca843026f837.34117868-original.jpg','https://en.numista.com/catalogue/photos/autriche/62ca843026f837.34117868-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(58,'Josef Kaiser',NULL,'An edelweiss, symbolising a duty to the environment, is encircled by the face value, heraldic hatchings representing the Austrian flag and the twelve stars of Europe','ZWEI EURO CENT 2013','[object Object]',NULL,'TWO EURO CENT 2013','/photos/autriche/621339f8972019.30788998-original.jpg','https://en.numista.com/catalogue/photos/autriche/621339f8972019.30788998-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(73,'Jan Alfons Keustermans',NULL,'The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital "A" with the Roman numeral "II" underneath a crown.','A II 2005','[object Object]',NULL,NULL,'/photos/belgique/61f90964c1b165.14171227-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f90964c1b165.14171227-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(74,'Jan Alfons Keustermans',NULL,'The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital "A" with the Roman numeral "II" underneath a crown','A II 2005','[object Object]',NULL,NULL,'/photos/belgique/61fde21a83e7b0.77023192-original.jpg','https://en.numista.com/catalogue/photos/belgique/61fde21a83e7b0.77023192-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(75,'Jan Alfons Keustermans',NULL,'The portrait in left profile of King Albert II encircled by the twelve stars of Europe, among which is situated his monogram: a capital "A" with the Roman numeral "II" underneath a crown','A II 2004','[object Object]',NULL,NULL,'/photos/belgique/3429-original.jpg','https://en.numista.com/catalogue/photos/belgique/3429-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(78,'Jan Alfons Keustermans',NULL,'The portrait in left profile of King Albert II encircled by the twelve stars of Europe, among which is situated his monogram: a capital "A" with the Roman numeral "II" underneath a crown','A II 2005','[object Object]',NULL,NULL,'/photos/belgique/61f95162d95f66.83568577-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f95162d95f66.83568577-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(79,'Jan Alfons Keustermans',NULL,'The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital "A" with the Roman numeral "II" underneath a crown',replace(replace('A II \r\n2004','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/3168-original.jpg','https://en.numista.com/catalogue/photos/belgique/3168-180.jpg','moi4992',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(81,'Garcilaso Rollán',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, is encircled by the lettering "ESPAÑA" (Spain), the royal monogram and the twelve stars of Europe of whom five are bound by a band.','ESPAÑA 2002 M','[object Object]',NULL,'Spain 2002 M','/photos/espagne/62c135e1117164.34185253-original.jpg','https://en.numista.com/catalogue/photos/espagne/62c135e1117164.34185253-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(82,'Garcilaso Rollán',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, with the country name, the royal monogram and the twelve stars of Europe of whom five are bound by a band','ESPAÑA 2002 M','[object Object]',NULL,'Spain 2002 M','/photos/espagne/6212efc789e7d0.71831496-original.jpg','https://en.numista.com/catalogue/photos/espagne/6212efc789e7d0.71831496-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(83,'Garcilaso Rollán',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, is encircled by the lettering "ESPAÑA" (Spain), the royal monogram and the twelve stars of Europe of whom five are bound by a band','ESPAÑA 2002 M','[object Object]',NULL,'Spain 2002','/photos/espagne/61ff71a6cc21e1.93410910-original.jpg','https://en.numista.com/catalogue/photos/espagne/61ff71a6cc21e1.93410910-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(84,'Begoña Castellanos García',NULL,'A portrait of Miguel de Cervantes, the father of Spanish literature, is accompanied with his name, a quill, the lettering "ESPAÑA" (Spain) and the royal monogram an is encircled by the twelve stars of Europe of whom four are bound by a band',replace(replace('ESPAÑA \r\nCervantes\r\n1999 M','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Spain\r\nCervantes\r\n1999 M','\r',char(13)),'\n',char(10)),'/photos/espagne/62723193439340.67448024-original.jpg','https://en.numista.com/catalogue/photos/espagne/62723193439340.67448024-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(85,'Begoña Castellanos García',NULL,'A portrait of Miguel de Cervantes, the father of Spanish literature, is accompanied with his name, a quill, the lettering "ESPAÑA" (Spain) and the mintmark for the Madrid Mint is encircled by the twelve stars of Europe of which four are bound by a band',replace(replace('ESPAÑA\r\nCervantes\r\nM\r\n1999','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Spain\r\nCervantes\r\nM\r\n2001','\r',char(13)),'\n',char(10)),'/photos/espagne/627287312bb885.13329376-original.jpg','https://en.numista.com/catalogue/photos/espagne/627287312bb885.13329376-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(88,'Luis José Díaz Salas',NULL,'A portrait of King Juan Carlos I is encircled by the lettering "ESPAÑA" (Spain), the mintmark for the Madrid Mint and the twelve stars of Europe of which four are bound by a band',replace(replace('ESPAÑA \r\nM\r\n20 04','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Spain','/photos/espagne/62ca7e3ab00005.33413427-original.jpg','https://en.numista.com/catalogue/photos/espagne/62ca7e3ab00005.33413427-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(91,'Heikki Aulis Häiväoja',NULL,'The Finnish heraldic lion is encircled by the twelve stars of Europe','2005 M','[object Object]',NULL,NULL,'/photos/finlande/61fde2813256f5.16847117-original.jpg','https://en.numista.com/catalogue/photos/finlande/61fde2813256f5.16847117-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(96,'Raimo Isma Heino',NULL,'Cloudberry berries',replace(replace('M\r\n2006','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/finlande/612b605eabdad0.97648242-original.jpg','https://en.numista.com/catalogue/photos/finlande/612b605eabdad0.97648242-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(97,'Fabienne Courtiade',NULL,'A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.',replace(replace('RF\r\n2006\r\nF. COURTIADE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/3926-original.jpg','https://en.numista.com/catalogue/photos/france/3926-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(98,'Fabienne Courtiade',NULL,'A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.','RF 2006 F. COURTIADE','[object Object]',NULL,NULL,'/photos/france/3929-original.jpg','https://en.numista.com/catalogue/photos/france/3929-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(99,'Fabienne Courtiade',NULL,'A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.',replace(replace('RF\r\n2005\r\nF. COURTIADE','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/61fde3008fb875.29810810-original.jpg','https://en.numista.com/catalogue/photos/france/61fde3008fb875.29810810-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(100,'Laurent Jorio',NULL,'A modern adaptation of the Sower, initially designed by Oscar Roty, representing "France, which stays true to itself, whilst integrating into Europe", is encircled by the twelve stars of Europe','RF 2001 L. JORIO d''ap. O. ROTY','[object Object]',replace(replace('République française\r\nLaurent Jorio d''après Oscar Roty','\r',char(13)),'\n',char(10)),NULL,'/photos/france/6289eb6f1395f8.91533745-original.jpg','https://en.numista.com/catalogue/photos/france/6289eb6f1395f8.91533745-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(105,'Rolf Lederbogen',NULL,'An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.','D 2005','[object Object]',NULL,NULL,'/photos/allemagne/1383-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1383-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(106,'Rolf Lederbogen',NULL,'An oak twig, symbolizing stability, surrounded by the twelve stars of Europe.','A 2006','[object Object]',NULL,NULL,'/photos/allemagne/61fcbada841871.31395888-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61fcbada841871.31395888-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(107,'Rolf Lederbogen',NULL,'An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.','A 2006','[object Object]',NULL,NULL,'/photos/allemagne/61fde61bf27925.91167153-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61fde61bf27925.91167153-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(108,'Reinhart Heinsdorff',NULL,'The Brandenburg Gate, symbol of the division of Germany and its subsequent unification, is surrounded with the twelve stars of Europe.','2002 F','[object Object]',NULL,NULL,'/photos/allemagne/2191-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2191-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(109,'Reinhart Heinsdorff',NULL,'The Brandenburg Gate, the symbol of the division of Germany and its subsequent unification, with the 12 stars of Europe around the rim',replace(replace('2002\r\nJ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/1894-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1894-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(110,'Reinhart Heinsdorff',NULL,'The Brandenburg Gate, symbol of the division of Germany and its subsequent unification, is surrounded with the twelve stars of Europe.','2003 D','[object Object]',NULL,NULL,'/photos/allemagne/605d7236201ae1.85728717-original.jpg','https://en.numista.com/catalogue/photos/allemagne/605d7236201ae1.85728717-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(111,'Heinz Hoyer, Sneschana Russewa-Hoyer',NULL,'The eagle, the traditional symbol of German sovereignty, with the twelve stars of Europe in the outer ring','2002 F','[object Object]',NULL,NULL,'/photos/allemagne/6054bcd77f1443.20499529-original.jpg','https://en.numista.com/catalogue/photos/allemagne/6054bcd77f1443.20499529-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(115,'Maria Andonatou, Georgios Stamatopoulos',NULL,'A modern commercial boat, a sea-going tanker, reflecting the innovative spirit of Greek shipping accompanied with the face value and encircled by the twelve stars of Europe.',replace(replace('5 ΛΕΠΤΑ\r\n2002 \r\nΓΣ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('5 Cents\r\n2002\r\nGS','\r',char(13)),'\n',char(10)),'/photos/grece/626ea6cd5db9f1.93867710-original.jpg','https://en.numista.com/catalogue/photos/grece/626ea6cd5db9f1.93867710-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(116,'Perikles Sotiriou, Georgios Stamatopoulos',NULL,'A portrait of Rigas Fereos (1757-1798), a forerunner and leading figure of the Greek enlightenment and confederation, is accompanied with a legend indicating his name "Ρήγας Φεραίος" and the face value and is encircled by the twelve stars of Europe.',replace(replace('10 \r\nΛΕΠΤΑ\r\n2002\r\nΡΗΓΑΣ ΦΕΡΑΙΟΣ\r\nΓΣ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('10\r\nCENTS\r\n2002\r\nRIGAS FEREOS','\r',char(13)),'\n',char(10)),'/photos/grece/1824-original.jpg','https://en.numista.com/catalogue/photos/grece/1824-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(118,'Nikos Nikolaou, Georgios Stamatopoulos',NULL,'A portrait of Eleftherios Venizelos (1864-1936), one of Greece’s most prominent political figures, accompanied by a legend indicating his name "Ελ. Βενιζέλος", the value, and the 12 stars of Europe around the rim',replace(replace('50 ΛΕΠΤΑ \r\n2005\r\nΕλ. Βενιζέλος \r\nΓΣ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('50 Cents\r\n2005\r\nEl. Venizelos\r\nGS','\r',char(13)),'\n',char(10)),'/photos/grece/605d7310dfec66.91115567-original.jpg','https://en.numista.com/catalogue/photos/grece/605d7310dfec66.91115567-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(120,'Georgios Stamatopoulos',NULL,'A representation of the myth of the Abduction of Europa, the daughter of the Phoenician King Agenor, by Zeus, who had taken the form of a bull, is accompanied with the legend "Ευρώπη" (Europa) and the face value and encircled by the twelve stars of Europe.',replace(replace('ΕΥΡΩΠΗ \r\nΓΣ\r\n2 ΕΥΡΩ \r\n20 02','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Europa\r\nGS\r\n2 Euro\r\n2002','\r',char(13)),'\n',char(10)),'/photos/grece/63c2ce3a511623.46526105-original.jpg','https://en.numista.com/catalogue/photos/grece/63c2ce3a511623.46526105-180.jpg','brismike',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(121,'Jarlath Hayes',NULL,'The Celtic harp, a traditional symbol of Ireland, is accompanied by the inscription "éire" and twelve five-pointed stars surrounding around the rim representing the European Union','éire 2002','[object Object]',NULL,'Ireland','/photos/irlande/977-original.jpg','https://en.numista.com/catalogue/photos/irlande/977-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(122,'Jarlath Hayes',NULL,'The Celtic harp, a traditional symbol of Ireland, is accompanied with the inscription "éire", the Irish word for Ireland. Around twelve five-pointed stars representing the European Union.','éire 2002','[object Object]',NULL,'Ireland','/photos/irlande/979-original.jpg','https://en.numista.com/catalogue/photos/irlande/979-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(125,'Jarlath Hayes',NULL,'The Celtic harp, a traditional symbol of Ireland, with the country name to the left, the date to the right, and the 12 stars of Europe around the rim','éIRe 2004','[object Object]',NULL,'Ireland','/photos/irlande/985-original.jpg','https://en.numista.com/catalogue/photos/irlande/985-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(129,'Eugenio Driutti',NULL,'The Castel del Monte, a 13th-century castle situated in the Apulia region of southeast Italy with the mintmark, the monogram RI of the Italian Republic, and the initial of the author below and the twelve five-pointed stars representing the European Union around the rim',replace(replace('2012\r\nED RI R','\r',char(13)),'\n',char(10)),'[object Object]','Repubblica Italiana',NULL,'/photos/italie/61fccce824b820.92416870-original.jpg','https://en.numista.com/catalogue/photos/italie/61fccce824b820.92416870-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(130,'Luciana De Simoni',NULL,'The Mole Antonelliana, a tower designed in 1863 by Alessandro Antonelli, is encircled by the twelve stars of Europe. Below the Mole: the mintmark (R), the monogram RI for the Italian Republic, and the initial of the author.','LDS RI R 2004','[object Object]','Repubblica Italiana',NULL,'/photos/italie/61fcbc10464c46.63380955-original.jpg','https://en.numista.com/catalogue/photos/italie/61fcbc10464c46.63380955-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(131,'Ettore Lorenzo Frapiccini',NULL,'The Flavius amphitheatre, which Emperor Vespasian began building around 75 AD and Emperor Titus inaugurated in 80 AD, is encircled by the twelve stars of Europe',replace(replace('R\r\nRI\r\nELF\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/italie/61ff724b0bc689.51779243-original.jpg','https://en.numista.com/catalogue/photos/italie/61ff724b0bc689.51779243-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(132,'Claudia Momoni',NULL,'A detail of the "Birth of Venus", a tableau painted by Sandro Botticelli circa 1485, is encircled by the twelve stars of Europe. On the left the date and the monogram of Italian Republic. The mint mark is at right, between the hair and the neck. Author''s initials are below Venus, on the left.',replace(replace('2002\r\nRI\r\nR\r\nCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'RI = Italian Republic','/photos/italie/61da9cf088f3e0.94383691-original.jpg','https://en.numista.com/catalogue/photos/italie/61da9cf088f3e0.94383691-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(133,'Maria Angela Cassol',NULL,'Boccioni''s sculpture "Unique Forms in the Continuity of Space", encircled by the twelve stars of Europe. On the left the monogram of Italian Republic. The mint mark and the date are at right. Author''s initials are below the sculpture.',replace(replace('R\r\nRI 2002\r\nM.A.C.','\r',char(13)),'\n',char(10)),'[object Object]','Repubblica Italiana','(RI) = Italian Republic','/photos/italie/61da9d39654153.37336320-original.jpg','https://en.numista.com/catalogue/photos/italie/61da9d39654153.37336320-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(136,'Maria Carmela Colaneri',NULL,'A portrait drawn by Raffaello of Dante Alighieri, housed in the Pope Julius II Wing of the Vatican City Palace, is encircled by the twelve stars of Europe. Date, monogram of the Republic and mintmark are at left of the portrait. Author''s initials are below the neck.',replace(replace('RI\r\n2005\r\nR\r\nM.C.C.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'(RI) = Italian Republic','/photos/italie/5fc2715347e579.70220137-original.jpg','https://en.numista.com/catalogue/photos/italie/5fc2715347e579.70220137-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(137,'Yvette Gastauer-Claire',NULL,'A portrait of His Royal Highness Grand Duke Henri is encircled by the inscription "LËTZEBUERG", and the twelve stars of Europe','LËTZEBUERG 2004 GC','[object Object]',NULL,'Luxembourg','/photos/luxembourg/61fcd02c2b3328.28896904-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fcd02c2b3328.28896904-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(138,'Yvette Gastauer-Claire',NULL,'A portrait of His Royal Highness Grand Duke Henri encircled by the country name and the twelve stars of Europe','LËTZEBUERG 2004 GC','[object Object]',NULL,'Luxembourg 2007 GC','/photos/luxembourg/61fccf62c6bfd9.37525069-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fccf62c6bfd9.37525069-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(139,'Yvette Gastauer-Claire',NULL,'A portrait of His Royal Highness Grand Duke Henri is encircled by the country name and the 12 stars of Europe around the rim','LËTZEBUERG 2004 GC','[object Object]',NULL,'Luxembourg 2004 GC','/photos/luxembourg/61fe0eebf20bd5.81872756-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/61fe0eebf20bd5.81872756-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(144,'Yvette Gastauer-Claire',NULL,'On the right side, a geometrical portrait of His Royal Highness Grand Duke Henri is accompanied, on the left side, with the lettering "LËTZEBUERG" (Luxembourg)','LËTZEBUERG 2003 GC','[object Object]',NULL,NULL,'/photos/luxembourg/612b677f754c16.09008264-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/612b677f754c16.09008264-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(145,'Bruno Ninaber van Eyben',NULL,'An uncluttered portrait of Queen Beatrix is encircled by the twelve stars of Europe and the legend "BEATRIX KONINGIN DER NEDERLANDEN" (Beatrix queen of the Netherlands)','BEATRIX KONINGIN DER NEDERLANDEN 2006','[object Object]',NULL,NULL,'/photos/pays-bas/6228248f2ea4c4.55020389-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/6228248f2ea4c4.55020389-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(146,'Bruno Ninaber van Eyben',NULL,'An uncluttered portrait of Queen Beatrix encircled by the twelve stars of Europe and the legend "BEATRIX KONINGIN DER NEDERLANDEN" with the date at the bottom','BEATRIX KONINGIN DER NEDERLANDEN 2007 GC','[object Object]',NULL,'Beatrix Queen of the Netherlands','/photos/pays-bas/61fcb9c920e740.36889428-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/61fcb9c920e740.36889428-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(147,'Bruno Ninaber van Eyben',NULL,'An uncluttered portrait of Queen Beatrix is encircled by the twelve stars of Europe and the date below',replace(replace('BEATRIX KONINGIN DER NEDERLANDEN\r\n2003','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Beatrix queen of the Netherlands\r\n2003','\r',char(13)),'\n',char(10)),'/photos/pays-bas/61fde4379b8e66.45331830-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/61fde4379b8e66.45331830-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(149,'Bruno Ninaber van Eyben',NULL,'An uncluttered portrait of Queen Beatrix is encircled by the twelve stars of Europe and the legend "BEATRIX KONINGIN DER NEDERLANDEN"',replace(replace('BEATRIX KONINGIN DER NEDERLANDEN\r\n2006','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Beatrix, Queen of the Netherlands\r\n2006','\r',char(13)),'\n',char(10)),'/photos/pays-bas/2525-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2525-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(152,'Bruno Ninaber van Eyben',NULL,'An uncluttered portrait of Queen Beatrix is accompanied, in the right side, facing left with a vertically written inscription above the date','BEATRIX KONINGIN DER NEDERLANDEN 2006','[object Object]',NULL,'Beatrix Queen of the Netherlands 2006','/photos/pays-bas/2571-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2571-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(153,'V. M. F. dos Santos',NULL,'The first royal seal of 1134 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear on the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPOR TV\r\nGA L\r\nVS INCM\r\n2 0 0 2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5970-original.jpg','https://en.numista.com/catalogue/photos/portugal/5970-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(154,'V. M. F. dos Santos',NULL,'The first royal seal of 1134 of Afonso Henriques, the first king of Portugal, encircled by alternately the seven country''s castles and the five coats of arms, which appear on the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPOR TV\r\nGA L\r\nVS INCM\r\n2 0 0 2','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5973-original.jpg','https://en.numista.com/catalogue/photos/portugal/5973-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(155,'Vítor Manuel Fernandes dos Santos',NULL,'The first royal seal of 1134 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear an the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPOR TV\r\nGA L\r\nVS INCM\r\n2 011','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5975-original.jpg','https://en.numista.com/catalogue/photos/portugal/5975-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(156,'V. M. Fernandes dos Santos',NULL,'The second royal seal of 1142 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear an the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPO RT\r\nVG AL\r\nVS INCM\r\n2 0 0 5','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/62c9239412ff43.02001796-original.jpg','https://en.numista.com/catalogue/photos/portugal/62c9239412ff43.02001796-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(171,NULL,'Karl Schwenzer','Head of Libertas (Roman goddess of liberty) facing right, with braided hair tied with ribbon, and wearing tiara.',replace(replace('CONFŒDERATIO HELVETICA\r\nLIBERTAS\r\n᛭ 2017 ᛭','\r',char(13)),'\n',char(10)),'[object Object]','Confoederatio Helvetica',replace(replace('Swiss Confederation\r\nLiberty','\r',char(13)),'\n',char(10)),'/photos/suisse/5f9f2db303dd07.21719076-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f9f2db303dd07.21719076-180.jpg','stratocaster',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(173,NULL,'Karl Schwenzer','Head of Libertas (Roman goddess of liberty) facing right, with braided hair tied with ribbon and wearing tiara.',replace(replace('CONFŒDERATIO HELVETICA \r\n⸭ 1881 ⸭\r\nLIBERTAS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Swiss Confederation','/photos/suisse/5f32d311e60728.02240447-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f32d311e60728.02240447-180.jpg','Tauler & Fau Subastas','https://www.tauleryfau.com/',NULL,NULL);
INSERT INTO Obverse VALUES(178,NULL,'Karl Schwenzer','Head of Libertas (Roman goddess of liberty) facing right, with braided hair tied with ribbon and wearing tiara.',replace(replace('CONFŒDERATIO HELVETICA \r\nLIBERTAS\r\n⸭ 1944 ⸭','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Swiss Confederation','/photos/suisse/60439aa723b836.65893076-original.jpg','https://en.numista.com/catalogue/photos/suisse/60439aa723b836.65893076-180.jpg','Sincona AG','https://www.sincona.com/',NULL,NULL);
INSERT INTO Obverse VALUES(185,'Antoine Bovy','Albert Walch','Full-length figure of Helvetia, standing, facing left, wearing toga, holding spear in right hand, and supporting shield with coat of arms of Switzerland with left hand. 22 stars around, representing the 22 cantons of the Swiss confederation. In 1983, a 23rd star was added for the Canton of Jura, which was founded in 1979.',replace(replace('HELVETIA\r\nA. BOVY INCᵀ.','\r',char(13)),'\n',char(10)),'[object Object]','Antoine Bovy incidit','Engraved by Antoine Bovy.','/photos/suisse/64294a6e9f3133.14350286-original.jpg','https://en.numista.com/catalogue/photos/suisse/64294a6e9f3133.14350286-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(189,'Antoine Bovy','Albert Walch','Full-length figure of Helvetia, standing, facing left, wearing toga, holding spear in right hand, and supporting shield with coat of arms of Switzerland with left hand. 22 stars around, representing the 22 cantons of the Swiss confederation. In 1983, a 23rd star was added for the Canton of Jura, which was founded in 1979.',replace(replace('HELVETIA \r\nA . BOVY INCᵀ.','\r',char(13)),'\n',char(10)),'[object Object]','Antoine Bovy incidit.','Engraved by Antoine Bovy.','/photos/suisse/1506-original.jpg','https://en.numista.com/catalogue/photos/suisse/1506-180.jpg','Robert Maiersperger',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(242,'M. Licul',NULL,'The portrait of Primož Trubar, a Slovenian Protestant reformer, is accompanied by a legend indicating his name and the inscription "STATI INU OBSTATI" and the twelve stars of Europe alternated with the letters of the word "SLOVENIJA" (Slovenia) in the outer rim',replace(replace('S L O V E N I J A \r\nSTATI INU OBSTATI\r\nP R I M O Ž\r\nT R U B A R\r\n20\r\n07\r\nFI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Slovenia\r\nTo stand and withstand\r\nPrimož\r\nTrubar\r\n20\r\n07\r\nFI','\r',char(13)),'\n',char(10)),'/photos/slovenie/926-original.jpg','https://en.numista.com/catalogue/photos/slovenie/926-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(243,'M. Licul',NULL,'The profile board of the poet France Prešeren is accompanied with a legend indicating his name and the first line of the 7th stanza of Zdravljica (Slovenian national anthem) and is encircled by the twelve stars of Europe alternated with the letters of the word "SLOVENIJA" (Slovenia).',replace(replace('S L O V E N I J A\r\nFRANCE PREŠEREN \r\nShivé naj vsi naródi \r\n20\r\n07','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'God''s blessing on all nations','/photos/slovenie/928-original.jpg','https://en.numista.com/catalogue/photos/slovenie/928-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(377,'Susan Taylor','Susanna Blunt','Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.','ELIZABETH II D•G•REGINA','[object Object]','ELIZABETH II DEI GRATIA REGINA','Elizabeth II Queen by the grace of God','/photos/canada/64f9f5a3a10549.15917871-original.jpg','https://en.numista.com/catalogue/photos/canada/64f9f5a3a10549.15917871-180.jpg','Carlos-Imbe',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(403,'Thomas Shingles','Mary Gillick','Bust of Queen Elizabeth II, as at 27 years of age, wearing a wreath, facing right.',replace(replace('ELIZABETH II DEI GRATIA REGINA\r\nM·G·','\r',char(13)),'\n',char(10)),'[object Object]','ELIZABETH II DEI GRATIA REGINA','Elizabeth II Queen by the grace of God','/photos/canada/619901a3a3da14.36192018-original.jpg','https://en.numista.com/catalogue/photos/canada/619901a3a3da14.36192018-180.jpg','Ringgy',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(465,'Patrick Brindley','Arnold Machin','Bust of Queen Elizabeth II, as at 37 years of age, wearing tiara, facing right.','ELIZABETH II D·G·REGINA','[object Object]','ELIZABETH II DEI GRATIA REGINA','Elizabeth II Queen by the grace of God','/photos/canada/8268-original.jpg','https://en.numista.com/catalogue/photos/canada/8268-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(524,NULL,'Stanisława Wątróbska-Frindt','The white eagle, the emblem of Poland which is depicted on its coats of arms, surrounded with the name of the country, and the date at the bottom',replace(replace('RZECZPOSPOLITA POLSKA\r\nmw\r\n• 1991 •','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Poland\r\nMW\r\n1991','\r',char(13)),'\n',char(10)),'/photos/pologne/5ebaafe3130864.47955265-original.jpg','https://en.numista.com/catalogue/photos/pologne/5ebaafe3130864.47955265-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(573,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH II\r\nIRB\r\nD·G·REG·F·D','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/95-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/95-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(587,NULL,NULL,'The national emblem of Mexico (a Mexican golden eagle perched on a prickly pear cactus devouring a snake above a half-wreath of oak and laurel below and the legend “ESTADOS UNIDOS MEXICANOS” forming the upper semicircle)','ESTADOS UNIDOS MEXICANOS','[object Object]',NULL,'United Mexican States','/photos/mexique/6300876642c986.98360504-original.jpg','https://en.numista.com/catalogue/photos/mexique/6300876642c986.98360504-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(589,NULL,NULL,'The national emblem/shield of Mexico in sculpted relief--a Mexican golden eagle perched on a prickly pear cactus devouring a snake above a half-wreath of oak and laurel below, and the legend forming the upper semicircle.','ESTADOS UNIDOS MEXICANOS','[object Object]',NULL,'United Mexican States','/photos/mexique/62f7e905ca9b56.67446950-original.jpg','https://en.numista.com/catalogue/photos/mexique/62f7e905ca9b56.67446950-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(591,NULL,NULL,'The National Arms of Mexico (An eagle on cactus facing left with a snake in beak above wreath), with the inscription forming a semicircle above.','ESTADOS UNIDOS MEXICANOS','[object Object]',NULL,'United Mexican States','/photos/mexique/62f7e963c034e7.87975823-original.jpg','https://en.numista.com/catalogue/photos/mexique/62f7e963c034e7.87975823-180.jpg','Numismatica Quetzalcoatl (Gabriel Herrera)',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(596,NULL,NULL,'The face value is surrounded by Arabic inscriptions and two stars with the number "20" in the denomination referring to a brooch decorated with a bird''s head, dating back to the Hammadite era',replace(replace('بنك الجزائر\r\n20\r\nدينارا','\r',char(13)),'\n',char(10)),'[object Object], [object Object]',NULL,replace(replace('Bank of Algeria\r\n20\r\nDinars','\r',char(13)),'\n',char(10)),'/photos/algerie/466-original.jpg','https://en.numista.com/catalogue/photos/algerie/466-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(614,'John Flanagan, William Cousins',NULL,'The portrait in left profile of George Washington, the first President of the United States from 1789 to 1797, is accompanied with the motto "IN GOD WE TRUST" and the lettering "LIBERTY" and it is surrounded with the face value and the inscription "UNITED STATES OF AMERICA"',replace(replace('UNITED STATES OF AMERICA\r\nIN\r\nGOD WE\r\nTRUST\r\nLIBERTY P\r\nJF WC\r\nQUARTER DOLLAR','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/4876-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4876-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Obverse VALUES(648,'John Flanagan, William Cousins',NULL,'The portrait in left profile of George Washington, the first President of the United Stats from 1789 to 1797, is accompanied with the motto "IN GOD WE TRUST" and the lettering "LIBERTY" and it is surrounded with the face value and the inscription "UNITED STATES OF AMERICA"',replace(replace('UNITED STATES OF AMERICA\r\nIN\r\nGOD WE\r\nTRUST\r\nLIBERTY P\r\nJF WC\r\nQUARTER DOLLAR','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/4854-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4854-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Obverse VALUES(649,'John Flanagan, William Cousins',NULL,'The portrait in left profile of George Washington, the first President of the United States from 1789 to 1797, is accompanied with the motto "IN GOD WE TRUST" and the lettering "LIBERTY" and it is surrounded with the face value and the inscription "UNITED STATES OF AMERICA"',replace(replace('UNITED STATES OF AMERICA\r\nIN \r\nGOD WE \r\nTRUST\r\nLIBERTY P\r\nJF WC\r\nQUARTER DOLLAR','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/4946-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/4946-180.jpg','United States Mint','http://www.usmint.gov',NULL,NULL);
INSERT INTO Obverse VALUES(664,NULL,'Arnold Machin','Second crowned portrait of Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.','ELIZABETH · II D · G · REG · F · D · 1980','[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/78-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/78-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(665,NULL,'Arnold Machin','Second crowned portrait of Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.','ELIZABETH·II D·G·REG·F·D·1980','[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5f7902f8ce8467.33927845-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f7902f8ce8467.33927845-180.jpg','Rafael Pinheiro Aquino',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(666,'Luciano Dias Araújo',NULL,'Portrait of José Maria da Silva Paranhos Júnior (1845-1912), Baron of Rio Branco, Statesman, diplomat and historian, and the country name to the left',replace(replace('BRASIL\r\nRIO BRANCO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Brazil','/photos/bresil/1481-original.jpg','https://en.numista.com/catalogue/photos/bresil/1481-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(681,'Atelier de gravure d'après Augustin Dupré',NULL,'The denomination within a wreath and the date below.',replace(replace('REPUBLIQUE FRANÇAISE\r\n50\r\nFRANCS \r\n⦁ 1975 ⦁','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'French Republic','/photos/france/8653-original.jpg','https://en.numista.com/catalogue/photos/france/8653-180.jpg','smy77',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(734,'Ludwig Oswald Wenckebach',NULL,'Portrait of Queen Juliana facing right','JULIANA KONINGIN DER NEDERLANDEN','[object Object]',NULL,'Juliana, Queen of the Netherlands','/photos/pays-bas/627e973047f4d1.63961255-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/627e973047f4d1.63961255-180.jpg','Nyxain',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(766,NULL,NULL,replace('The coat of arms of the Soviet Union.\n15 ribbons on wreath (7 + 1 + 7 ribbons).','\n',char(10)),'СССР','[object Object]',NULL,'USSR','/photos/ancienne_urss/11-original.jpg','https://en.numista.com/catalogue/photos/ancienne_urss/11-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(768,'Frederico Augusto de Campos',NULL,'Portrait of Luís I of Portugal facing left','D·LUIZ·I·REI·DE·PORTUGAL','[object Object]',NULL,'Luís I King of Portugal','/photos/portugal/5792-original.jpg','https://en.numista.com/catalogue/photos/portugal/5792-180.jpg','Darkcid',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(770,'Euclides Vaz',NULL,'The arms of Portugal dividing the date with the denomination below, engraver''s name and the mintmark on the sides of denomination.',replace(replace('REPUBLICA PORTUGUESA\r\n19 88\r\n50\r\nESCUDOS\r\nE. VAZ incm','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Portugal\r\n1988\r\n50\r\nEscudos\r\nE. VAZ incm','\r',char(13)),'\n',char(10)),'/photos/portugal/3011-original.jpg','https://en.numista.com/catalogue/photos/portugal/3011-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(771,'Hélder Batista',NULL,'The coat of arms of Portugal and a knot, date at the end of circular legend.','REPUBLICA PORTUGUESA 2000','[object Object]',NULL,'REPUBLIC OF PORTUGAL 2000','/photos/portugal/63b5e177caea96.73132062-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5e177caea96.73132062-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(772,'Jaime Martins Barata',NULL,'A ship, boat sailing to the right',replace(replace('REPUBLICA PORTUGUESA\r\n+ 1973 +','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Portuguese Republic','/photos/portugal/3349-original.jpg','https://en.numista.com/catalogue/photos/portugal/3349-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(773,'Hélder Batista',NULL,'The arms of Portugal with a knot above, date at the end of circular legend.','REPUBLICA PORTUGUESA 1999','[object Object]',NULL,'Republic of Portugal','/photos/portugal/250-original.jpg','https://en.numista.com/catalogue/photos/portugal/250-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(774,'Jaime Martins Barata',NULL,'A ship (caravel), sailing to the right',replace(replace('REPUBLICA PORTUGUESA\r\n+ 1985 +','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Portugal','/photos/portugal/3005-original.jpg','https://en.numista.com/catalogue/photos/portugal/3005-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(775,'Marcelino Norte de Almeida',NULL,'Symbol of the Portuguese Republic (five shields each containing five bezants) and the date below.',replace(replace('REPVBLICA PORTVGVESA\r\n✤1979✤','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portuguese Republic\r\n1979','\r',char(13)),'\n',char(10)),'/photos/portugal/3152-original.jpg','https://en.numista.com/catalogue/photos/portugal/3152-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(776,'Marcelino Norte de Almeida',NULL,'Five escutcheons in the form of a cross, each one displaying five bezants and the date below',replace(replace('REPVBLICA PORTVGVESA \r\n1979','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portuguese Republic\r\n1979','\r',char(13)),'\n',char(10)),'/photos/portugal/3150-original.jpg','https://en.numista.com/catalogue/photos/portugal/3150-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(779,'Garcilaso Rollán Sánchez',NULL,'Canary Islands Dragon Tree, Dracaena draco','ESPAÑA 1994','[object Object]',NULL,'SPAIN 1994','/photos/espagne/268-original.jpg','https://en.numista.com/catalogue/photos/espagne/268-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(781,'Manuel Marín Jimeno','Mariano Benlliure Gil','The portrait of Francisco Franco facing right with the date of the start of the series below',replace(replace('FRANCISCO FRANCO CAUDILLO DE ESPAÑA POR LA G.DE DIOS\r\n1957','\r',char(13)),'\n',char(10)),'[object Object]','Francisco Franco Caudillo de España por la Gracia de Dios','Francisco Franco Leader of Spain by the Grace of God','/photos/espagne/4658-original.jpg','https://en.numista.com/catalogue/photos/espagne/4658-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(782,'Manuel Marín Jimeno',NULL,'Portrait in left profile of Juan Carlos I',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n1975','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('JUAN CARLOS I KING OF SPAIN\n1975','\n',char(10)),'/photos/espagne/5672-original.jpg','https://en.numista.com/catalogue/photos/espagne/5672-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(783,'Luis José Díaz Salas',NULL,'Stone monument (Neolithic "taula" of the archaeological site of Torrellafuda, in Menorca) with the silhouette of the wind of Tramontana and the date to the right',replace(replace('MENORCA RESERVA DE LA BIOSFERA\r\nESPAÑA 1997','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Menorca Biosphere Reserve\nSpain 1997','\n',char(10)),'/photos/espagne/215-original.jpg','https://en.numista.com/catalogue/photos/espagne/215-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(784,'Begoña Castellanos García',NULL,'Asturian Victoria Cross','ESPAÑA 1995','[object Object]',NULL,'Spain 1995','/photos/espagne/217-original.jpg','https://en.numista.com/catalogue/photos/espagne/217-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(787,'Manuel Marín Jimeno',NULL,'Juan Carlos I facing left with the series date below',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n1975','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Juan Carlos I King of Spain','/photos/espagne/625cb74a00d989.64463352-original.jpg','https://en.numista.com/catalogue/photos/espagne/625cb74a00d989.64463352-180.jpg','EZE711CBA',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(844,'Reinhart Heinsdorff',NULL,'Portrait of Konrad Adenauer (1876-1967), the first German chancellor from 1949 to 1963 and a key player in rebuilding the France-Germany relationship and creating the European community with the dates representing the 20th Anniversary of the Constitution of the Federal Republic of Germany',replace(replace('·BUNDESREPUBLIK DEUTSCHLAND·\r\n1949 1969','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Federal Republic of Germany\r\n1949 1969','\r',char(13)),'\n',char(10)),'/photos/allemagne/1964-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1964-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(846,NULL,NULL,'German eagle, mintmark below.',replace(replace('BUNDESREPUBLIK DEUTSCHLAND \r\n∙ F ∙','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Federal Republic of Germany','/photos/allemagne/6280f8dd78c295.68137920-original.jpg','https://en.numista.com/catalogue/photos/allemagne/6280f8dd78c295.68137920-180.jpg','PCGS','https://www.pcgs.com/',NULL,NULL);
INSERT INTO Obverse VALUES(847,NULL,NULL,'A woman (Trümmerfrau) planting an oak, symbol of Germany''s rebirth after the war','1966','[object Object]',NULL,NULL,'/photos/allemagne/1888-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1888-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(850,'Adolf Jäger',NULL,'An oak seedling above the date',replace(replace('BUNDESREPUBLIK DEUTSCHLAND\r\n1989','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Federal Republic of Germany','/photos/allemagne/234-original.jpg','https://en.numista.com/catalogue/photos/allemagne/234-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(854,'Adolf Jäger',NULL,'An oak seedling above the date, circular legend around.',replace(replace('BUNDESREPUBLIK DEUTSCHLAND\r\n·1950·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Federal Republic of Germany','/photos/allemagne/1752-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1752-180.jpg','Idolenz',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(861,'Raphael David Maklouf',NULL,'Third crowned portrait of Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1989\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/2190-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2190-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(862,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2001\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/64-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/64-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(863,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around',replace(replace('ELIZABETH II D·G·REG·F·D·1990\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/8119-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8119-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(864,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2001\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/84-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/84-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(865,'Arnold Machin',NULL,'Second crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH II\r\nD·G·REG·F·D·','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/10769-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/10769-180.jpg','Tony K',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(867,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1990\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/62-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/62-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(868,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1993\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/215-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/215-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(875,'Raphael David Maklouf',NULL,'Third crowned portrait of Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1992\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/7600-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/7600-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(876,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2006\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5533-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5533-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(879,'Raphael David Maklouf',NULL,'Third crowned portrait of Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1992\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/68-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/68-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(907,'José Simões de Almeida, Alves Domingo Rego',NULL,'Liberty head right, date lower right',replace(replace('REPUBLICA PORTUGUESA - 1965\r\nSIMOÉS REGO GR','\r',char(13)),'\n',char(10)),'[object Object]',replace(replace('Republica Portuguesa - 1965\r\nJosé Simões de Almeida - Alves Domingo Rego','\r',char(13)),'\n',char(10)),'Republic of Portugal - 1965','/photos/portugal/62ca16b378eeb7.91085143-original.jpg','https://en.numista.com/catalogue/photos/portugal/62ca16b378eeb7.91085143-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(908,'Victor David Brenner',NULL,replace(replace('The portrait of Abraham Lincoln facing right with the date to the right, and the mintmark (if present) below the date.\r\n\r\nBrenner''s initials "VDB" were restored in 1918, and his initials were placed inconspicuously beneath the shoulder of Lincoln on this obverse side.','\r',char(13)),'\n',char(10)),replace(replace('IN GOD WE TRUST\r\nLIBERTY\r\n1925\r\nD\r\nVDB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/1116-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/1116-180.jpg','Heritage Auctions','http://www.ha.com',NULL,NULL);
INSERT INTO Obverse VALUES(941,NULL,NULL,'Coat of arms and motto of the Bahamas.',replace(replace('COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD, ONWARD TOGETHER\r\n1998','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/692-original.jpg','https://en.numista.com/catalogue/photos/bahamas/692-180.jpg','HOOK',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(946,'Manuel Marín Jimeno',NULL,'The portrait of Juan Carlos I facing left with the date below',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n·1980·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n1980','\n',char(10)),'/photos/espagne/185-original.jpg','https://en.numista.com/catalogue/photos/espagne/185-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(991,'José Simões de Almeida, Alves Domingo Rego',NULL,'Allegory of Republic facing right with the country name and date above around the rim.',replace(replace('REPUBLICA PORTUGUESA - 1944\r\nSIMÕES\r\nREGO GR','\r',char(13)),'\n',char(10)),'[object Object]',replace(replace('José Simões de Almeida\r\nAlves Domingo Rego (REGO GR, where GR is the abbreviation for ''gravador'', which is Portuguese for engraver)','\r',char(13)),'\n',char(10)),replace(replace('Portuguese Republic - 1944\r\nSIMÕES REGO GR','\r',char(13)),'\n',char(10)),'/photos/portugal/3226-original.jpg','https://en.numista.com/catalogue/photos/portugal/3226-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1051,'Dicken Castro',NULL,'State name, denomination, and year of issue.',replace(replace('REPUBLICA DE COLOMBIA\r\n200 \r\nPESOS\r\n2005','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Colombia','/photos/colombie/1302-original.jpg','https://en.numista.com/catalogue/photos/colombie/1302-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Obverse VALUES(1073,NULL,NULL,'Colombia coat of arms and the motto "Liberty and Order"',replace(replace('REPUBLICA DE COLOMBIA \r\nLIBERTAD Y ORDEN\r\n2007','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/colombie/1299-original.jpg','https://en.numista.com/catalogue/photos/colombie/1299-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Obverse VALUES(1149,'Begoña Castellanos García',NULL,'Porch of Revellín (gate Carlos V, remaining part of the walls of the city) and tower of the church of Santa María de Palacio, both in Logroño with the country name and date above',replace(replace('ESPAÑA\r\n1996','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Spain','/photos/espagne/230-original.jpg','https://en.numista.com/catalogue/photos/espagne/230-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1236,'Marcelino Norte de Almeida',NULL,'Five escutcheons forming a cross, each one displaying five bezants',replace(replace('REPVBLICA·PORTVGVESA\r\n1958','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Portuguese Republic','/photos/portugal/3035-original.jpg','https://en.numista.com/catalogue/photos/portugal/3035-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1237,'Marcelino Norte de Almeida',NULL,'The Portuguese shield (five escutcheons forming a cross and a dot within each square) along with the date below',replace(replace('REPVBLICA·PORTVGVESA\r\n1969','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portuguese Republic\r\n1969','\r',char(13)),'\n',char(10)),'/photos/portugal/62b0b916aedac1.66511229-original.jpg','https://en.numista.com/catalogue/photos/portugal/62b0b916aedac1.66511229-180.jpg','The_Seismologist',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1238,'José Cândido',NULL,'The Portuguese coat of arms above the denomination, the date at the bottom.',replace(replace('REPUBLICA PORTUGUESA\r\n200\r\nESCUDOS\r\n1991','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portuguese Republic\r\n200\r\nEscudos\r\nINCM','\r',char(13)),'\n',char(10)),'/photos/portugal/3015-original.jpg','https://en.numista.com/catalogue/photos/portugal/3015-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1241,'Hélder Batista',NULL,replace(replace('Coat of arms of Portugal and a knot.\r\nYear of production at the end of the circular legend.','\r',char(13)),'\n',char(10)),'REPUBLICA PORTUGUESA 1994','[object Object]',NULL,'PORTUGUISE REPUBLIC 1994','/photos/portugal/63bac3529846e1.37524183-original.jpg','https://en.numista.com/catalogue/photos/portugal/63bac3529846e1.37524183-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(1242,'José Cândido',NULL,'The arms of Portugal and the denomination below and the date at the bottom',replace(replace('REPUBLICA PORTUGUESA\r\n100 ESCUDOS 2000','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Portugal\r\n100 Escudos 2000','\r',char(13)),'\n',char(10)),'/photos/portugal/63b5e0ac235cc5.49777063-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5e0ac235cc5.49777063-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(1243,'Euclides Vaz',NULL,'The arms of Portugal dividing the date and the denomination below, engraver''s name and mintmark at the bottom.',replace(replace('REPUBLICA PORTUGUESA\r\n20 ESCUDOS \r\n1987 \r\nE.VAZ INCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Portugal','/photos/portugal/3007-original.jpg','https://en.numista.com/catalogue/photos/portugal/3007-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1258,'Manuel Martínez Tornero',NULL,'Portrait of King Juan Carlos I looking to the left, with a legend surrounding it and the date below',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n· 1986 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n· 1986 ·','\n',char(10)),'/photos/espagne/181-original.jpg','https://en.numista.com/catalogue/photos/espagne/181-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1262,'Alfonso Morales Muñoz',NULL,'JCI monogram with date below',replace(replace('ESPAÑA\r\n1998','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Spain\n1998','\n',char(10)),'/photos/espagne/203-original.jpg','https://en.numista.com/catalogue/photos/espagne/203-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1263,'Rafael Vallejo García',NULL,'Standing figure of St. James and pilgrim''s shell',replace(replace('JACOBEO\r\nESPAÑA ''93','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Jubilee Year of St. James\nSpain','\n',char(10)),'/photos/espagne/207-original.jpg','https://en.numista.com/catalogue/photos/espagne/207-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1264,'Luis Antonio García Ruiz',NULL,'Centre hole divides towered buildings of the Palace of the Assembly of Melilla','ESPAÑA 1997','[object Object]',NULL,'Spain','/photos/espagne/209-original.jpg','https://en.numista.com/catalogue/photos/espagne/209-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1266,'Garcilaso Rollán Sánchez',NULL,'Gate of the house of the Orchard of the Bombs (Crowned shield with supporters on arch)','1999 ESPAÑA','[object Object]',NULL,'1999 Spain','/photos/espagne/213-original.jpg','https://en.numista.com/catalogue/photos/espagne/213-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1267,'Luis Antonio García Ruiz',NULL,'The portrait of Juan Carlos I on the left side and the value and the legend on the right side.',replace(replace('JUAN CARLOS I\r\n1 PESETA\r\nESPAÑA+','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I\n1 Peseta\nSpain','\n',char(10)),'/photos/espagne/223-original.jpg','https://en.numista.com/catalogue/photos/espagne/223-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1324,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·DEI·GRA·REG·FID·DEF ·\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/8793-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8793-180.jpg','narracan coins',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1353,'Manuel Marín Jimeno',NULL,'Depiction of King Juan Carlos I of Spain facing left with the date below',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n·1980·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Juan Carlos I King of Spain','/photos/espagne/283-original.jpg','https://en.numista.com/catalogue/photos/espagne/283-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1366,'Marcelino Norte de Almeida',NULL,replace(replace('The Portuguese shield: five escutcheons forming a cross.\r\nFive dots within each of the five escutcheons, year of production flanked by two designs.','\r',char(13)),'\n',char(10)),replace(replace('REPUBLICA PORTVGVESA \r\n1971','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3355-original.jpg','https://en.numista.com/catalogue/photos/portugal/3355-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1376,'Raphael David Maklouf',NULL,replace(replace('Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.\r\n\r\nNote: varieties exist, see below','\r',char(13)),'\n',char(10)),replace(replace('ELIZABETH II\r\nRDM\r\nD·G·REG·F·D·','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/97-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/97-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1384,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1993\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/6007ec35825a20.82463811-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6007ec35825a20.82463811-180.jpg','tolnomur',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1389,'Arnold Machin',NULL,'Second crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.','ELIZABETH·II D·G·REG·F·D·1983','[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/8141-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8141-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(1390,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1996\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/8147-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/8147-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(1395,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around',replace(replace('ELIZABETH·II·D·G REG·F·D·2001\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/600606b098d108.26297446-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/600606b098d108.26297446-180.jpg','tolnomur',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1397,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around',replace(replace('ELIZABETH II D·G·REG·F·D·1997\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/6078b061958350.66980564-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6078b061958350.66980564-180.jpg',NULL,NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(1571,NULL,NULL,'Trident with sun and moon flanking above Himalayas. Inscription below with year and name of King of Nepal.',replace(replace('नेपाल\r\n२०३०\r\nश्री ५ वीरेन्द्र वीर विक्रम शाहदेव','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Nepal\r\n2030\r\nShree Birendra Bir Bikram Shah Dev','\r',char(13)),'\n',char(10)),'/photos/nepal/1127-original.jpg','https://en.numista.com/catalogue/photos/nepal/1127-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(1589,NULL,NULL,'Cherry blossoms, authority above, value below',replace(replace('日 本 国\r\n百 円','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('State of Japan\r\n100 yen','\r',char(13)),'\n',char(10)),'/photos/japon/11-original.jpg','https://en.numista.com/catalogue/photos/japon/11-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1643,NULL,NULL,'Bust of King Rama IX facing left within circle','ภูมิพลอดุลยเดช รัชกาลที่ ๙','[object Object]',NULL,'Bhumibol Adulyadej Rama IX','/photos/thailande/21-original.jpg','https://en.numista.com/catalogue/photos/thailande/21-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(1702,NULL,'Ian Rank-Broadley','4th portrait of Queen Elizabeth II facing right wearing the Girls of Great Britain and Ireland Tiara',replace(replace('ELIZABETH II \r\nAUSTRALIA 2007\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/australie/62a210db06a899.82205180-original.jpg','https://en.numista.com/catalogue/photos/australie/62a210db06a899.82205180-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(1703,NULL,'Raphael David Maklouf','3rd portrait of Queen Elizabeth II facing right wearing the King George IV State Diadem',replace(replace('ELIZABETH II \r\nAUSTRALIA 1989\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/australie/62a2133d8489b5.93573580-original.jpg','https://en.numista.com/catalogue/photos/australie/62a2133d8489b5.93573580-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(1998,'István Kósa, István Bartos',NULL,'Crane bird or Great White Egret (Ardea alba) and the date below.','MAGYAR KÖZTÁRSASÁG · 2009 ·','[object Object]',NULL,'Republic of Hungary','/photos/hongrie/62dbe423c20a76.19689970-original.jpg','https://en.numista.com/catalogue/photos/hongrie/62dbe423c20a76.19689970-180.jpg','Máté Bikfalvi',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(2047,'João Cutileiro',NULL,'Small shield of Portugal within sprigs above the value',replace(replace('1998\r\n200 \r\nESCUDOS \r\nREPUBLICA PORTUGUESA\r\nDES. 7S GRAV.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1998\r\n200\r\nEscudos\r\nRepublic of Portugal\r\nDES. 7S GRAV.','\r',char(13)),'\n',char(10)),'/photos/portugal/3922-original.jpg','https://en.numista.com/catalogue/photos/portugal/3922-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2168,'Begoña Castellanos García',NULL,'An image of Don Quixote holding a lance, with windmills in the background in centre, the country name to the left above the mintmark. The 12 stars of the European Union are shown in the outer ring of the coin, with four of them impressed into the surface, and the date at the bottom.','ESPAÑA 20 05 M','[object Object]',NULL,'Spain 2005 M','/photos/espagne/1770-original.jpg','https://en.numista.com/catalogue/photos/espagne/1770-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(2169,'Heinz Hoyer',NULL,'The Holstentor, the gate symbolising of the town of Lübeck, is shown in the centre of the coin and below it the word ‘Schleswig-Holstein’, the first of Germany’s 16 federal states to be commemorated in a euro coin. The engraver’s initials ‘HH’ appear to the right of the image and the mintmark ‘A’, ‘D’, ‘F’, ‘G’ or ‘J’, depending on the mint, to the left. The year of mintage, 2006, the 12 stars of the European Union and the words ‘Bundesrepublik Deutschland’ are shown in the outer ring.',replace(replace('SCHLESWIG-HOLSTEIN J HH\r\nBUNDESREPUBLIK DEUTSCHLAND 2006','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/1331-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1331-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(2173,'Tatiana Sotiropoulou, Erik Maell',NULL,'Two mouflons, a species of wild sheep found in Cyprus and representative of the island’s wildlife and the 12 stars of Europe around the rim','ΚΥΠΡΟΣ · 2010 · KIBRIS','[object Object]',NULL,'Cyprus 2010 Cyprus','/photos/chypre/61f93b96d1bb75.07538638-original.jpg','https://en.numista.com/catalogue/photos/chypre/61f93b96d1bb75.07538638-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2175,'Tatiana Sotiropoulou, Erik Maell',NULL,'Mouflon, a species of wild sheep found on Cyprus and representative of the island’s wildlife.','ΚΥΠΡΟΣ·2010·KIBRIS','[object Object], [object Object]',NULL,NULL,'/photos/chypre/62c90b3f212cf3.13056628-original.jpg','https://en.numista.com/catalogue/photos/chypre/62c90b3f212cf3.13056628-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2178,'Tatiana Sotiropoulou, Erik Maell',NULL,'Kyrenia ship, a trading vessel which dates back to the fourth century BC and a symbol of Cyprus’s seafaring history and its importance as a centre of trade.','ΚΥΠΡΟΣ·2008·KIBRIS','[object Object], [object Object]',NULL,NULL,'/photos/chypre/605d6fb0cba4a0.61763198-original.jpg','https://en.numista.com/catalogue/photos/chypre/605d6fb0cba4a0.61763198-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2180,'Tatiana Sotiropoulou, Erik Maell',NULL,'A cross-shaped idol dating back to the chalcolithic period (3.000 B.C.), found in Pomos, a village in the district of Paphos. It is a characteristic example of prehistoric art in Cyprus, reflecting the island''s antiquity and civilization.',replace(replace('ΚΥΠΡΟΣ KIBRIS\r\n2008','\r',char(13)),'\n',char(10)),'[object Object], [object Object]',NULL,NULL,'/photos/chypre/686-original.jpg','https://en.numista.com/catalogue/photos/chypre/686-180.jpg','Comptoir des Monnaies','http://www.comptoir-des-monnaies.com',NULL,NULL);
INSERT INTO Obverse VALUES(2183,'Noel Galea Bason',NULL,replace(replace('The coin features the Mnajdra Temple Altar and the inscription Malta & the year (2008) below it. \r\nThe coin''s outer ring bears the 12 stars (signifying the Union of 12 countries initially into the European Union).','\r',char(13)),'\n',char(10)),replace(replace('MALTA 2008\r\nNGB','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/malte/544-original.jpg','https://en.numista.com/catalogue/photos/malte/544-180.jpg','Comptoir des Monnaies','http://www.comptoir-des-monnaies.com',NULL,NULL);
INSERT INTO Obverse VALUES(2201,'Heinz Hoyer',NULL,'The coin shows Schwerin Castle and bears the inscription ‘Mecklenburg-Vorpommern’ - the federal state of Mecklenburg-West Pomerania where the castle is located. The mintmark, ‘A’, ‘D’, ‘F’, ‘G’ or ‘J’, appears above the image, and the engraver’s initials ‘HH’ below it. The year of mintage, 2007, the 12 stars of the European Union and the words ‘Bundesrepublik Deutschland’ appear in the outer ring.',replace(replace('2007\r\nJ\r\nMECKLENBURG- \r\nVORPOMMERN\r\nHH\r\nBUNDESREPUBLIK DEUTSCHLAND','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2007\r\nF\r\nMeckelenburg-\r\nVorpommern \r\nHH \r\nFederal Republic of Germany','\r',char(13)),'\n',char(10)),'/photos/allemagne/5fc9f05b43a777.04520224-original.jpg','https://en.numista.com/catalogue/photos/allemagne/5fc9f05b43a777.04520224-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2204,'I. Vilar',NULL,'The inner part of the coin features a cork oak (quercus suber), the arms of Portugal below the lower branches to the left of the trunk, while the country name written over three lines, appears on the right. Inscribed in the form of an arc along the edge of the inner part of the coin below the tree are the artist’s signature (I. Vilar), the year of issue (2007), the mintmark (INCM) and the legend “PRESIDÊNCIA DO CONSELHO DA UE”. The outer ring of the coin bears the 12 stars of the European Union.',replace(replace('POR\r\nTV\r\nGAL\r\n2007 INCM PRESIDÊNCIA DO CONSELHO DA U.E.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Por\r\ntu\r\ngal \r\n2007 INCI Holding the Presidency of the Council of the European Union','\r',char(13)),'\n',char(10)),'/photos/portugal/2772-original.jpg','https://en.numista.com/catalogue/photos/portugal/2772-180.jpg','V. GLADYSH',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2217,NULL,NULL,'A replica of the obverse of the first national coin (KM#9) in the center and the country name above and a legend below in the outer rim',replace(replace('REPUBLICA ARGENTINA\r\nEN UNION Y LIBERTAD·PTS·J·8S\r\n·1813·\r\n· PRIMERA MONEDA PATRIA ·','\r',char(13)),'\n',char(10)),'[object Object]','8 escudos',replace(replace('Argentinian Republic\r\nIn Unity and Liberty·PTS·J·8S\r\n·1813·\r\n·First Coin of the Motherland·','\r',char(13)),'\n',char(10)),'/photos/argentine/1495-original.jpg','https://en.numista.com/catalogue/photos/argentine/1495-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2236,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2004\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/60bb754aeb0553.89555244-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/60bb754aeb0553.89555244-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(2252,NULL,NULL,'The portrait of Manuel Deodoro da Fonseca (1827-1892, who proclaimed the Brazilian republic and was its first president, facing left with the Brazilian coat of arms to the left',replace(replace('BRASIL \r\nDEODORO\r\nREPUBLI[CA]\r\n15 de NOVEMB[RO]','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Brazil\r\nDeodoro\r\nRepublic\r\nNovember 15','\r',char(13)),'\n',char(10)),'/photos/bresil/39-original.jpg','https://en.numista.com/catalogue/photos/bresil/39-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(2253,NULL,NULL,'The portrait of Pedro I (1798-1834), the founder and first ruler of the Empire of Brazil, facing left',replace(replace('BRASIL \r\nPEDRO I','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Brazil','/photos/bresil/6415b4c0a6da96.46073896-original.jpg','https://en.numista.com/catalogue/photos/bresil/6415b4c0a6da96.46073896-180.jpg','Rogbert',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2254,'Manuel Martínez Tornero',NULL,'Bioclimatic sphere, the symbol of the Expo''92 in Seville','ESPAÑA 1992','[object Object]',NULL,'Spain 1992','/photos/espagne/246-original.jpg','https://en.numista.com/catalogue/photos/espagne/246-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(2255,'Luis Antonio García Ruiz',NULL,replace('Centre hole divides inscription, date and design.\nEl Peine de los Vientos sculpture by Eduardo Chillida.','\n',char(10)),replace(replace('ESPAÑA\r\n1993','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Spain','/photos/espagne/248-original.jpg','https://en.numista.com/catalogue/photos/espagne/248-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(2304,'Manuel Martínez Tornero',NULL,'Depiction of King Juan Carlos I facing left',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n· 1995 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/2249-original.jpg','https://en.numista.com/catalogue/photos/espagne/2249-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(2374,'Manuel Marín Jimeno',NULL,'Portrait of King Juan Carlos facing left. Text in Spanish surrounding. ''Mint year'' below.',replace(replace('JUAN CARLOS REY DE ESPAÑA\r\n· 1975 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('JUAN CARLOS KING OF SPAIN\n· 1975 ·','\n',char(10)),'/photos/espagne/5019-original.jpg','https://en.numista.com/catalogue/photos/espagne/5019-180.jpg','Chilian',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2375,'Petar Stoikov, Vladimir Yossifov',NULL,'Madara horseman facing right.','БЪЛГАРИЯ','[object Object]',NULL,'Bulgaria','/photos/bulgarie/1055-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1055-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2376,'Petar Stoikov, Vladimir Yossifov',NULL,'Madara horseman facing right and the country name above','БЪЛГАРИЯ','[object Object]',NULL,'Bulgaria','/photos/bulgarie/1053-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1053-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2383,'Marcelino Norte de Almeida',NULL,'Value to right of shield',replace(replace('REPÚBLICA \r\nPORTUGUESA\r\n25 \r\nESCUDOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/5651-original.jpg','https://en.numista.com/catalogue/photos/portugal/5651-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(2384,'Marcelino Norte de Almeida',NULL,'The shield of Portugal with the denomination to the right and below and the country name above',replace(replace('REPÚBLICA PORTUGUESA\r\n25 \r\nESCUDOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Portugal','/photos/portugal/3010-original.jpg','https://en.numista.com/catalogue/photos/portugal/3010-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2432,NULL,NULL,'The holy tree of Guacarí, which got its name for celebrating the Guacari inhabitants, who preserve the Samán tree',replace(replace('REPUBLICA DE COLOMBIA\r\nEL ARBOL DE GUACARI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Colombia\r\nThe Guacari Tree','\r',char(13)),'\n',char(10)),'/photos/colombie/1287-original.jpg','https://en.numista.com/catalogue/photos/colombie/1287-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Obverse VALUES(2433,NULL,NULL,'Colombia coat of arms and the motto "Liberty and Order"',replace(replace('REPUBLICA DE COLOMBIA 2008\r\nLIBERTAD Y ORDEN','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Colombia 2008\r\nLiberty and Order','\r',char(13)),'\n',char(10)),'/photos/colombie/1297-original.jpg','https://en.numista.com/catalogue/photos/colombie/1297-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Obverse VALUES(2504,NULL,NULL,'The country name and year of issue on outer ring and the coat of arms of the Dominican Republic and denomination in the inner ring.',replace(replace('· REPUBLICA DOMINICANA ·\r\nDIOS PATRIA LIBERTAD\r\n5\r\nREPUBLICA DOMINICANA\r\nPESOS\r\n· 2008 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Dominican Republic\r\nGod Fatherland Liberty\r\nDominican Republic\r\n5 Pesos','\r',char(13)),'\n',char(10)),'/photos/republique_dominicaine/598-original.jpg','https://en.numista.com/catalogue/photos/republique_dominicaine/598-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2736,'Manuel Marín Jimeno',NULL,'Portrait facing left, lettering in Spanish around outside, date below',replace(replace('JUAN CARLOS I REY DE ESPAÑA \r\n· 1975 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n· 1975 ·','\n',char(10)),'/photos/espagne/2292-original.jpg','https://en.numista.com/catalogue/photos/espagne/2292-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(2763,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around',replace(replace('ELIZABETH·II·D·G REG·F·D·2005\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/606b8078581b90.27995667-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/606b8078581b90.27995667-180.jpg',NULL,NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(2842,NULL,NULL,'"Chilena" with burst chains symbolizing a free and independent Chile of the Marxist regime.',replace(replace('REPUBLICA DE CHILE\r\n11-IX\r\nSo\r\nLIBERTAD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Chile\r\n11-IX\r\nSo\r\nFreedom','\r',char(13)),'\n',char(10)),'/photos/chili/1661-original.jpg','https://en.numista.com/catalogue/photos/chili/1661-180.jpg','Quodlibet',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2903,'Arthur Sutherland',NULL,'South African coat of arms, surrounded by Zulu legend',replace(replace('iNingizimu Afrika 2020\r\nǃKE E: ǀXARRA ǁKE\r\nALS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/afrique_du_sud/60356279a935c3.92187431-original.jpg','https://en.numista.com/catalogue/photos/afrique_du_sud/60356279a935c3.92187431-180.jpg','Robert Cronjé',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(2986,'Manuel Martínez Tornero',NULL,'Depiction of King Juan Carlos I facing left',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n· 1999 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Juan Carlos I King of Spain','/photos/espagne/570-original.jpg','https://en.numista.com/catalogue/photos/espagne/570-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(2994,'Erich Ott',NULL,'The coin depicts the baroque church of St. Michaelis, or “Michel” as it is popularly known. It is a symbol of the city and federal state of Hamburg, as the inscription below the image indicates. The year of issue, 2008, the 12 stars of the European Union and the words ‘BUNDESREPUBLIK DEUTSCHLAND’ appear on the outer ring. The mintmark is shown in the upper right part of the coin.',replace(replace('HAMBURG G OE\r\nBUNDESREPUBLIK DEUTSCHLAND 2008','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Hamburg\r\nFederal State of Germany 2008','\r',char(13)),'\n',char(10)),'/photos/allemagne/627f62bdaef157.66072696-original.jpg','https://en.numista.com/catalogue/photos/allemagne/627f62bdaef157.66072696-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(3002,NULL,NULL,'Name of the country, national coat of arms, portrait, and name of the scientist and politician Eugenio Espejo',replace(replace('REPUBLICA DEL ECUADOR\r\n**EUGENIO ESPEJO**','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Ecuador\r\nEugenio Espejo','\r',char(13)),'\n',char(10)),'/photos/equateur/5fc7c8fa6e50a5.14949255-original.jpg','https://en.numista.com/catalogue/photos/equateur/5fc7c8fa6e50a5.14949255-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(3044,NULL,NULL,'Bust of Atatürk 3/4 left within circle','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/1170-original.jpg','https://en.numista.com/catalogue/photos/turquie/1170-180.jpg','KennyG',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3200,'Manuel Marín Jimeno',NULL,'Portrait of king Juan Carlos I of Spain facing right and the series date below',replace(replace('JUAN CARLOS I REY DE ESPANA\r\n· 1975 ·','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n1975','\n',char(10)),'/photos/espagne/2296-original.jpg','https://en.numista.com/catalogue/photos/espagne/2296-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(3223,NULL,NULL,'Coat of arms, lettering around, star at bottom flanked by a dash, all within a toothed border.','REPUBLICA DE BOLIVIA','[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/62023dc19a2656.58434193-original.jpg','https://en.numista.com/catalogue/photos/bolivie/62023dc19a2656.58434193-180.jpg','nordboutik59',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3224,NULL,NULL,'Emblem of Bolivia (the sun, two mountains (the Cerro Rico and the Cerro Menor in Potosi), a chapel, a palm tree and a lama), ten stars below for the ten departments that existed before the war with Chile.',replace(replace('REPUBLICA DE BOLIVIA\r\n**********','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/62054d5c05a143.15871433-original.jpg','https://en.numista.com/catalogue/photos/bolivie/62054d5c05a143.15871433-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3225,NULL,NULL,'Coat of arms, lettering around, star at bottom flanked by a dash, all within a toothed border.',replace(replace('REPUBLICA DE BOLIVIA\r\nBOLIVIA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/61ffcb781e47e6.03131765-original.jpg','https://en.numista.com/catalogue/photos/bolivie/61ffcb781e47e6.03131765-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3228,NULL,NULL,'National Coat of Arms, legend around, star below.',replace(replace('REPUBLICA DE BOLIVIA\r\nBOLIVIA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/307-original.jpg','https://en.numista.com/catalogue/photos/bolivie/307-180.jpg','seb',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3256,NULL,NULL,'The Cabildo building in the center with the country name above around the rim with a point at the beginning and end and the inscription "EN UNION Y LIBERTAD" at the bottom of milled edge points','REPUBLICA ARGENTINA · EN UNION Y LIBERTAD ·','[object Object]',NULL,'Republic of Argentina · In Union and Liberty','/photos/argentine/1180-original.jpg','https://en.numista.com/catalogue/photos/argentine/1180-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3282,'Marcelino Norte de Almeida',NULL,'The Portuguese shield: five escutcheons forming a cross, each has five dots marking imaginary corners and center of a square.',replace(replace('REPUBLICA PORTUGUESA\r\n1970','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/637b551e3567a4.23331048-original.jpg','https://en.numista.com/catalogue/photos/portugal/637b551e3567a4.23331048-180.jpg','karrlot',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3372,'Begoña Castellanos García',NULL,'A portrait of Miguel de Cervantes, the father of Spanish literature, facing left with his name, a quill, the country name and the royal monogram to the left, encircled by the twelve stars of Europe, of which four are bound by a band',replace(replace('ESPAÑA \r\nCervantes\r\nM\r\n2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Spain\r\nCervantes\r\nM\r\n2009','\r',char(13)),'\n',char(10)),'/photos/espagne/62bc4f386714a1.92979482-original.jpg','https://en.numista.com/catalogue/photos/espagne/62bc4f386714a1.92979482-180.jpg','RuibaiK',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(3510,'Laurent Jorio',NULL,'The Sower walking left surrounded by rays, lines, and the 12 stars of the European Union','RF 2011 L. JORIO d''ap. O. ROTY','[object Object]','Republique Française 2011 Laurent Jorio d''après Oscar Roty','Republic of France 2011 Laurent Jorio after Oscar Roty','/photos/france/63bdb3eb043d78.19121517-original.jpg','https://en.numista.com/catalogue/photos/france/63bdb3eb043d78.19121517-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(3818,NULL,NULL,replace(replace('Inner disc: Portrait facing left\r\nOuter circle: Five grooves, with star at bottom, lettering at sides: "Mohammed VI, Kingdom of Morocco"','\r',char(13)),'\n',char(10)),replace(replace('محمد السادس\r\nالمملكة المغربية','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Muhammad the Sixth\r\nThe Kingdom of Morocco','\r',char(13)),'\n',char(10)),'/photos/maroc/614-original.jpg','https://en.numista.com/catalogue/photos/maroc/614-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(3888,'Manuel Martínez Tornero',NULL,'Map of the Camino de Santiago through France and Spain',replace(replace('CAMINO DE SANTIAGO\r\n100 \r\nPESETAS\r\nESPAÑA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Road to Santiago / Way of Saint James\nSpain','\n',char(10)),'/photos/espagne/3801-original.jpg','https://en.numista.com/catalogue/photos/espagne/3801-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(3932,'Manuel Marín Jimeno',NULL,'The bust of Juan Carlos I facing left with the date below.',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n1983','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n1983','\n',char(10)),'/photos/espagne/442-original.jpg','https://en.numista.com/catalogue/photos/espagne/442-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(4038,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2011\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5529-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5529-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(4039,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2009\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5531-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5531-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(4141,'Frederico Augusto de Campos',NULL,'Portrait of Luís I of Portugal left','D·LUIZ·I·REI·DE·PORTUGAL','[object Object]',NULL,NULL,'/photos/portugal/60bbadd52eda20.24624387-original.jpg','https://en.numista.com/catalogue/photos/portugal/60bbadd52eda20.24624387-180.jpg','RRnumismatics',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(4546,'Luis José Díaz Salas',NULL,'Portrait of King Juan Carlos I',replace(replace('JUAN CARLOS I\r\nESPAÑA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I\nSpain','\n',char(10)),'/photos/espagne/546-original.jpg','https://en.numista.com/catalogue/photos/espagne/546-180.jpg','Numista',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(4580,'Alexander Baklanov','Alexander Baklanov',replace(replace('In the centre — the relief image of Saint George the Warrior on horseback killing a serpent with a spear;\r\n• to the right below, under the front hoof of the horse — the Cyrillic letters М (Moscow) or С-П (Saint Petersburg), indicating the mint-producer;\r\n• above from the left to the right — the inscription along the rim: “БАНК РОССИИ” (BANK OF RUSSIA) divided by the figure of Saint George the Warrior;\r\n• below under the image of the serpent — the year of mintage.','\r',char(13)),'\n',char(10)),replace(replace('БАНК РОССИИ\r\nМ\r\n2014','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Bank of Russia\r\nM','\r',char(13)),'\n',char(10)),'/photos/russie/6678-original.jpg','https://en.numista.com/catalogue/photos/russie/6678-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(4729,'Vítor Manuel Fernandes dos Santos',NULL,'Shield and flying bird above the value',replace(replace('REPUBLICA PORTUGUESA \r\n100 \r\nESCUDOS\r\n1997\r\nINCM VITOR SANTOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Portugal\r\n100\r\nEscudos\r\n1997\r\nINCM Vitor Santos','\r',char(13)),'\n',char(10)),'/photos/portugal/4750-original.jpg','https://en.numista.com/catalogue/photos/portugal/4750-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(4901,NULL,NULL,'Bolivia coat of arms in a beaded oval: the sun over two mountains, Cerro Rico and Cerro Menor in Potosi, a chapel, a palm tree, a wheat sheaf and an lama. Nine stars below which symbolize the nine departments.','REPUBLICA DE BOLIVIA','[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/6214bb38c40759.70314599-original.jpg','https://en.numista.com/catalogue/photos/bolivie/6214bb38c40759.70314599-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(4902,NULL,NULL,'Bolivia coat of arms in a beaded oval: the sun over two mountains, Cerro Rico and Cerro Menor in Potosi, a chapel, a palm tree, a wheat sheaf and an lama. Nine stars below which symbolize the nine departments.','REPUBLICA DE BOLIVIA','[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/6214bce0dbdcd7.19257317-original.jpg','https://en.numista.com/catalogue/photos/bolivie/6214bce0dbdcd7.19257317-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5010,NULL,NULL,'The arms of the Bahamas with the issuer name above and the date below',replace(replace('COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD , ONWARD TOGETHER\r\n1974','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/357-original.jpg','https://en.numista.com/catalogue/photos/bahamas/357-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5012,NULL,NULL,'The arms of the Bahamas with the country name above and the date below',replace(replace('COMMONWEALTH OF THE BAHAMAS\r\nFORWARD UPWARD ONWARD TOGETHER\r\n1974','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/261-original.jpg','https://en.numista.com/catalogue/photos/bahamas/261-180.jpg','moi4992',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(5063,'Georgios Stamatopoulos',NULL,'The coin shows a stick figure which merges into the € symbol. It seeks to convey the idea of the single currency and, by extension, Economic and Monetary Union (EMU) being the latest step in Europe’s long history of trade and economic integration. The coin is issued by each euro area country and shows the name of the country as well as the legend ‘EMU 1999-2009’ in the respective language(s). The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('RÉPUBLIQUE FRANÇAISE\r\nΓΣ\r\nUEM 1999-2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('French Republic\r\nGS\r\nEMU 1999-2009','\r',char(13)),'\n',char(10)),'/photos/france/5fc9d5d16142e0.96852743-original.jpg','https://en.numista.com/catalogue/photos/france/5fc9d5d16142e0.96852743-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(5086,'Drahomír Zobek',NULL,'Kriváň, a symbolic mountain in the High Tatras','SLOVENSKO 2017 Z','[object Object]',NULL,'Slovakia','/photos/slovaquie/61ff74e03e3057.54397091-original.jpg','https://en.numista.com/catalogue/photos/slovaquie/61ff74e03e3057.54397091-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(5109,'Petar Stoykov',NULL,'Bulgaria''s patron saint, St. Ivan Rilsky (Saint John of Rila) (c876 - 946) is the first Bulgarian hermit and the founder of the grandest monastery in Bulgaria. This coin was released on September 2nd, 2002.',replace(replace('СВ. ИВАН РИЛСКИ\r\nБЪЛГАРИЯ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('St. Ivan Rilsky\r\nBulgaria','\r',char(13)),'\n',char(10)),'/photos/bulgarie/1908-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1908-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5444,'Jaime Martins Barata',NULL,'Boat, sailing ship to the right, name of the country around and date below',replace(replace('REPUBLICA PORTUGUESA\r\n+ 1974 +','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63ba9c73ef63d4.06343315-original.jpg','https://en.numista.com/catalogue/photos/portugal/63ba9c73ef63d4.06343315-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(5492,'Marcelino Norte de Almeida',NULL,'Coats of arms of Portugal (7 castles and 5 shields)',replace(replace('REPÚBLICA·PORTUGUESA\r\n25$00','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3826-original.jpg','https://en.numista.com/catalogue/photos/portugal/3826-180.jpg','ken6528',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5624,'Begoña Castellanos García',NULL,'Depiction of Nobel prize of literature winner Jacinto Benavente facing left in circle, crowned M',replace(replace('JACINTO BENAVENTE\r\nPREMIO NOBEL LITERATURA 1922\r\nM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Jacinto Benavente\nNobel Prize Literature 1922','\n',char(10)),'/photos/espagne/2316-original.jpg','https://en.numista.com/catalogue/photos/espagne/2316-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(5628,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G·REG·F·D · 2008\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5543-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5543-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(5737,NULL,NULL,'Mount Everest and "Sagarmatha" (name of Everest in Nepali) as the inscription',replace(replace('सगरमाथा \r\n२०६६','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Sagarmatha\r\n2066','\r',char(13)),'\n',char(10)),'/photos/nepal/596-original.jpg','https://en.numista.com/catalogue/photos/nepal/596-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(5786,NULL,NULL,NULL,replace(replace('REPUBLICA PORTUGUESA\r\n1993 200\r\nESC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3859-original.jpg','https://en.numista.com/catalogue/photos/portugal/3859-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6071,'Marcelino Norte de Almeida',NULL,'Coat of arms of Portugal',replace(replace('REPUBLICA PORTUGUESA\r\n* 2$50 *','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5b7e8ee79f5.21478746-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5b7e8ee79f5.21478746-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(6163,NULL,NULL,'Head of Mustafa Kemal Atatürk facing left.','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/2815-original.jpg','https://en.numista.com/catalogue/photos/turquie/2815-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6164,NULL,NULL,'Mustafa Kemal Atatürk facing left with the country name around the rim','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/60b653bcd11049.31947954-original.jpg','https://en.numista.com/catalogue/photos/turquie/60b653bcd11049.31947954-180.jpg','rsirian1',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(6165,NULL,NULL,'Mustafa Kemal Atatürk facing left within a center circle','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/2933-original.jpg','https://en.numista.com/catalogue/photos/turquie/2933-180.jpg','AvrAlex (Belgorod, Russia)',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6258,'Hélder Batista',NULL,'Rural world',replace(replace('REPUBLICA PORTUGUESA\r\n1987','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3391-original.jpg','https://en.numista.com/catalogue/photos/portugal/3391-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6278,NULL,NULL,'Depiction of the Royal Nepalese Crown with the Year below.',replace(replace('श्री ५ वीरेन्द्र वीर विक्रम शाहदेव\r\nनेपाल २०५२','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Shree Panch Birendra Bir Bikram Shahdev\r\nNepal 2052 (i.e. 1995 in Gregorian)','\r',char(13)),'\n',char(10)),'/photos/nepal/394-original.jpg','https://en.numista.com/catalogue/photos/nepal/394-180.jpg','Nestor',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6293,'Jan Alfons Keustermans',NULL,'The bust of Albert II facing left with the date below flanked by privy marks, his monogram to the right, and the 12 stars of Europe in the outer ring','A II 2008 BE','[object Object]',NULL,NULL,'/photos/belgique/629783aa817688.55771781-original.jpg','https://en.numista.com/catalogue/photos/belgique/629783aa817688.55771781-180.jpg','Numista',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6298,'Jan Alfons Keustermans',NULL,'Left profile portrait of King Albert II is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital "A" with the Roman numeral "II".','A II 2012 BE','[object Object]',NULL,NULL,'/photos/belgique/61f93b01ae94c2.42272366-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f93b01ae94c2.42272366-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6307,'Jan Alfons Keustermans',NULL,'King Albert facing left',replace(replace('A II\r\nBE\r\n2012','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Albert II\r\nBelgium\r\n2011','\r',char(13)),'\n',char(10)),'/photos/belgique/605d6e39ef3a84.32518863-original.jpg','https://en.numista.com/catalogue/photos/belgique/605d6e39ef3a84.32518863-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6319,'Reinhart Heinsdorff',NULL,'The Brandenburg Gate, a symbol of the division of Germany and its subsequent unification surrounded with the twelve stars of Europe','2007 J','[object Object]',NULL,NULL,'/photos/allemagne/2279-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2279-180.jpg','Beehive',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6329,'Jarlath Hayes',NULL,'The Celtic harp, a traditional symbol of Ireland, with the country name to the left, the date to the right, and the 12 stars of Europe around the rim','éire 2007','[object Object]',NULL,'Ireland 2007','/photos/irlande/1054-original.jpg','https://en.numista.com/catalogue/photos/irlande/1054-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(6333,'Jarlath Hayes',NULL,'The Celtic harp, a traditional symbol of Ireland, is accompanied with the inscription "éire", the Irish word for Ireland, and encircled by the twelve stars of Europe','éire 2007','[object Object]',NULL,'Ireland 2007','/photos/irlande/6054c2f0037315.19164181-original.jpg','https://en.numista.com/catalogue/photos/irlande/6054c2f0037315.19164181-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6334,'Jarlath Hayes',NULL,'An Irish harp in the center with the country name in Irish to the left, the date to the right, and the 12 stars of Europe in the outer ring','éire 2008','[object Object]',NULL,'Ireland 2008','/photos/irlande/427-original.jpg','https://en.numista.com/catalogue/photos/irlande/427-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(6350,'Maria Andonatou, Geórgios Stamatópoulos',NULL,'A portrait of Ioannis Capodistrias (1776-1831), a leading national and European politician and diplomat who became the first Governor of Greece (1830-31) following the Greek War of Independence (1821-27), is accompanied with a legend indicating his name "Ι. Καποδίστριας" and the face value and is encircled by the twelve stars of Europe',replace(replace('20\r\n2008 ΛΕΠΤΑ\r\nΙ. ΚΑΠΟΔΙΣΤΡΙΑΣ\r\nΓΣ','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('20\r\n2008 Cents\r\nI. Kapodistrias\r\nGS','\r',char(13)),'\n',char(10)),'/photos/grece/1818-original.jpg','https://en.numista.com/catalogue/photos/grece/1818-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6361,'Begoña Castellanos García',NULL,'A portrait of Miguel de Cervantes, the father of Spanish literature, is accompanied withn his name, a quill, the lettering "ESPAÑA" (Spain) and the royal monogram an is encircled by the twelve stars of Europe of whom four are bound by a band',replace(replace('ESPAÑA\r\nCervantes\r\nM\r\n2007','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Spain\r\nCervantes\r\nM\r\n2007','\r',char(13)),'\n',char(10)),'/photos/espagne/6272885d0a7904.76191126-original.jpg','https://en.numista.com/catalogue/photos/espagne/6272885d0a7904.76191126-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6373,'Laurent Jorio',NULL,'Line image of "The Sower", a long-standing symbol of France surrounded by the twelve stars of the European Union.',replace(replace('L. JORIO d''ap. O. ROTY\r\n2011 RF','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/3410-original.jpg','https://en.numista.com/catalogue/photos/france/3410-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(6374,'Laurent Jorio',NULL,'Line image of "The Sower", a long-standing symbol of France surrounded by the twelve stars of the European Union.',replace(replace('L. JORIO d''ap. O. ROTY\r\n2011 RF','\r',char(13)),'\n',char(10)),'[object Object]',replace(replace('République française\r\nLaurent Jorio d''après Oscar Roty','\r',char(13)),'\n',char(10)),NULL,'/photos/france/605d7196763f66.48737687-original.jpg','https://en.numista.com/catalogue/photos/france/605d7196763f66.48737687-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6376,'Joaquin Jimenez',NULL,'A stylized tree inscribed in a hexagon symbolizes life, durability and growth. It is surrounded by the motto: "LIBERTY EQUALITY FRATERNITY" and the twelve stars of the European Union linked by numerous lines.',replace(replace('LIBERTÉ ÉGALITÉ FRATERNITÉ \r\nJ. JIMENEZ \r\nR F \r\n20 13','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/612b61b9bdd238.90290042-original.jpg','https://en.numista.com/catalogue/photos/france/612b61b9bdd238.90290042-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6418,'Yvette Gastauer-Claire',NULL,'A geometrical portrait of His Royal Highness Grand Duke Henri is encircled by the country name, and the twelve stars of Europe around the rim',replace(replace('LËTZEBUERG\r\n2019\r\nGC F','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Luxembourg\r\n2019\r\nGC F','\r',char(13)),'\n',char(10)),'/photos/luxembourg/2090-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/2090-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6499,NULL,NULL,'Coat of arms of Portugal - 3 characters under a tree',replace(replace('REPUBLICA\r\nPORTUGUESA · 1993\r\n200 ESC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/2304-original.jpg','https://en.numista.com/catalogue/photos/portugal/2304-180.jpg','A.Monge da Silva',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(6500,NULL,NULL,'Portuguese Coat of Arms on the left with value and date. To the righ, a 16th century sail ship on water representing the journey from Japan to Europe.',replace(replace('REPUBLICA PORTUGUESA\r\n1993\r\n200 ESC\r\nS.MACHADO\r\nINCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3419-original.jpg','https://en.numista.com/catalogue/photos/portugal/3419-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(6612,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2010\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5535-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5535-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(6926,NULL,'Ernst Nordin, Marita Norin','Head of King Carl XVI Gustaf of Sweden facing left, and the artist''s initials below and the date within the legend that surrounds around the rim',replace(replace('CARL XVI GUSTAF SVERIGES KONUNG\r\n2005\r\nEN','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Carl XVI Gustaf King of Sweden\r\n2005\r\nEN','\r',char(13)),'\n',char(10)),'/photos/suede/2000-original.jpg','https://en.numista.com/catalogue/photos/suede/2000-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7047,NULL,NULL,'Mustafa Kemal Atatürk facing left within a center circle','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/60b65167b40d77.17387560-original.jpg','https://en.numista.com/catalogue/photos/turquie/60b65167b40d77.17387560-180.jpg','rsirian1',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(7048,NULL,NULL,'Mustafa Kemal Atatürk facing left and the country name above','TÜRKİYE CUMHURİYETİ','[object Object]',NULL,'Republic of Turkey','/photos/turquie/1686-original.jpg','https://en.numista.com/catalogue/photos/turquie/1686-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(7130,'Hélder Batista',NULL,'Waves above the coat of arms of Portugal',replace(replace('० REPUBLICA + PORTUGUESA ०\r\n1974 1984\r\nHELDER BATISTA incm','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3385-original.jpg','https://en.numista.com/catalogue/photos/portugal/3385-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7184,'Rafael Vallejo García',NULL,'Conjoining busts of King Juan Carlos and crown prince Felipe',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n1992','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/6252fcc5ac5959.74575495-original.jpg','https://en.numista.com/catalogue/photos/espagne/6252fcc5ac5959.74575495-180.jpg','Chilian',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7193,NULL,NULL,'Portuguese coat of arms on the left, on the right the sea stylized as in Namban art, a compass. Name of the country and value around, circle of pearls.',replace(replace('REPUBLICA PORTUGUESA\r\n200 ESCUDOS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/631127097b1672.77118328-original.jpg','https://en.numista.com/catalogue/photos/portugal/631127097b1672.77118328-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(7337,'Marcelino Norte de Almeida',NULL,'Portuguese shield at centre surrounded by the lettering',replace(replace('REPÚBLICA PORTUGUESA\r\n5$00','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3371-original.jpg','https://en.numista.com/catalogue/photos/portugal/3371-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7338,'Marcelino Norte de Almeida',NULL,'Coat of arms of Portugal',replace(replace('REPUBLICA·PORTUGUESA\r\n* 25$00 *','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3363-original.jpg','https://en.numista.com/catalogue/photos/portugal/3363-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7398,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2006 \r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/2464-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2464-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(7461,NULL,NULL,NULL,replace(replace('श्री श्री\r\nश्री ५ वीरेन्द्र\r\nवीर विक्रम\r\nशाह देव\r\n२०५६','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/nepal/1636-original.jpg','https://en.numista.com/catalogue/photos/nepal/1636-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7524,NULL,NULL,'The value in the centre with the country name above and the date below',replace(replace('REPUBLICA DE COLOMBIA\r\n1000 \r\nPESOS\r\n1996','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Colombia\r\n1000 Pesos\r\n1996','\r',char(13)),'\n',char(10)),'/photos/colombie/1282-original.jpg','https://en.numista.com/catalogue/photos/colombie/1282-180.jpg','Ciscoins.net','https://web.archive.org/web/20201116183734/http://ciscoins.net/',NULL,NULL);
INSERT INTO Obverse VALUES(7576,'Manuel Marín Jimeno',NULL,'Head of Juan Carlos I facing left, the series date below, and his title around the rim',replace(replace('JUAN CARLOS I REY DE ESPAÑA\r\n*1975*','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Juan Carlos I King of Spain\n1975','\n',char(10)),'/photos/espagne/5591-original.jpg','https://en.numista.com/catalogue/photos/espagne/5591-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7639,'J. Aurélio',NULL,'A gymnast swirling a long ribbon and the Portuguese shield at the top together with the name of the issuing country. At the bottom, the legend ‘2.os JOGOS DA LUSOFONIA LISBOA’ is inscribed between the initials ‘INCM’ on the left and the artist''s name ‘J. AURÉLIO’ on the right. The year ‘2009’ appears above the gymnast. The coin''s outer ring shows the 12 stars of the European Union on a background of concentric circular lines.',replace(replace('PORTUGAL\r\n2.os JOGOS DA LUSOFONIA LISBOA\r\n2009\r\nINCM\r\nJ.AURÉLIO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portugal\r\n2nd Lusophony Games Lisbon\r\n2009\r\nINCM\r\nJ.AURÉLIO','\r',char(13)),'\n',char(10)),'/photos/portugal/4610-original.jpg','https://en.numista.com/catalogue/photos/portugal/4610-180.jpg','Ma collection de monnaies','https://monnaiesetvarietes.numista.com/',NULL,NULL);
INSERT INTO Obverse VALUES(7872,NULL,NULL,replace(replace('Crown\r\n"Shree 5 Virendra Veer Vikram Shahdev"\r\nNepal - date" in Devanagari\r\nencircled in beads','\r',char(13)),'\n',char(10)),replace(replace('श्री ५ वीरेन्द्र वीर विक्रम शाहदेव \r\nनेपाल - २०४७','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Birendra Bir Bikram Shah Dev\r\nNepal - 2047','\r',char(13)),'\n',char(10)),'/photos/nepal/1545-original.jpg','https://en.numista.com/catalogue/photos/nepal/1545-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(7905,'Josef Kaiser',NULL,'A portrait of Wolfgang Amadeus Mozart, the famous Austrian composer, in reference to Austria as a land of music, is accompanied with the face value and heraldic hatchings representing the Austrian flag and is encircled by the twelve stars of Europe','1 EURO 2008','[object Object]',NULL,NULL,'/photos/autriche/6214138b438758.03136018-original.jpg','https://en.numista.com/catalogue/photos/autriche/6214138b438758.03136018-180.jpg','Florino28',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(8862,NULL,NULL,'Central Circle: Trident. Legend inside the Square. Outside the Square: Hinduism symbols clockwise from top left: Chakra (Wheel), Shank (Conch), Gadha (Mace) & Padma (Lotus) Top of the square: Crescent, Symbol Sri (श्री) twice, Sun. Bottom of the Square: Year',replace(replace('श्री श्री\r\nश्री ५ वीरेन्द्र\r\nवीर विक्रम\r\nशाह देव\r\n२०४५','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/nepal/1559-original.jpg','https://en.numista.com/catalogue/photos/nepal/1559-180.jpg','Alexandr Prokofyev',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(8896,NULL,NULL,'Head of the Republic facing left with geometric patterns and legend at left.','BRASIL','[object Object]',NULL,'BRAZIL','/photos/bresil/6415b67398cc93.94235770-original.jpg','https://en.numista.com/catalogue/photos/bresil/6415b67398cc93.94235770-180.jpg','Rogbert',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(8925,'Rafael Vallejo García',NULL,'Conjoined busts of King and Crown Prince right',replace(replace('JUAN CARLOS 1 REY DE ESPANA\r\n1998','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/2318-original.jpg','https://en.numista.com/catalogue/photos/espagne/2318-180.jpg','Union Latine','https://web.archive.org/web/20190818001417/http://www.union-latine.com/',NULL,NULL);
INSERT INTO Obverse VALUES(9224,NULL,NULL,'The arms of the Bahamas with the country name above and the date below',replace(replace('COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD, ONWARD TOGETHER\r\n1974','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/359-original.jpg','https://en.numista.com/catalogue/photos/bahamas/359-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9285,'Alves do Rego',NULL,'National coat of arms - armillary sphere under Portuguese shield of arms. Beaded border',NULL,NULL,NULL,NULL,'/photos/portugal/2661-original.jpg','https://en.numista.com/catalogue/photos/portugal/2661-180.jpg','A. Monge da Silva',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(9761,'Josef Kaiser',NULL,'A portrait of the radical pacifist Bertha von Suttner, a symbol of Austria''s efforts over many decades to support peace, is accompanied with the face value and heraldic hatchings representing the Austrian flag and is encircled by the twelve stars of Europe','2 EURO 2012','[object Object]',NULL,NULL,'/photos/autriche/612b5910ca3219.30085676-original.jpg','https://en.numista.com/catalogue/photos/autriche/612b5910ca3219.30085676-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(9826,'Marcelino Norte de Almeida',NULL,'Shield above denomination',replace(replace('· REPUBLICA PORTUGUESA ·\r\n1$00','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Portugese republic','/photos/portugal/3836-original.jpg','https://en.numista.com/catalogue/photos/portugal/3836-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9828,'Marcelino Norte de Almeida',NULL,'Portuguese shield at centre surrounded by the lettering',replace(replace('REPUBLICA PORTUGUESA\r\n2$50','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3367-original.jpg','https://en.numista.com/catalogue/photos/portugal/3367-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9831,'Marcelino Norte de Almeida',NULL,'Lesser Coat of Arms (The Portuguese shield: five escutcheons forming a cross and seven Castles).',replace(replace('REPUBLICA PORTUGUESA\r\n25$00','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3377-original.jpg','https://en.numista.com/catalogue/photos/portugal/3377-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9834,'António Marinho',NULL,'Arms of Portugal above value to the left of the design',replace(replace('REPÚBLICA PORTUGUESA\r\n200\r\nESCUDOS\r\n1991','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Portugal\r\n200\r\nEscudos\r\n1991','\r',char(13)),'\n',char(10)),'/photos/portugal/3411-original.jpg','https://en.numista.com/catalogue/photos/portugal/3411-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9894,'V. M. Fernandes dos Santos',NULL,'The third royal seal of 1144 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear on the Portuguese flag, and the letters of the word "PORTUGAL", all encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPO RT\r\nVG AL\r\nVS INCM\r\n2 0 0 9','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/6054c6638a0f02.86051347-original.jpg','https://en.numista.com/catalogue/photos/portugal/6054c6638a0f02.86051347-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(9895,'Vítor Manuel Fernandes dos Santos',NULL,'The second royal seal of 1142 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear an the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPO RT\r\nVG AL\r\nVS INCM\r\n2 0 0 9','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3481-original.jpg','https://en.numista.com/catalogue/photos/portugal/3481-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(9896,'V. M. F. dos Santos',NULL,'The second royal seal of 1142 of Afonso Henriques, the first king of Portugal, is encircled by alternately the seven country''s castles and the five coats of arms, which appear an the Portuguese flag, and the letters of the word "PORTUGAL", themselves encircled by the twelve stars of Europe',replace(replace('P O R T U G A L\r\nPO RT\r\nVG AL\r\nVS INCM\r\n2 0 0 9','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3483-original.jpg','https://en.numista.com/catalogue/photos/portugal/3483-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(10004,'Wuthichai Saengngoen',NULL,'Portrait of king Rama IX','ภูมิพลอดุลยเดช รัชกาลที่ ๙',NULL,NULL,'Bhumibol Adulyadej Rama IX','/photos/thailande/1550-original.jpg','https://en.numista.com/catalogue/photos/thailande/1550-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(10126,'Marcelino Norte de Almeida',NULL,'Value, Coat of Arms',replace(replace('REPÚBLICA PORTUGUESA\r\n* 5$00 *','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3361-original.jpg','https://en.numista.com/catalogue/photos/portugal/3361-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(10288,NULL,NULL,'Olympic torch',replace(replace('REPUBLICA PORTUGUESA\r\n200\r\nESCUDOS\r\nNOGUEIRA DA SILVA INCM\r\n2000','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/63b5dd80616ed2.87781513-original.jpg','https://en.numista.com/catalogue/photos/portugal/63b5dd80616ed2.87781513-180.jpg','NumisCorner','https://www.numiscorner.com/',NULL,NULL);
INSERT INTO Obverse VALUES(10854,'Garcilaso Rollan',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, is encircled by the lettering "ESPAÑA" (Spain), the royal monogram and the twelve stars of Europe','ESPAÑA 2010 M','[object Object]',NULL,'Spain','/photos/espagne/61ff754bb64b05.15685511-original.jpg','https://en.numista.com/catalogue/photos/espagne/61ff754bb64b05.15685511-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(10856,'Garcilaso Rollán',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, is encircled by the lettering "ESPAÑA" (Spain), the royal monogram and the twelve stars of Europe','ESPAÑA 2010 M','[object Object]',NULL,'Spain 2010 M','/photos/espagne/62729515dfc227.81121665-original.jpg','https://en.numista.com/catalogue/photos/espagne/62729515dfc227.81121665-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(10857,'Garcilaso Rollan',NULL,'The cathedral of Santiago de Compostela, a jewel of Spanish Romanesque architecture and one of the most famous pilgrimage destinations in the world, encircled with the country name, the royal monogram and the twelve stars of Europe around the rim','ESPAÑA 2010','[object Object]',NULL,'Spain 2010','/photos/espagne/6213534f299c89.05040142-original.jpg','https://en.numista.com/catalogue/photos/espagne/6213534f299c89.05040142-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(10860,'Begoña Castellanos García',NULL,'A portrait of Miguel de Cervantes, the father of Spanish literature, is accompanied with his name, a quill, the lettering "ESPAÑA" (Spain), and the royal monogram an is encircled by the twelve stars of Europe',replace(replace('ESPAÑA Cervantes\r\nM 2015','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/605d7eb9575492.29372486-original.jpg','https://en.numista.com/catalogue/photos/espagne/605d7eb9575492.29372486-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(10862,'Luis José Díaz Salas',NULL,'A portrait of King Juan Carlos I is encircled by the lettering "ESPAÑA" (Spain), the logo of National Factory of Currency and Stamps and the twelve stars of Europe.',replace(replace('ESPAÑA 2012\r\nM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/627244854487d1.79975003-original.jpg','https://en.numista.com/catalogue/photos/espagne/627244854487d1.79975003-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(11526,'Nicolas Cozon',NULL,'The coin commemorates the 70th anniversary of the appeal (“Appel du 18 juin”) made by General de Gaulle – the leader of the Free French Forces – on the BBC in London on 18 June 1940, after the fall of France. Addressing the French people, de Gaulle declared that the war was not yet over. The speech is considered to mark the birth of the French Resistance and the beginning of its fight against the occupation of France during World War II. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('2010 \r\n70 ANS APPEL 18 JUIN\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]','République française',replace(replace('2010\r\n70 Years of the Appeal on 18th June\r\nRF','\r',char(13)),'\n',char(10)),'/photos/france/5675-original.jpg','https://en.numista.com/catalogue/photos/france/5675-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(11635,'José Cândido',NULL,'Shield within globe above value',replace(replace('REPUBLICA PORTUGUESA\r\n200\r\nESCUDOS\r\n1995 J.CANDIDO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3425-original.jpg','https://en.numista.com/catalogue/photos/portugal/3425-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(11691,'Isabel Carriço/Fernando Branco',NULL,NULL,replace(replace('REPUBLICA PORTUGUESA\r\n1997\r\n200 ESC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/4756-original.jpg','https://en.numista.com/catalogue/photos/portugal/4756-180.jpg','Rui-Manuel',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(11695,'Isabel Carriço/Fernando Branco',NULL,'Under a pepper tree twig, the coat of arms of Portugal, the value, and a local boat with lateen sail. Around, country name, date belowr and pearl circle broken by 2 rosettes.',replace(replace('REPUBLICA PORTUGUESA\r\n200 ESC\r\n1998','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/2307-original.jpg','https://en.numista.com/catalogue/photos/portugal/2307-180.jpg','A.Monge da Silva',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(11952,'Marcelino Norte de Almeida',NULL,'Shield',replace(replace('REPUBLICA PORTUGUESA \r\n1985','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3369-original.jpg','https://en.numista.com/catalogue/photos/portugal/3369-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(13034,'A.Marinho',NULL,NULL,replace(replace('REPUBLICA PORTUGUESA\r\n200\r\nESC\r\n·1999','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3445-original.jpg','https://en.numista.com/catalogue/photos/portugal/3445-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(13038,'E.Byrne',NULL,'Coat of arms of Portugal on top, two ships, caravels with lateen sails, date and value below. Beaded circle around.',replace(replace('REPUBLICA PORTUGUESA\r\n1999\r\n200 ESC','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/3449-original.jpg','https://en.numista.com/catalogue/photos/portugal/3449-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(13820,NULL,NULL,'National arms, star below.','REPUBLICA DE BOLIVIA','[object Object]',NULL,'Republic of Bolivia','/photos/bolivie/1096-original.jpg','https://en.numista.com/catalogue/photos/bolivie/1096-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(15296,'Arnold Machin',NULL,'The arms of the Bahamas with the country name above and the date below',replace(replace('COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD, ONWARD TOGETHER\r\n2005','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/bahamas/688-original.jpg','https://en.numista.com/catalogue/photos/bahamas/688-180.jpg','fryant',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(15575,NULL,NULL,replace(replace('Nepal King''s Crown Below this is the\r\n2 Nepal Flags crossed & 2 Draggers crossed encompassing the \r\nPada''s (feet) of the Almighty\r\nNepal\r\nVikram Samvat Era (VS) : 2060\r\nGregorian Calendar: VS - 57 years (2060 VS - 57 = 2003 AD)','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,replace(replace('Sri Jnyānēndra Vir Vikrama Shahdev\r\nNepal 2060 (VE)','\r',char(13)),'\n',char(10)),'/photos/nepal/960-original.jpg','https://en.numista.com/catalogue/photos/nepal/960-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(16586,'L. Lõhmus',NULL,'Silhouette map of Estonia and twelve stars (symbolic of the European Union) surrounding the map',replace(replace('2018\r\nEESTI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2018\r\nEstonia','\r',char(13)),'\n',char(10)),'/photos/estonie/563-original.jpg','https://en.numista.com/catalogue/photos/estonie/563-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(16588,'L. Lõhmus',NULL,'A silhouette map of Estonia with the year above and the country name below and twelve five-pointed stars around the rim representing the European Union',replace(replace('2018\r\nEESTI','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2018\r\nEstonia','\r',char(13)),'\n',char(10)),'/photos/estonie/565-original.jpg','https://en.numista.com/catalogue/photos/estonie/565-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(18054,NULL,NULL,'National arms, circular legend with new country name, star on bottom.','ESTADO PLURINACIONAL DE BOLIVIA','[object Object]',NULL,'Plurinational State of Bolivia','/photos/bolivie/61fbd8cdc521c7.95775717-original.jpg','https://en.numista.com/catalogue/photos/bolivie/61fbd8cdc521c7.95775717-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(18666,'Heinz Hoyer',NULL,'The Köln (Cologne) Cathedral in its entirety, a masterpiece of the German Gothic architectural style, emphasizing the beauty of the south portal. The name NORDRHEIN-WESTFALEN, just below the building, links the pictured building with the state. The mint mark is located in the right upper core region, the initials of the artist, Heinz Hoyer, in the right central core area. The coin’s outer ring depicts the 12 stars of the European Union flag. Between the stars, at the bottom, the year ‘2011’ and at the top the indication of the issuing country reference ‘D’.',replace(replace('D \r\nD \r\nHH\r\nNORDRHEIN-\r\nWESTFALEN\r\n20 11','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('D \r\nD \r\nHH\r\nNORTH RHINE-\r\nWESTPHALIA\r\n20 11','\r',char(13)),'\n',char(10)),'/photos/allemagne/628c807da64858.05961836-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628c807da64858.05961836-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(19979,'Alfonso Morales Múnoz',NULL,'The inner part of the coin depicts the Court of the Lions in the Alhambra, the fortified castle in the city of Granada, which was declared a UNESCO World Heritage site in 1984. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('M\r\nESPAÑA 2011','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('M\r\nSpain 2011','\r',char(13)),'\n',char(10)),'/photos/espagne/627f678034f618.65437641-original.jpg','https://en.numista.com/catalogue/photos/espagne/627f678034f618.65437641-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(20700,'Raphael David Maklouf',NULL,'Third crowned portrait of HM Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II D·G·REG·F·D·1997\r\nRDM','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5f816920837ae2.44392262-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f816920837ae2.44392262-180.jpg','squivvia',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(20892,'Ettore Lorenzo Frapiccini',NULL,'The inner part of the coin shows, in the centre, three Italian flags fluttering in the wind, to mark three past periods of 50 years each – the periods ending in 1911, 1961 and 2011 respectively – in illustration of a perfect link between generations: this is the logo of the 150th anniversary of the unification of Italy. Written in a semi-circle along the upper outer edge around the three flags is the inscription “150° DELL’ UNITÁ D’ITALIA” (150th anniversary of the unification of Italy), with the letters “RI” superimposed on one another off-centre to the right in indication of the issuing country, the Republic of Italy. Beneath the three flags stand the dates “1861 › 2011 › ›”. Centred below the dates is the mintmark “R”, with the letters “ELF INC.”, the initials of the artist Ettore Lorenzo Frapiccini and the first three letters of the Italian name of his profession (incisore) along the bottom edge to the right. The 12 stars of the European Union are depicted on the coin’s outer ring.',replace(replace('150° DELL'' UNITA’ D’ITALIA\r\nRI\r\n1861 > 2011 >>\r\nR ELF INC.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'150th anniversary of the unification of Italy','/photos/italie/61c7465cb4ac27.18683276-original.jpg','https://en.numista.com/catalogue/photos/italie/61c7465cb4ac27.18683276-180.jpg','Numista',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(22038,NULL,NULL,'Bust of King Rama IX facing left within circle','ภูมิพลอดุลยเดช รัชกาลที่ ๙',NULL,NULL,'Bhumibol Adulyadej Rama IX','/photos/thailande/1884-original.jpg','https://en.numista.com/catalogue/photos/thailande/1884-180.jpg','gef',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(22544,NULL,NULL,'Royal crown','२०५८',NULL,NULL,'2058','/photos/nepal/396-original.jpg','https://en.numista.com/catalogue/photos/nepal/396-180.jpg','Ben Dettweiler',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(22652,NULL,NULL,'Representation of SPUTNIK 1 the first artificial satellite launched by the U.S.S.R.',replace(replace('SPUTNIK 1\r\n1957','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/62c7ffaa1d19e0.57834511-original.jpg','https://en.numista.com/catalogue/photos/france/62c7ffaa1d19e0.57834511-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(24276,NULL,NULL,'Representation of the "JUPITER" rocket which placed in orbit the first American satellite.',replace(replace('WERNHER VON BRAUN\r\nJUPITER C 1958','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/france/62c801bb9f44d2.91016543-original.jpg','https://en.numista.com/catalogue/photos/france/62c801bb9f44d2.91016543-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(25746,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2011\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5541-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5541-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(25766,'Ian Rank-Broadley',NULL,'Fourth crowned portrait of HM Queen Elizabeth II right, wearing the Girls of Great Britain and Ireland tiara, legend around.',replace(replace('ELIZABETH·II·D·G REG·F·D·2012\r\nIRB','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5537-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5537-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(26208,NULL,NULL,'Royal Crown of King of Nepal',NULL,NULL,NULL,replace(replace('Sri Gyanendra Bir Bikram Shahdev\r\nNepal','\r',char(13)),'\n',char(10)),'/photos/nepal/958-original.jpg','https://en.numista.com/catalogue/photos/nepal/958-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(26791,NULL,NULL,'Central Circle: Trident Inside the Square: King''s Name (Gyanendra Bir Bikram Shah Dev) Outside the Square: Hinduism Icons; Clockwise from Top Left : Chakra (Wheel), Shank (Conch), Gadha (Mace) & Padma (Lotus) Top of the square: Crescent, Symbol Sri (श्री), Sun. Bottom of the Square: Year',NULL,NULL,NULL,NULL,'/photos/nepal/956-original.jpg','https://en.numista.com/catalogue/photos/nepal/956-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(26792,NULL,NULL,'Trident within center circle. Nepali characters around, with date below.',replace(replace('श्री श्री \r\nश्री ५ वीरेन्द्र\r\nवीर विक्रम\r\nशाह देव\r\n२०५३','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Shree Birendra Bir Bikram Shah Dev\r\n2053','\r',char(13)),'\n',char(10)),'/photos/nepal/950-original.jpg','https://en.numista.com/catalogue/photos/nepal/950-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(27352,NULL,NULL,'Head 3/4 left, lettering surrounding.',replace(replace('المملكة المغربية\r\nمحمد السادس','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Kingdom of Morocco\r\nMohammed VI','\r',char(13)),'\n',char(10)),'/photos/maroc/1346-original.jpg','https://en.numista.com/catalogue/photos/maroc/1346-180.jpg','Dario Silva Collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(27395,NULL,NULL,'Head Mohammed VI left',replace(replace('المملكة المغربية\r\nمحمد السادس','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/maroc/1413-original.jpg','https://en.numista.com/catalogue/photos/maroc/1413-180.jpg','Essor Prof',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(27528,NULL,NULL,'Sun of May within the Logo of Bicentenario for the celebration of the Bicentenary of the Revolution of May in 2010.',replace(replace('REPÚBLICA ARGENTINA\r\nEN UNIÓN Y LIBERTAD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of Argentina\r\nIn unity and liberty','\r',char(13)),'\n',char(10)),'/photos/argentine/1072-original.jpg','https://en.numista.com/catalogue/photos/argentine/1072-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(28191,'Helmut Andexlinger',NULL,'Coin features the world in the form of a euro symbol in the centre, showing how the euro has become a true global player over the last ten years. The surrounding elements symbolise the importance of the euro to ordinary people (represented by a family group), to the financial world (the Eurotower), to trade (a ship), to industry (a factory), and to the energy sector and research and development (two wind turbines). The designer’s initials, “A.H.”, can be found (if you look very carefully) between the ship and the Eurotower. Along the upper and lower edges of the inner part of the coin are, respectively, the country of issue and the years “2002 – 2012”. The coin will be issued by all euro area countries. The coin’s outer ring depicts the 12 stars of the European Union.',replace(replace('REPUBLIK ÖSTERREICH\r\nA.H.\r\n€\r\n2002 2012','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/autriche/2665-original.jpg','https://en.numista.com/catalogue/photos/autriche/2665-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(28330,'Helmut Andexlinger',NULL,'The world in the form of a euro symbol in the center, showing how the euro has become a truly global player over the last ten years. The surrounding elements symbolize the importance of the euro to ordinary people (represented by a family group), to the financial world (the Eurotower), to trade (a ship), to industry (a factory), and to the energy sector and research and development (two wind turbines). The designer’s initials, “A.H.”, can be found (if you look very carefully) between the ship and the Eurotower. Along the upper and lower edges of the inner part of the coin are, respectively, the country of issue and the years “2002 – 2012”. The coin will be issued by all euro area countries. The coin’s outer ring depicts the 12 stars of the European Union.',replace(replace('RÉPUBLIQUE FRANÇAISE\r\nA.H.\r\n€\r\n2002 2012','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Republic of France\r\nA.H.\r\nEuro\r\n2002 2012','\r',char(13)),'\n',char(10)),'/photos/france/4095-original.jpg','https://en.numista.com/catalogue/photos/france/4095-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Obverse VALUES(28608,'Petar Stoikov, Vladimir Yossifov',NULL,'Madara horseman facing right and the country name at the top','БЪЛГАРИЯ','[object Object]',NULL,'Bulgaria','/photos/bulgarie/1519-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1519-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(28610,'Petar Stoikov, Vladimir Yossifov',NULL,'Madara horseman facing right with the country name above','БЪЛГАРИЯ','[object Object]',NULL,'Bulgaria','/photos/bulgarie/1506-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1506-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(28611,'Petar Stoikov, Vladimir Yossifov',NULL,'Madara horseman facing right with the country name above','БЪЛГАРИЯ','[object Object]',NULL,'Bulgaria','/photos/bulgarie/1537-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1537-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(32604,'Susan Taylor','Susanna Blunt','Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.',replace(replace('ELIZABETH II D·G·REGINA\r\n2012\r\nSB','\r',char(13)),'\n',char(10)),'[object Object]','ELIZABETH II DEI GRATIA REGINA',replace('Elizabeth II Queen by the grace of God\n','\n',char(10)),'/photos/canada/3228-original.jpg','https://en.numista.com/catalogue/photos/canada/3228-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(36732,NULL,NULL,'Bust of Nurhaci Emperor','1616 - 1626',NULL,NULL,NULL,'/photos/chine/606231d4e994d3.74372623-original.jpg','https://en.numista.com/catalogue/photos/chine/606231d4e994d3.74372623-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36733,NULL,NULL,'Bust of Hong Taiji Emperor','1627 -1643',NULL,NULL,NULL,'/photos/chine/606231d76e8e00.74202044-original.jpg','https://en.numista.com/catalogue/photos/chine/606231d76e8e00.74202044-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36734,NULL,NULL,'Bust of Shunzi Emperor','1644 - 1661',NULL,NULL,NULL,'/photos/chine/606231d9c1f135.59604933-original.jpg','https://en.numista.com/catalogue/photos/chine/606231d9c1f135.59604933-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36735,NULL,NULL,'Bust of Kangxi Emperor',replace(replace('帝皇熙康清大\r\n1662 - 1722','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,'/photos/chine/606231dc05d215.51318411-original.jpg','https://en.numista.com/catalogue/photos/chine/606231dc05d215.51318411-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36736,NULL,NULL,'Bust of Yongzhen Emperor','1723 - 1735',NULL,NULL,NULL,'/photos/chine/606231de6464a4.68391610-original.jpg','https://en.numista.com/catalogue/photos/chine/606231de6464a4.68391610-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36737,NULL,NULL,'Bust of Qianlong Emperor',NULL,NULL,NULL,NULL,'/photos/chine/606231e0bfdd47.88634228-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e0bfdd47.88634228-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36738,NULL,NULL,'Bust of Jiaqing Emperor','1796 - 1820',NULL,NULL,NULL,'/photos/chine/606231e2f28b11.88656580-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e2f28b11.88656580-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36739,NULL,NULL,'Bust of Daoguang Emperor','1821 - 1850',NULL,NULL,NULL,'/photos/chine/606231e55d66b3.24946684-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e55d66b3.24946684-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36740,NULL,NULL,'Bust of Xianfeng Emperor','1851 - 1861',NULL,NULL,NULL,'/photos/chine/606231e7a15974.04430050-original.jpg','https://en.numista.com/catalogue/photos/chine/606231e7a15974.04430050-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36741,NULL,NULL,'Bust of Tongxhi Emperor','1862 -1874',NULL,NULL,NULL,'/photos/chine/606231ea00cf51.47598134-original.jpg','https://en.numista.com/catalogue/photos/chine/606231ea00cf51.47598134-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36742,NULL,NULL,'Bust of Guanxu Emperor','1875 - 1908',NULL,NULL,NULL,'/photos/chine/606231ec454af0.23645790-original.jpg','https://en.numista.com/catalogue/photos/chine/606231ec454af0.23645790-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(36743,NULL,NULL,'Bust of Xuantong Emperor','1909 - 1911',NULL,NULL,NULL,'/photos/chine/606231ee890585.62943757-original.jpg','https://en.numista.com/catalogue/photos/chine/606231ee890585.62943757-180.jpg','baggasuresh',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(40522,NULL,NULL,'Denomination in Arabic characters surrounded by the country name',replace(replace('الامارات العربية المتحدة\r\n١\r\nدرهمـ\r\nUNITED ARAB EMIRATES','\r',char(13)),'\n',char(10)),'[object Object], [object Object]',NULL,replace(replace('United Arab Emirates\r\n1\r\nDirham\r\nUnited Arab Emirates','\r',char(13)),'\n',char(10)),'/photos/emirats_arabes_unis/284-original.jpg','https://en.numista.com/catalogue/photos/emirats_arabes_unis/284-180.jpg','Joseph Kunnappally',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(41904,'Stefanie Lindner, Yves Sampo, Alina Hoyer, Sneschana Russewa-Hoyer',NULL,'The coin, which was designed by Yves Sampo (Monnaie de Paris), Stefanie Lindner (Berlin State Mint), Alina Hoyer (Berlin) and Sneschana Russewa-Hoyer (Berlin), depicts stylised portraits of the signatories to the Élysée Treaty (Konrad Adenauer, then Chancellor of the Federal Republic of Germany, and Charles de Gaulle, former President of the French Republic) above their respective signatures on either side of the words “50 ANS JAHRE” and the year “2013” in the centre. The words “TRAITÉ DE L’ÉLYSÉE” and “ÉLYSÉE-VERTRAG” are centred along the top and bottom edge, respectively, of the inner part of the coin. On the right-hand inner edge below the portrait of Adenauer, the inner part also features the “fleurette” (hallmark of the engraving workshop) and the letters “RF” to denote the issuing country, while the mint mark is located on the coin’s left-hand inner edge below the portrait of de Gaulle. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('TRAITÉ\r\nDE L''ÉLYSÉE\r\n50\r\nANS\r\nJAHRE\r\n2013\r\nÉLYSÉE-\r\nVERTRAG\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]','République française',replace(replace('Élysée Treaty\r\n50 Years','\r',char(13)),'\n',char(10)),'/photos/france/5145-original.jpg','https://en.numista.com/catalogue/photos/france/5145-180.jpg','bofried',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(42976,'Alfonso Morales Múnoz',NULL,'The inner part of the coin depicts a view of the San Lorenzo del Escorial Monastery. On the upper side, in circular sense and with capital letters, the name of the issuing country ‘ESPAÑA’. At the right hand side, the year of issuance ‘2013’ and the mint mark. The coin’s outer ring depicts the 12 stars of the European flag.',replace(replace('ESPAÑA 2013 \r\nM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/espagne/5fcdb9bc0513c0.46243429-original.jpg','https://en.numista.com/catalogue/photos/espagne/5fcdb9bc0513c0.46243429-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(49339,'Peter Denayer',NULL,'The obverse of the coin displays in its centre the number 100 with the first zero encircling the abbreviations ‘KMI’ and ‘IRM’ and the second zero representing a sun. Isobars, raindrops and snowflakes are depicted to the left of the sun. The year ‘2013’ is displayed in the upper rays of the sun and the nationality ‘BE’ is indicated in the lower rays. The mark of the mint master and the mark of the Brussels mint, a helmeted profile of the Archangel Michael, are displayed under the ‘1’ of the number ‘100’. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('2013\r\n100\r\nKMI\r\nIRM\r\nBE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/2320-original.jpg','https://en.numista.com/catalogue/photos/belgique/2320-180.jpg','kevin4430',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(54956,'Erwin Olaf',NULL,'King Willem-Alexander of the Netherlands facing right',replace(replace('Willem-Alexander Koning der Nederlanden\r\n2014','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Willem-Alexander, King of the Netherlands\r\n2014','\r',char(13)),'\n',char(10)),'/photos/pays-bas/63c250f7cc3e64.39706022-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/63c250f7cc3e64.39706022-180.jpg','brismike',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(56030,'Luc Luycx',NULL,'Right profile portrait of King Phillipe is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital "FP". The mint marks appear on either side of the year of issuance.',replace(replace('FP\r\nBE \r\n2014','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/61f94d99ab5967.97108825-original.jpg','https://en.numista.com/catalogue/photos/belgique/61f94d99ab5967.97108825-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(56035,'Luc Luycx',NULL,'Bust of King Philippe facing right, date below, crowned monogram at left',replace(replace('FP\r\nBE\r\n2015','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/belgique/605d6f24575a33.43979441-original.jpg','https://en.numista.com/catalogue/photos/belgique/605d6f24575a33.43979441-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(61644,NULL,'Sebastian Mikołajczak','Polish eagle (state emblem) with stylized rings intersecting at top and split at bottom by date.',replace(replace('mw\r\nRZECZPOSPOLITA POLSKA\r\n2017','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Republic of Poland','/photos/pologne/6226-original.jpg','https://en.numista.com/catalogue/photos/pologne/6226-180.jpg','Narodowy Bank Polski','http://www.nbp.pl',NULL,NULL);
INSERT INTO Obverse VALUES(67631,'Antanas Žukauskas',NULL,'The coin features the Coat of arms of the Republic of Lithuania, with the year 2015 on the right and the inscription LIETUVA below it. The coin''s outer ring bears the 12 stars of the European Union.',replace(replace('2015\r\nLMK \r\nLIETUVA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/lituanie/881-original.jpg','https://en.numista.com/catalogue/photos/lituanie/881-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(68395,'Jordi Puy',NULL,'Coat of arms of Andorra and around twelve five-pointed stars representing the European Union.',replace(replace('VIRTVS VNITA FORTIOR\r\nANDORRA\r\n2014','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('United virtue is stronger\nAndorra','\n',char(10)),'/photos/andorre/467-original.jpg','https://en.numista.com/catalogue/photos/andorre/467-180.jpg','kevin4430',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(69263,'Heinz Hoyer',NULL,'A classic perspective on St. Paul’s Church in Frankfurt (the ‘Paulskirche'', the seat of Germany’s first freely elected legislative body in 1849 and is regarded as the cradle of German democracy) and is the perspective possessing the greatest recognition value. The design incisively brings out the tension between the dominant tower and the elliptical structure of the church. The slightly exaggerated flight of steps has an inviting quality while simultaneously offering support to the subjacent inscription ‘HESSEN’ (the Federal State of Hessen in which St. Paul’s Church is situated). The inner part also features the date and mintmark to the left and the engraver’s mark (the initials ‘HH’ — Heinz Hoyer) to the right. The coin’s outer ring depicts the 12 stars of the European flag.',replace(replace('2015 D\r\nF HH\r\nHESSEN','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('2015 D\r\nF HH\r\nHESSEN','\r',char(13)),'\n',char(10)),'/photos/allemagne/628dc1f8e2a6d4.68325415-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628dc1f8e2a6d4.68325415-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(69264,'Bernd Wendhut',NULL,'The people in the foreground, who embody a new beginning and the advance towards a better future, are standing in front of the Brandenburg Gate, a symbol of German unity. The rendering of the statement Wir sind ein Volk (‘we are one people’) — a collective expression of will by German citizens – represents the path forwards towards German reunification. The inner part also features the mint mark of the respective mint (‘A’, ‘D’, ‘F’, ‘G’ or ‘J’) as well as the issuing country’s country code ‘D’ and the engraver’s mark (the initials ‘BW’ — Bernd Wendhut). The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('25 JAHRE DEUTSCHE\r\nEINHEIT 2015\r\nD\r\nWIR SIND EIN VOLK\r\nWIR SIND EIN VOLK\r\nWIR SIND EIN VOLK\r\nA BW','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('25 Years of German \r\nUnity 2015\r\nD\r\nWe are One People\r\nWe are One People\r\nWe are One People\r\nA BW','\r',char(13)),'\n',char(10)),'/photos/allemagne/628c8560e54b00.37523665-original.jpg','https://en.numista.com/catalogue/photos/allemagne/628c8560e54b00.37523665-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(70547,NULL,'Jody Clark','Fifth crowned portrait of Queen Elizabeth II right, wearing the George IV State Diadem, legend around.',replace(replace('ELIZABETH II∙DEI∙GRA∙REG∙FID∙DEF∙2020∙\r\nJ.C','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/5f25a703bc92b8.92049342-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/5f25a703bc92b8.92049342-180.jpg','The Royal Mint, 2020',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(81058,'Begona Castellanos García',NULL,'The Roman aqueduct of Segovia, probably built c. A.D. 50, name of the country issuer (ESPAÑA) and date of issue. The coin’s outer ring depicts the 12 stars of the European flag.',replace(replace('ESPAÑA\r\n2016 M','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Spain','/photos/espagne/5fcdbd58d76613.96858381-original.jpg','https://en.numista.com/catalogue/photos/espagne/5fcdbd58d76613.96858381-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(82237,'Joaquin Jimenez',NULL,'The European Football Championship 2016 will be held in France between 10 June and 10 July. It will be the fifteenth European tournament, where 24 national teams will be competing. The design shows, among other figures, a football and the trophy of the European Cup in relief.',replace(replace('UEFA EURO 2016 FRANCE\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/7445-original.jpg','https://en.numista.com/catalogue/photos/france/7445-180.jpg','Iwantallcoins',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(84061,'Joana Vasconcelos',NULL,'The design shows an image based on the well-known artwork ‘Heart of Viana’, signed by the author Joana Vasconcelos, which was inspired by traditional jewelry from the north of Portugal (the area around the city of Viana do Castelo). It symbolizes the Portuguese people’s support for the national team on the occasion of the Olympics. At the left and the right, in a semi-circle, are the inscriptions ‘JOANA VASCONCELOS’ and ‘EQUIPA OLÍMPICA DE PORTUGAL 2016’, respectively. At the bottom is the mintmark ‘INCM’. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('JOANA VASCONCELOS\r\nEQUIPA OLÍMPICA DE PORTUGAL 2016','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Portuguese Olympic Team 2016','/photos/portugal/6280886e36b042.73539075-original.jpg','https://en.numista.com/catalogue/photos/portugal/6280886e36b042.73539075-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(87329,'José Aurélio',NULL,'The design depicts the image of the bridge. At the top right is the inscription ‘PORTUGAL’. At the bottom right are the inscriptions ‘PONTE’, ‘25 DE ABRIL’, ‘1966’, and ‘2016’, one below the other. At the bottom left is the mintmark ‘INCM’ and at the bottom center is the name of the designer ‘JOSÉ AURÉLIO’. The coin’s outer ring bears the 12 stars of the European Union.',replace(replace('PORTUGAL\r\nPONTE \r\n25 DE ABRIL\r\n1966\r\n2016\r\nINCM \r\nJOSÉ AURÉLIO','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Portugal\r\nBridge\r\nApril 25\r\n1966\r\n2016\r\nINCM\r\nJosé Aurélio','\r',char(13)),'\n',char(10)),'/photos/portugal/62807eb168ace0.21389257-original.jpg','https://en.numista.com/catalogue/photos/portugal/62807eb168ace0.21389257-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(88649,'Ernst Nordin',NULL,'King Carl XVI Gustaf in profile left separating date.',replace(replace('CARL XVI GUSTAF\r\n2016\r\nSVERIGES KONUNG\r\nEN','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'King of Sweden','/photos/suede/2789-original.jpg','https://en.numista.com/catalogue/photos/suede/2789-180.jpg','Ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(89870,NULL,NULL,'It has in the nucleus on top, the Phrygian cap, a symbol of freedom, sustained by pica, representation of homeland defense. Completing the allegory clasped hands, an expression of unity and brotherhood of the peoples of the Rio de la Plata United Provinces. On the upper field, in heraldic language, patriotic colors by horizontal stripes, light blue and white, with the lower flat field. On the ring falls "ARGENTINA REPUBLIC" in the upper arch, and in the lower arch "INDEPENDENCE * 1816 * 2016 " referring to the Bicentennial of Independence of Argentina.',replace(replace('REPÚBLICA ARGENTINA\r\n1816 ° INDEPENDENCIA ° 2016','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('ARGENTINA REPUBLIC\r\n1816 ° INDEPENDENCE ° 2016','\r',char(13)),'\n',char(10)),'/photos/argentine/1259-original.jpg','https://en.numista.com/catalogue/photos/argentine/1259-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(91431,NULL,NULL,'The design shows a profile of a pensive François Mitterrand. Adjacent is his personal emblem of a half oak/half olive tree. Above are the dates marking the centenary of his birth (''1916'' and ''2016'') and his name. At the bottom, the indication of the issuing country ''RF''.',replace(replace('1916 FRANÇOIS MITTERRAND\r\n2016\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/5fc9e4063f4e15.02498679-original.jpg','https://en.numista.com/catalogue/photos/france/5fc9e4063f4e15.02498679-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(100658,NULL,'Jody Clark','Fifth crowned portrait of Queen Elizabeth II right, wearing the George IV State Diadem, with holographic image below and denomination as incuse micro-legend around the edge.',replace(replace('ONE POUND·ONE POUND\r\n2017·ELIZABETH II·D·G·REG·F·D\r\nJ.C\r\n£ / 1','\r',char(13)),'\n',char(10)),'[object Object]','Elizabeth II Dei Gratia Regina Fidei Defensatrix','Elizabeth the Second by the Grace of God Queen Defender of the Faith','/photos/royaume-uni/639dfa233d9e73.32275043-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/639dfa233d9e73.32275043-180.jpg','The Royal Mint, 2017',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(102445,'Chocola Frantisek',NULL,'The Porta Nigra in Trier which is probably the best-preserved Roman city gate north of the Alps. The inner part also features the name ''RHEINLAND-PFALZ'' and the mintmark to the left and the date at the top along with the initials of the designer ''CH'' (Chocola Frantisek) to the right and the coin''s outer ring depicts the 12 stars of the European flag.',replace(replace('2017\r\nA\r\nch\r\nRHEINLAND-PFALZ\r\nD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/allemagne/5fc9e4fece4342.96011398-original.jpg','https://en.numista.com/catalogue/photos/allemagne/5fc9e4fece4342.96011398-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(105040,'José de Guimarães',NULL,'The design shows human figures and buildings, symbolic representations of citizens and cities, where public security is mainly assured, and the simplified police symbol. The legends include the year ‘1867’ and the year of issue ‘2017’, the country of issue ‘PORTUGAL’, the subject of commemoration (‘SEGURANÇA PÚBLICA’ – Public Security), the three main issues related to citizenship (‘DIREITOS’, ‘LIBERDADES’ e ‘GARANTIAS’ – Rights, Freedoms, and Warranties), and the author’s name JOSÉ DE GUIMARÃES. The coin’s outer ring depicts the 12 stars of the European flag.',replace(replace('1867 - 2017 SEGURANÇA PÚBLICA\r\nPSP\r\nDIREITOS\r\nLIBERDADES\r\nGARANTIAS\r\nINCM JOSÉ DE GUIMARÃES\r\nPORTUGAL','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('1867-2017 Public Security\r\nPSP\r\nRights\r\nFreedoms\r\nWarranties\r\nINCM José de Guimarães\r\nPortugal','\r',char(13)),'\n',char(10)),'/photos/portugal/628067f6b04e37.49883028-original.jpg','https://en.numista.com/catalogue/photos/portugal/628067f6b04e37.49883028-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(122665,NULL,NULL,'Denomination (''٢٥٠'') above a cedar tree, the issuer name (''مصرف لبنان'') on top of denomination, and year of issue in Arab digits.',replace(replace('مصرف لبنان\r\n٢٥٠ ليرة\r\n٢٠١٤','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace('Bank of Lebanon\n250 Līrah\n2014','\n',char(10)),'/photos/liban/312-original.jpg','https://en.numista.com/catalogue/photos/liban/312-180.jpg','Doc_man',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(133815,NULL,NULL,'National arms flanked by stars. With the crown on the head of the eagle on Romania Coat of Arms.',replace(replace('ROMANIA \r\n2018','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/roumanie/5f6ba061e744a7.80024463-original.jpg','https://en.numista.com/catalogue/photos/roumanie/5f6ba061e744a7.80024463-180.jpg','Ben-jamin',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(133816,NULL,NULL,'National arms flanked by stars with the crown on the head of the eagle.',replace(replace('ROMANIA \r\n2018','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/roumanie/6264503d0ac5f0.84750965-original.jpg','https://en.numista.com/catalogue/photos/roumanie/6264503d0ac5f0.84750965-180.jpg','Máté Bikfalvi',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(134685,'Joaquin Jimenez',NULL,'The design features the cornflower in the center of the coin. It is surrounded by the words ‘Le Bleuet de France, fleur de mémoire et de solidarité’ (Bleuet of France, flower of remembrance and solidarity). The dates ‘1918-2018’ as well as the letters RF for République Française (French Republic) and the mint marks are also included in the design.',replace(replace('Le Bleuet de France, fleur de mémoire et de solidarité \r\n1918 - 2018\r\nR F','\r',char(13)),'\n',char(10)),'[object Object]','République française','Blue cornflower of France, the flower of memory and solidarity 1918-2018','/photos/france/11131-original.jpg','https://en.numista.com/catalogue/photos/france/11131-180.jpg','Ulmo',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(157845,'Júlio Pomar',NULL,replace(replace('The event, known as the first Portuguese territorial discovery, marked a historic milestone in\r\nthe consolidation of Portugal as a maritime power and gave rise to the Portuguese Age of Discoveries (1418-1522).\r\nThe design depicts the Madeira Archipelago and the island of Porto Santo. In semicircle are the inscriptions ‘600 anos do\r\nDescobrimento da Madeira e de Porto Santo’ and ‘PORTUGAL 2019’.\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('600 anos do Descobrimento da Madeira e de Porto Santo\r\nPortugal 2019\r\nINCM','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/6280854e4fec30.51739855-original.jpg','https://en.numista.com/catalogue/photos/portugal/6280854e4fec30.51739855-180.jpg','Mike Bentley',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(192990,'Joaquin Jimenez',NULL,replace(replace('The design represents two profiles of Charles de Gaulle at two different times. The profile in the background shows Charles de Gaulle in army general is uniform during the call to arms of the 18th June 1940 or during the liberation of Paris. The profile in the foreground represents Charles de Gaulle during his second presidential term of office. Finally, the mention RF is semi-integrated in a Lorraine cross, symbol of free France chosen by General de Gaulle in 1940. His dates of birth and death as well as the year date are also inscribed in the Lorraine cross.\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('1890\r\n1970\r\n2020\r\nRF\r\nCharles de Gaulle','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/5e3c18092fdd72.83644869-original.jpg','https://en.numista.com/catalogue/photos/france/5e3c18092fdd72.83644869-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(201624,NULL,NULL,'Blue-turquoise. Portrait of Queen Elizabeth II at right, Bank of England in centre, transparent window at left. Signature Victoria Cleland (2015).',replace(replace('£ 5 Bank of England \r\nI PROMISE TO PAY THE BEARER ON DEMAND THE SUM OF FIVE POUNDS 5\r\n£ 5\r\nBANK OF ENGLAND\r\nLONDON\r\nFOR THE GOVERNOR AND COMPANY \r\nOF THE BANK OF ENGLAND\r\nVictoria Cleland\r\nCHIEF CASHIER\r\nFIVE\r\n£ 5 BANK OF ENGLAND £ 5 BANK OF ENGLAND\r\nFIVEPOUNDS\r\n5 \r\n5POUNDS\r\nFive \r\nPounds FIVE\r\nBANK OF ENGLAND\r\nFive Pounds\r\n© THE GOVERNOR AND COMPANY OF THE BANK OF ENGLAND 2015\r\n£ 5','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/england/5e96799173dfa5.97124594-original.jpg','https://en.numista.com/catalogue/photos/england/5e96799173dfa5.97124594-180.jpg','BCNumismatics',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(201676,NULL,'Kiril Gogov','Violet and pink on light blue underprint. Paisii Hilendarski at left, holographic strip at left.',replace(replace('Два Лева\r\nБългарска Народна Банка\r\nПаисий Хилендарски 1722-1773','\r',char(13)),'\n',char(10)),NULL,NULL,replace(replace('Two Leva\r\nBulgarian National Bank\r\nPaisius of Hilendar 1722-1773','\r',char(13)),'\n',char(10)),'/photos/bulgarie/63ee095707bf35.20829527-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/63ee095707bf35.20829527-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(202243,NULL,NULL,'Admiral Gago Coutinho at right.',replace(replace('Banco de Portugal \r\nCh.9\r\nVINTE ESCUDOS\r\nOURO\r\nLISBOA, 4 DE OUTUBRO DE 1978\r\nAlmirante Gago Coutinho','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Bank of Portugal\r\nPlate 9\r\nTwenty Escudos\r\nGold\r\nLisbon, 4th of October 1978\r\nAlmirante Gago Coutinho','\r',char(13)),'\n',char(10)),'/photos/portugal/627367310e9b71.45407376-original.jpg','https://en.numista.com/catalogue/photos/portugal/627367310e9b71.45407376-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(202279,NULL,NULL,'Portrait of King Mohammed VI (Born 1963). Architectural detail inspired from Moroccan doors. The Royal Crown. Coat of arms.',NULL,NULL,NULL,NULL,'/photos/maroc/5e961f34cb9966.09948944-original.jpg','https://en.numista.com/catalogue/photos/maroc/5e961f34cb9966.09948944-180.jpg','Pedro Branco',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(202287,NULL,NULL,'Portrait of King Mohammed VI (Born 1963). Architectural detail inspired from Moroccan doors. The Royal Crown. Coat of arms.',NULL,NULL,NULL,NULL,'/photos/maroc/63df88824cfea0.57603429-original.jpg','https://en.numista.com/catalogue/photos/maroc/63df88824cfea0.57603429-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(202397,'Bureau of Engraving, Printing',NULL,replace(replace('Portrait of Abraham Lincoln at center.\r\nTreasurer''s signature and Federal Reserve Seal at left.\r\nSecretary''s signature and Treasury Seal to right.','\r',char(13)),'\n',char(10)),replace(replace('FEDERAL RESERVE NOTE\r\nTHE UNITED STATES OF AMERICA\r\nTHIS NOTE IS LEGAL TENDER\r\nFOR ALL DEBTS, PUBLIC AND PRIVATE\r\nFIVE DOLLARS','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/etats-unis/5e99c87bee01f9.75140243-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/5e99c87bee01f9.75140243-180.jpg','glorkar',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(202523,NULL,NULL,'Queen Elizabeth II at right, image of tower over clear window at left centre, hologram image below.',replace(replace('Bank of England\r\nI PROMISE TO PAY THE BEARER ON DEMAND THE SUM OF TEN POUNDS\r\nTen Pounds\r\nLONDON\r\nFOR THE GOVERNOR AND COMPANY\r\nOF THE BANK OF ENGLAND','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/england/641809f7659599.02187626-original.jpg','https://en.numista.com/catalogue/photos/england/641809f7659599.02187626-180.jpg','GarlicMonster',NULL,'CC0','https://creativecommons.org/publicdomain/zero/1.0/deed.en');
INSERT INTO Obverse VALUES(206382,NULL,NULL,'A portrait of President Mustafa Kemal Atatürk',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\n5\r\nBEŞ\r\nTÜRK LİRASI\r\n\r\nTÜRKİYE CUMHURİYET. MERKEZ BANKASI BANKNOT MATBAASI 2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Five Turkish Lira, Republic of Türkiye Central Bank, Banknote Printing House 2009','/photos/turquie/6299fbf2156168.63152135-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fbf2156168.63152135-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(206385,NULL,NULL,'A portrait of President Mustafa Kemal Atatürk',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\n10\r\nON\r\nTÜRK LİRASI\r\n\r\nTÜRKİYE CUMHURİYET. MERKEZ BANKASI BANKNOT MATBAASI 2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Ten Turkish Lira, Republic of Türkiye Central Bank, Banknote Printing House 2009','/photos/turquie/6299fc0bb03942.58660627-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fc0bb03942.58660627-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(206387,NULL,NULL,'A portrait of President Mustafa Kemal Atatürk',replace(replace('TÜRKİYE CUMHURİYET MERKEZ BANKASI\r\n\r\n20\r\nYİRMİ\r\nTÜRK LİRASI\r\n\r\nTÜRKİYE CUMHURİYET. MERKEZ BANKASI BANKNOT MATBAASI 2009','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Central Bank of the Republic of Turkey, Twenty Turkish Lira, Republic of Türkiye Central Bank, Banknote Printing House 2009','/photos/turquie/6299fc239063f2.79819586-original.jpg','https://en.numista.com/catalogue/photos/turquie/6299fc239063f2.79819586-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(258832,NULL,'Eduardo Aires',replace(replace('The design depicts the representation of the link between the capital of Portugal and the others European capitals and thereby draw a map, within the lettering ‘PRESIDÊNCIA DO CONSELHO DA UNIÃO EUROPEIA PORTUGAL 2021’ (English – PRESIDENCY OF THE COUNCIL OF THE EUROPEAN UNION PORTUGAL 2021).\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('PRESIDÊNCIA \r\nDO CONSELHO DA \r\nUNIÃO EUROPEIA \r\nPORTUGAL 2021\r\nCASA DA MOEDA\r\nEDUARDO AIRES','\r',char(13)),'\n',char(10)),'[object Object]',NULL,NULL,'/photos/portugal/60150add0c1f12.04625506-original.jpg','https://en.numista.com/catalogue/photos/portugal/60150add0c1f12.04625506-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(264789,NULL,NULL,'Depicts a view of the Puerta del Sol and a detail of Synagogue of El Tránsito, both buildings built in the 14th century in Mudejar style. On the left side in capital letters the country name and date, on the right side top the logo of the Royal Spanish Mint (crowned letter M). Surrounded by the twelve stars of Europe.',replace(replace('M\r\nESPAÑA\r\n2021','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('M\r\nSpain\r\n2021','\r',char(13)),'\n',char(10)),'/photos/espagne/605254496a33f0.64039108-original.jpg','https://en.numista.com/catalogue/photos/espagne/605254496a33f0.64039108-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(274850,'E.Fernandes','Francisco Providência','Depicts the official logo of the Olympic Committee of Portugal surrounded by the inscription "Portugal at the 2020 Tokyo Olympics". Engraver''s name on the left and mint name on the right. Around the outer ring the 12 stars of the European Union.',replace(replace('PORTUGAL NOS JOGOS OLIMPICOS DE TOQUIO''20 2021\r\nCASA DA MOEDA - F. PROVIDENCIA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'PORTUGAL AT THE TOKYO''20 2021 OLYMPIC GAMES','/photos/portugal/629fa708579307.87083194-original.jpg','https://en.numista.com/catalogue/photos/portugal/629fa708579307.87083194-180.jpg','adinumismatics',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(275891,NULL,NULL,replace(replace('The design shows an allegory of the work of ‘UNICEF’ where the hands are a key element. One after the other they support the globe and are the link between the different areas of the Earth. The mention of the 75th anniversary as well as the laurels crown the ensemble accompanied by the acronym RF. On the upper rim, the name ‘UNICEF’ is inserted along with the relevant dates as well as the UNICEF motto ‘For each child’.\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('UNICEF \r\n1946 – 2021 \r\nPOUR CHAQUE ENFANT\r\n75 ANS\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('For each child\r\n75 years','\r',char(13)),'\n',char(10)),'/photos/france/62ba04a89f8033.99285774-original.jpg','https://en.numista.com/catalogue/photos/france/62ba04a89f8033.99285774-180.jpg','adinumismatics',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(302331,NULL,'Kiril Gogov','A portrait of Ivan Milev , a hologram stripe with alternating images of a flower, the figure “5” and the text “ЛЕВА”',replace(replace('Българска Народна Банка\r\nПет Лева\r\nИван Милев 1897-1927','\r',char(13)),'\n',char(10)),'[object Object]',NULL,replace(replace('Bulgarian National Bank\r\nFive Leva\r\nIvan Milev 1897-1927','\r',char(13)),'\n',char(10)),'/photos/bulgarie/62349fe0bf7207.72164828-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/62349fe0bf7207.72164828-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Obverse VALUES(314709,NULL,'Olaf Stoy','Angled side view of Castle Wartburg with keep.',replace(replace('2022\r\nA\r\nOS\r\nTHÜRINGEN\r\nD','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Thuringia','/photos/allemagne/624da35d5ea805.20654987-original.jpg','https://en.numista.com/catalogue/photos/allemagne/624da35d5ea805.20654987-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(314962,'Joaquin Jimenez',NULL,'Depicts a tree with leaves and fruits of the oak and the olive tree. In the background is the hexagon, which symbolizes the outline of the map of France, in the upper three leaves the republican motto "Freedom, Equality, Fraternity". Below the monogram "RF" of the French Republic, on the left the year of issue "2022" and on the lower edge of the hexagon next to the trunk the mint mark of the mint on the left, the mint mark of the engraver general on the right and this name above. The twelve stars of the European flag are depicted on the outer ring.',replace(replace('LIBERTÉ ÉGALITÉ FRATERNITÉ\r\n2022 RF\r\nJ. JIMENEZ','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/630397ad1088f5.70305062-original.jpg','https://en.numista.com/catalogue/photos/france/630397ad1088f5.70305062-180.jpg','adinumismatics',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(318748,NULL,NULL,replace(replace('The design shows a solemn profile of President Jacques Chirac looking towards the future. He is surrounded by several symbols representing his actions: a euro symbol, as sign of his involvement in the introduction of the Euro and his European spirit, and a French flag represented in heraldic colours, itself embellished with the RF as a reference to his presidency. His dates and name are inserted in the Euro’s logo. The mintmarks as well as the year date fit into the design.\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('2022\r\nJACQUES CHIRAC\r\n1932\r\n2019\r\nRF\r\n€','\r',char(13)),'\n',char(10)),'[object Object]','République française',NULL,'/photos/france/621747efb14c78.99193289-original.jpg','https://en.numista.com/catalogue/photos/france/621747efb14c78.99193289-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(319351,NULL,NULL,replace(replace('Janaki Temple in the middle\r\nNepal written in Devangari on top and name of the temple below.\r\nIn the botton the year written in the Vikram Samvat calender','\r',char(13)),'\n',char(10)),replace(replace('नेपाल \r\nजानकी मन्दिर \r\n२०७७','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Nepal Janaki Temple 2077','/photos/nepal/61fcca3e0c5fa2.09461602-original.jpg','https://en.numista.com/catalogue/photos/nepal/61fcca3e0c5fa2.09461602-180.jpg','Dinesh Acharya',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(321378,NULL,'José João de Brito',replace(replace('This crossing was achieved by using only internal means of navigation: a modified sextant and a course corrector. The design shows the representation of the Lusitânia seaplane, one of the three Fairey III biplanes that were used by the commander and pilot Sacadura Cabral and the navigator Gago Coutinho, accomplish the flight between Lisboa and Rio de Janeiro. The edge inscription reads ‘TRAVESSIA DO ATLÂNTICO SUL’. Below the plane, the inscription ‘PORTUGAL 1922-2022’. The Mintmark will be ‘CASA DA MOEDA’, the Portuguese name of the Mint.\r\n\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('TRAVESSIA DO ATLÂNTICO SUL\r\nPORTUGAL 1922 – 2022\r\nEsc. JJ BRITO \r\nCASA DA MOEDA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'CROSSING OF THE SOUTH ATLANTIC','/photos/portugal/62ff6209ec90c2.67659031-original.jpg','https://en.numista.com/catalogue/photos/portugal/62ff6209ec90c2.67659031-180.jpg','Ponpandi Perumal',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Obverse VALUES(331445,NULL,'Joaquin Jimenez',replace(replace('The design is a mix of two major elements of the Erasmus programme: the original intellectual inspiration, Erasmus himself, and the allegory of its influence over Europe. The first one is symbolised by one of the most known depiction of Erasmus. The second one is symbolised by a beam of links going across the coin from a beacon to another, representing the numerous intellectual and human exchanges between the European students. As a reference to Europe, some of these links form other stars, born from the synergy between the countries. The figure 35, for 35th anniversary comes out from the stars in a contemporary graphical style.\r\nThe outer ring depicts the twelve stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('35\r\nRI\r\n1987-2022\r\nERASMUS\r\nPROGRAMME\r\nJ.J.\r\nR','\r',char(13)),'\n',char(10)),'[object Object]','Repubblica italiana',NULL,'/photos/italie/62cd12754ae4a8.06394735-original.jpg','https://en.numista.com/catalogue/photos/italie/62cd12754ae4a8.06394735-180.jpg','liege-numismatique',NULL,NULL,NULL);
INSERT INTO Obverse VALUES(338338,NULL,'Stjepan Pranjković','Silhouette design of a marten on the Croatian checkerboard',replace(replace('HRVATSKA\r\n2023.','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Croatia','/photos/croatie/64172b0259ca18.80145294-original.jpg','https://en.numista.com/catalogue/photos/croatie/64172b0259ca18.80145294-180.jpg','papilio',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(338339,NULL,'Ivan Šivak','Silhouette map of Croatia on the Croatian checkerboard',replace(replace('2023.\r\nHRVATSKA','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'Croatia','/photos/croatie/641729ab6ac473.15894037-original.jpg','https://en.numista.com/catalogue/photos/croatie/641729ab6ac473.15894037-180.jpg','papilio',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(368994,NULL,'João Duarte',replace(replace('In the superior ring, it is written "Jornada Mundial da Juventude Lisboa 2023". In the down left there is a representation of the portuguese shield. In the center, it is written "Portugal". In the right, it is written "Casa da Moeda" and the indication of the author João Duarte. At the center of the coin, there is the pilgrim cross. Several figures sugest the shape of a globe. At the bottom, there are two hands hugging the figures.\r\nThe coin’s outer ring depicts the 12 stars of the European flag.','\r',char(13)),'\n',char(10)),replace(replace('JORNADA MUNDIAL DA JUVENTUDE\r\nLISBOA 2023\r\nPORTUGAL\r\nCASA DA MOEDA - JOÃO DUARTE','\r',char(13)),'\n',char(10)),'[object Object]',NULL,'World Youth Day - Lisbon 2023','/photos/portugal/64f2077e0e1bf6.00806096-original.jpg','https://en.numista.com/catalogue/photos/portugal/64f2077e0e1bf6.00806096-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(369820,NULL,NULL,'Depicts a stylized portrayal of a rugby player sprinting with the rugby ball amidst the goalposts positioned at both ends of the field. The field itself is represented by a stylized globe, serving as a symbol for the global nature of the event. Positioned above the image is the caption "2023 Rugby World Cup in France". In the lower left corner, the official Rugby Union logo, while the lower right corner features the monogram "RF" (French Republic) along with the mintmarks of the mint and engraver. The twelve stars of the European flag are shown on the outer ring of the coin.',replace(replace('COUPE DU MONDE RUGBY FRANCE 2023\r\nCOUPE DU MONDE RUGBY FRANCE 2023\r\nRF','\r',char(13)),'\n',char(10)),'[object Object]','République Française',NULL,'/photos/france/64b808231b6164.48548152-original.jpg','https://en.numista.com/catalogue/photos/france/64b808231b6164.48548152-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Obverse VALUES(377368,'Susan Taylor','Susanna Blunt','Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.',replace(replace('ELIZABETH II D·G·REGINA\r\nP','\r',char(13)),'\n',char(10)),'[object Object]','ELIZABETH II DEI GRATIA REGINA','Elizabeth II Queen by the grace of God','/photos/canada/64f88fc50504b4.07420667-original.jpg','https://en.numista.com/catalogue/photos/canada/64f88fc50504b4.07420667-180.jpg','Monéphil',NULL,NULL,NULL);
CREATE TABLE Edge (
id INTEGER NOT NULL PRIMARY KEY,
engravers TEXT,
designers TEXT,
description TEXT,
lettering TEXT,
lettering_scripts TEXT,
unabridged_legend TEXT,
lettering_translation TEXT,
picture TEXT,
thumbnail TEXT,
picture_copyright TEXT,
picture_copyright_url TEXT,
picture_license_name TEXT,
picture_license_url TEXT
);
INSERT INTO Edge VALUES(3,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/france/7491-original.jpg','https://en.numista.com/catalogue/photos/france/7491-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(4,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/france/7492-original.jpg','https://en.numista.com/catalogue/photos/france/7492-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(5,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/france/7493-original.jpg','https://en.numista.com/catalogue/photos/france/7493-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(8,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/france/7498-original.jpg','https://en.numista.com/catalogue/photos/france/7498-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(9,NULL,NULL,'5 groups of reeds',NULL,NULL,NULL,NULL,'/photos/france/7499-original.jpg','https://en.numista.com/catalogue/photos/france/7499-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(12,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/france/6157694a45aa84.62297514-original.jpg','https://en.numista.com/catalogue/photos/france/6157694a45aa84.62297514-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(42,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/etats-unis/3289-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3289-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(43,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/etats-unis/3151-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3151-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(44,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/etats-unis/3162-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3162-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(53,NULL,NULL,'Reeded (118 reeds)',NULL,NULL,NULL,NULL,'/photos/etats-unis/3290-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3290-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(55,NULL,NULL,'Reeded (119 reeds)',NULL,NULL,NULL,NULL,'/photos/etats-unis/3174-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3174-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(57,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/autriche/3024-original.jpg','https://en.numista.com/catalogue/photos/autriche/3024-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(58,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/autriche/3268-original.jpg','https://en.numista.com/catalogue/photos/autriche/3268-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(73,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/belgique/2710-original.jpg','https://en.numista.com/catalogue/photos/belgique/2710-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(74,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/belgique/2706-original.jpg','https://en.numista.com/catalogue/photos/belgique/2706-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(75,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/belgique/3062-original.jpg','https://en.numista.com/catalogue/photos/belgique/3062-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(78,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/belgique/3057-original.jpg','https://en.numista.com/catalogue/photos/belgique/3057-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(79,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/belgique/3064-original.jpg','https://en.numista.com/catalogue/photos/belgique/3064-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(81,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/espagne/3370-original.jpg','https://en.numista.com/catalogue/photos/espagne/3370-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(82,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/espagne/4249-original.jpg','https://en.numista.com/catalogue/photos/espagne/4249-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(83,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/espagne/3369-original.jpg','https://en.numista.com/catalogue/photos/espagne/3369-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(84,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/espagne/4252-original.jpg','https://en.numista.com/catalogue/photos/espagne/4252-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(85,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/espagne/4265-original.jpg','https://en.numista.com/catalogue/photos/espagne/4265-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(88,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/espagne/3386-original.jpg','https://en.numista.com/catalogue/photos/espagne/3386-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(91,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/finlande/1253-original.jpg','https://en.numista.com/catalogue/photos/finlande/1253-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(96,NULL,NULL,'Reeded with incuse lettering: "SUOMI FINLAND" and three lion''s heads','SUOMI FINLAND','[object Object]',NULL,'FINLAND FINLAND','/photos/finlande/1260-original.jpg','https://en.numista.com/catalogue/photos/finlande/1260-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(97,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/france/7449-original.jpg','https://en.numista.com/catalogue/photos/france/7449-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(98,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/france/8643-original.jpg','https://en.numista.com/catalogue/photos/france/8643-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(99,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/france/7450-original.jpg','https://en.numista.com/catalogue/photos/france/7450-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(100,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/france/8645-original.jpg','https://en.numista.com/catalogue/photos/france/8645-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(105,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/allemagne/2009-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2009-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(106,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin.',NULL,NULL,NULL,NULL,'/photos/allemagne/2233-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2233-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(107,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/allemagne/2010-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2010-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(108,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/allemagne/2235-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2235-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(109,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/allemagne/2237-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2237-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(110,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/allemagne/2011-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2011-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(111,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/allemagne/2238-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2238-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(115,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/grece/1282-original.jpg','https://en.numista.com/catalogue/photos/grece/1282-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(116,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/grece/1617-original.jpg','https://en.numista.com/catalogue/photos/grece/1617-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(118,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/grece/1279-original.jpg','https://en.numista.com/catalogue/photos/grece/1279-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(120,NULL,NULL,'Reeded with inscription','ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ','[object Object]',NULL,'Hellenic Republic','/photos/grece/1283-original.jpg','https://en.numista.com/catalogue/photos/grece/1283-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(121,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/irlande/852-original.jpg','https://en.numista.com/catalogue/photos/irlande/852-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(122,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin.',NULL,NULL,NULL,NULL,'/photos/irlande/1025-original.jpg','https://en.numista.com/catalogue/photos/irlande/1025-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(125,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/irlande/1029-original.jpg','https://en.numista.com/catalogue/photos/irlande/1029-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(129,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/italie/2318-original.jpg','https://en.numista.com/catalogue/photos/italie/2318-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(130,NULL,NULL,'Grooved',NULL,NULL,NULL,NULL,'/photos/italie/2578-original.jpg','https://en.numista.com/catalogue/photos/italie/2578-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(131,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/italie/2319-original.jpg','https://en.numista.com/catalogue/photos/italie/2319-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(132,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/italie/2580-original.jpg','https://en.numista.com/catalogue/photos/italie/2580-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(133,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/italie/2582-original.jpg','https://en.numista.com/catalogue/photos/italie/2582-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(136,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted','2 * 2 * 2 * 2 * 2 * 2 *',NULL,NULL,NULL,'/photos/italie/2330-original.jpg','https://en.numista.com/catalogue/photos/italie/2330-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(137,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/luxembourg/1290-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/1290-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(138,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/luxembourg/1775-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/1775-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(139,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/luxembourg/1289-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/1289-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(144,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/luxembourg/1305-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/1305-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(145,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/pays-bas/2010-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2010-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(146,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/pays-bas/2294-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2294-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(147,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/pays-bas/2008-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2008-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(149,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/pays-bas/2298-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2298-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(152,NULL,NULL,'Reeded with inscription','GOD * ZIJ * MET * ONS *',NULL,NULL,'God Be With Us','/photos/pays-bas/680-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/680-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(153,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/3778-original.jpg','https://en.numista.com/catalogue/photos/portugal/3778-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(154,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/portugal/3777-original.jpg','https://en.numista.com/catalogue/photos/portugal/3777-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(155,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/3776-original.jpg','https://en.numista.com/catalogue/photos/portugal/3776-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(156,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/portugal/5418-original.jpg','https://en.numista.com/catalogue/photos/portugal/5418-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(171,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/suisse/5f9f2db8d69809.66838809-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f9f2db8d69809.66838809-180.jpg','stratocaster',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(173,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/suisse/5f9f2f052890a9.75234060-original.jpg','https://en.numista.com/catalogue/photos/suisse/5f9f2f052890a9.75234060-180.jpg','stratocaster',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(178,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/suisse/1534-original.jpg','https://en.numista.com/catalogue/photos/suisse/1534-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(185,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(189,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/suisse/61f5e74c42a6d0.74417960-original.jpg','https://en.numista.com/catalogue/photos/suisse/61f5e74c42a6d0.74417960-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(242,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/slovenie/798-original.jpg','https://en.numista.com/catalogue/photos/slovenie/798-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(243,NULL,NULL,'Reeded with inscription','SLOVENIJA','[object Object]',NULL,NULL,'/photos/slovenie/810-original.jpg','https://en.numista.com/catalogue/photos/slovenie/810-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(377,NULL,NULL,'Milled',NULL,NULL,NULL,NULL,'/photos/canada/5125-original.jpg','https://en.numista.com/catalogue/photos/canada/5125-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(403,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/canada/614e00bddee690.26293339-original.jpg','https://en.numista.com/catalogue/photos/canada/614e00bddee690.26293339-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(465,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/canada/5115-original.jpg','https://en.numista.com/catalogue/photos/canada/5115-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(524,NULL,NULL,'Milled and plain alternately (four each)',NULL,NULL,NULL,NULL,'/photos/pologne/5ebaafe3b09d51.21122552-original.jpg','https://en.numista.com/catalogue/photos/pologne/5ebaafe3b09d51.21122552-180.jpg','Narodowy Bank Polski','http://www.nbp.pl',NULL,NULL);
INSERT INTO Edge VALUES(573,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(589,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/mexique/3688-original.jpg','https://en.numista.com/catalogue/photos/mexique/3688-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(591,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/mexique/3670-original.jpg','https://en.numista.com/catalogue/photos/mexique/3670-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(596,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(614,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/etats-unis/3170-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3170-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(648,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/etats-unis/3196-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3196-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(649,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/etats-unis/3195-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3195-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(664,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/royaume-uni/6238a9846c69f5.38108830-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6238a9846c69f5.38108830-180.jpg','Worldwide collection',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Edge VALUES(665,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(666,NULL,NULL,'Smooth and inscripted','* ORDEM E PROGRESSO * BRASIL','[object Object]',NULL,'Order and Progress Brazil','/photos/bresil/1500-original.jpg','https://en.numista.com/catalogue/photos/bresil/1500-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(681,NULL,NULL,'Designs in relief',NULL,NULL,NULL,NULL,'/photos/france/8654-original.jpg','https://en.numista.com/catalogue/photos/france/8654-180.jpg','smy77',NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Edge VALUES(734,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/pays-bas/2880-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2880-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(766,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/ancienne_urss/1127-original.jpg','https://en.numista.com/catalogue/photos/ancienne_urss/1127-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(768,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/portugal/1602-original.jpg','https://en.numista.com/catalogue/photos/portugal/1602-180.jpg','ADRIARTH',NULL,NULL,NULL);
INSERT INTO Edge VALUES(770,NULL,NULL,'Coarsely reeded.',NULL,NULL,NULL,NULL,'/photos/portugal/1154-original.jpg','https://en.numista.com/catalogue/photos/portugal/1154-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(771,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c77991f3926.22246940-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c77991f3926.22246940-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(772,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/5fb22df77aae26.20008971-original.jpg','https://en.numista.com/catalogue/photos/portugal/5fb22df77aae26.20008971-180.jpg','Fireberg',NULL,NULL,NULL);
INSERT INTO Edge VALUES(773,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c781cd3c2f8.86195487-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c781cd3c2f8.86195487-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(774,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c7a879a48a4.48356386-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7a879a48a4.48356386-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(775,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/614c7995a53d81.50600554-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7995a53d81.50600554-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(776,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/portugal/6111-original.jpg','https://en.numista.com/catalogue/photos/portugal/6111-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(779,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3403-original.jpg','https://en.numista.com/catalogue/photos/espagne/3403-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(781,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/espagne/5f9f4f25d423a8.55672097-original.jpg','https://en.numista.com/catalogue/photos/espagne/5f9f4f25d423a8.55672097-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(782,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/espagne/5f9f50451e8940.33466524-original.jpg','https://en.numista.com/catalogue/photos/espagne/5f9f50451e8940.33466524-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(783,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3394-original.jpg','https://en.numista.com/catalogue/photos/espagne/3394-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(784,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3392-original.jpg','https://en.numista.com/catalogue/photos/espagne/3392-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(787,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/espagne/5f9f4a12184be9.80826467-original.jpg','https://en.numista.com/catalogue/photos/espagne/5f9f4a12184be9.80826467-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(844,NULL,NULL,replace(replace('Smooth with the inscription of the German motto\r\n\r\nThere are two variants for the edge text:\r\n1. text readable with obverse face up\r\n2. text readable upside down','\r',char(13)),'\n',char(10)),'EINIGKEIT UND RECHT UND FREIHEIT',NULL,NULL,'Unity and Justice and Freedom','/photos/allemagne/2036-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2036-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(846,NULL,NULL,'Smooth with imprints','~*~ ~·~ ~*~ ~·~ ~*~ ~·~',NULL,NULL,NULL,'/photos/allemagne/1818-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1818-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(847,NULL,NULL,replace(replace('Reeded (1950-1971)\r\nSmooth (1972-2001)','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,NULL,'/photos/allemagne/1462-original.jpg','https://en.numista.com/catalogue/photos/allemagne/1462-180.jpg','Monéphil',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Edge VALUES(850,NULL,NULL,'Smooth with the brass plating partly stretched over a steel core',NULL,NULL,NULL,NULL,'/photos/allemagne/2042-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2042-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(854,NULL,NULL,'Smooth with copper plating partly stretched over a steel core.',NULL,NULL,NULL,NULL,'/photos/allemagne/2038-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2038-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(861,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(862,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(863,NULL,NULL,replace(replace('Milled with incuse lettering\r\n\r\nNote: errors reported with missing apostrophe ('')','\r',char(13)),'\n',char(10)),'PLEIDIOL WYF I''M GWLAD','[object Object]',NULL,'True am I to my country','/photos/royaume-uni/2046-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2046-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(864,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(865,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(867,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(868,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(875,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(876,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/10227-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/10227-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(879,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/615ae685136833.67761440-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/615ae685136833.67761440-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(907,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/60b00daee86183.96365123-original.jpg','https://en.numista.com/catalogue/photos/portugal/60b00daee86183.96365123-180.jpg','Bulgaria1999',NULL,NULL,NULL);
INSERT INTO Edge VALUES(908,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/etats-unis/3287-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/3287-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(941,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(946,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/espagne/615d6e80d93a95.98222494-original.jpg','https://en.numista.com/catalogue/photos/espagne/615d6e80d93a95.98222494-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(991,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/5f9f5135199fb8.56552492-original.jpg','https://en.numista.com/catalogue/photos/portugal/5f9f5135199fb8.56552492-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1051,NULL,NULL,'Smooth with inscription','MOTIVO QUIMBAYA *** 200 PESOS ***','[object Object]',NULL,'Quimbayan motif *** 200 Pesos ***','/photos/colombie/291-original.jpg','https://en.numista.com/catalogue/photos/colombie/291-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1073,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(1149,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3391-original.jpg','https://en.numista.com/catalogue/photos/espagne/3391-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1236,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/614c7ab2a95433.54286164-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7ab2a95433.54286164-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1237,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/614c7a98c2f269.83493094-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7a98c2f269.83493094-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1238,NULL,NULL,'Smooth and reeded (7 sections each).',NULL,NULL,NULL,NULL,'/photos/portugal/1229-original.jpg','https://en.numista.com/catalogue/photos/portugal/1229-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1241,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c7854220351.57373325-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7854220351.57373325-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1242,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/portugal/1087-original.jpg','https://en.numista.com/catalogue/photos/portugal/1087-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1243,NULL,NULL,'Coarse reeded.',NULL,NULL,NULL,NULL,'/photos/portugal/1088-original.jpg','https://en.numista.com/catalogue/photos/portugal/1088-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1258,NULL,NULL,replace('22 incuse fleurs-de-lis in a plain field.\n\nThere are two edge varieties: fleurs-de-lis up and fleurs-de-lis down. The first step to mint these coins was pressing the edge design into the flan. Then, the blanks with their edge already pressed entered randomly between the dies, causing the two orientations of the fleurs-de-lis. It is estimated that there is a 50% chance of each variety.','\n',char(10)),NULL,NULL,NULL,NULL,'/photos/espagne/1225-original.jpg','https://en.numista.com/catalogue/photos/espagne/1225-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1262,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3389-original.jpg','https://en.numista.com/catalogue/photos/espagne/3389-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1263,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3390-original.jpg','https://en.numista.com/catalogue/photos/espagne/3390-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1264,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3406-original.jpg','https://en.numista.com/catalogue/photos/espagne/3406-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1266,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3393-original.jpg','https://en.numista.com/catalogue/photos/espagne/3393-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1267,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/615d6f54a30df3.95865827-original.jpg','https://en.numista.com/catalogue/photos/espagne/615d6f54a30df3.95865827-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(1324,NULL,NULL,'Milled with incuse lettering','STANDING ON THE SHOULDERS OF GIANTS',NULL,NULL,NULL,'/photos/royaume-uni/1915-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/1915-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1353,NULL,NULL,'Embossed lettering','UNA GRANDE LIBRE','[object Object]',NULL,'One, great and free','/photos/espagne/988-original.jpg','https://en.numista.com/catalogue/photos/espagne/988-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1366,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/614c79cb686492.11627966-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c79cb686492.11627966-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1376,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(1384,NULL,NULL,'Milled with incuse lettering','DECUS ET TUTAMEN','[object Object]',NULL,'An ornament and a safeguard','/photos/royaume-uni/2052-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2052-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1389,NULL,NULL,'Milled with incuse lettering','DECUS ET TUTAMEN','[object Object]',NULL,'An ornament and a safeguard','/photos/royaume-uni/2044-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2044-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1390,NULL,NULL,'Milled with incuse lettering','DECUS ET TUTAMEN','[object Object]',NULL,'An ornament and a safeguard','/photos/royaume-uni/2058-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2058-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1395,NULL,NULL,'Milled with incuse lettering','DECUS ET TUTAMEN','[object Object]',NULL,'An ornament and a safeguard','/photos/royaume-uni/9962-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/9962-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1397,NULL,NULL,'Milled with incuse lettering','DECUS ET TUTAMEN','[object Object]',NULL,'An ornament and a safeguard','/photos/royaume-uni/2060-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/2060-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1571,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(1589,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/japon/602a20502c8d55.93340745-original.jpg','https://en.numista.com/catalogue/photos/japon/602a20502c8d55.93340745-180.jpg','Griffin S',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Edge VALUES(1643,NULL,NULL,'Segmented reeding, 5 reeds on each section',NULL,NULL,NULL,NULL,'/photos/thailande/1248-original.jpg','https://en.numista.com/catalogue/photos/thailande/1248-180.jpg','ADRIARTH',NULL,NULL,NULL);
INSERT INTO Edge VALUES(1702,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/australie/9337-original.jpg','https://en.numista.com/catalogue/photos/australie/9337-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Edge VALUES(1703,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/australie/8348-original.jpg','https://en.numista.com/catalogue/photos/australie/8348-180.jpg','Mike Bentley',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Edge VALUES(1998,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/hongrie/4173-original.jpg','https://en.numista.com/catalogue/photos/hongrie/4173-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(2047,NULL,NULL,'Alternating plain and milled sections (7 each)',NULL,NULL,NULL,NULL,'/photos/portugal/2585-original.jpg','https://en.numista.com/catalogue/photos/portugal/2585-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2168,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/espagne/3385-original.jpg','https://en.numista.com/catalogue/photos/espagne/3385-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2169,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT',NULL,NULL,'Unity and justice and freedom','/photos/allemagne/2031-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2031-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2173,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/chypre/644-original.jpg','https://en.numista.com/catalogue/photos/chypre/644-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2175,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/chypre/645-original.jpg','https://en.numista.com/catalogue/photos/chypre/645-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2178,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/chypre/646-original.jpg','https://en.numista.com/catalogue/photos/chypre/646-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2180,NULL,NULL,'Reeded with inscription.','2 ΕΥΡΩ 2 EURO 2 ΕΥΡΩ 2 EURO',NULL,NULL,NULL,'/photos/chypre/651-original.jpg','https://en.numista.com/catalogue/photos/chypre/651-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2183,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/malte/446-original.jpg','https://en.numista.com/catalogue/photos/malte/446-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2201,NULL,NULL,'Reeded with inscription.','EINIGKEIT UND RECHT UND FREIHEIT',NULL,NULL,'Unity and Justice and Freedom','/photos/allemagne/2029-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2029-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2204,NULL,NULL,'Finely ribbed with seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/3794-original.jpg','https://en.numista.com/catalogue/photos/portugal/3794-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2217,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/argentine/1203-original.jpg','https://en.numista.com/catalogue/photos/argentine/1203-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2236,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/615ae6de952c86.89464836-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/615ae6de952c86.89464836-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2252,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2253,NULL,NULL,replace(replace('Reeded.\r\nNOTE: data in SCWC concerning issues of KM#649.2 to have plain/smooth edge are wrong. All issues seem to have reeding.','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2254,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3401-original.jpg','https://en.numista.com/catalogue/photos/espagne/3401-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2255,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/espagne/3402-original.jpg','https://en.numista.com/catalogue/photos/espagne/3402-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2304,NULL,NULL,'Incuse pattern: 22 fleurs-de-lis in two varieties: fleurs-de-lis up and down',NULL,NULL,NULL,NULL,'/photos/espagne/3411-original.jpg','https://en.numista.com/catalogue/photos/espagne/3411-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2374,NULL,NULL,'Embossed lettering','UNA GRANDE LIBRE','[object Object]',NULL,'One, great and free','/photos/espagne/3410-original.jpg','https://en.numista.com/catalogue/photos/espagne/3410-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2375,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2376,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2383,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c795207c587.26586632-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c795207c587.26586632-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2384,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c78f3e40dc5.10356404-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c78f3e40dc5.10356404-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2432,NULL,NULL,'Segmented (8 milled, 8 smooth)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2433,NULL,NULL,replace(replace('Two times the value, between two milled sections.\r\nVarieties exist with letters up or down when the obverse faces up.\r\nUntil 1995, three varieties of letter-size exist (small, medium or large letters), while coins after 1995 all have large letters.','\r',char(13)),'\n',char(10)),'CIEN PESOS ||||||||||||||||| CIEN PESOS |||||||||||||||||',NULL,NULL,'100 Pesos 100 Pesos','/photos/colombie/650-original.jpg','https://en.numista.com/catalogue/photos/colombie/650-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2504,NULL,NULL,'5 reeded segments',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2736,NULL,NULL,'Embossed lettering','UNA GRANDE LIBRE','[object Object]',NULL,'One, great and free','/photos/espagne/986-original.jpg','https://en.numista.com/catalogue/photos/espagne/986-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2763,NULL,NULL,'Milled with a decorative pattern symbolising bridges and pathways',NULL,NULL,NULL,NULL,'/photos/royaume-uni/4467-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/4467-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2842,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(2903,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/afrique_du_sud/1732-original.jpg','https://en.numista.com/catalogue/photos/afrique_du_sud/1732-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2986,NULL,NULL,'Incuse pattern: 22 fleurs-de-lis in two varieties: fleurs-de-lis up and down',NULL,NULL,NULL,NULL,'/photos/espagne/5f82d6770f5d03.15333843-original.jpg','https://en.numista.com/catalogue/photos/espagne/5f82d6770f5d03.15333843-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(2994,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT','[object Object]',NULL,'Unity and Justice and Freedom','/photos/allemagne/2027-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2027-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3002,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3044,NULL,NULL,'Alternating smooth and milled segments (8 each)',NULL,NULL,NULL,NULL,'/photos/turquie/635-original.jpg','https://en.numista.com/catalogue/photos/turquie/635-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3200,NULL,NULL,'Embossed lettering','UNA GRANDE LIBRE','[object Object]',NULL,'One, great and free','/photos/espagne/3409-original.jpg','https://en.numista.com/catalogue/photos/espagne/3409-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3223,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3224,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3225,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3228,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3256,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/argentine/5f0a0fa91c9105.96404192-original.jpg','https://en.numista.com/catalogue/photos/argentine/5f0a0fa91c9105.96404192-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3282,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/portugal/5ea87a0fa66508.03935394-original.jpg','https://en.numista.com/catalogue/photos/portugal/5ea87a0fa66508.03935394-180.jpg','ADRIARTH',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3372,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/espagne/4251-original.jpg','https://en.numista.com/catalogue/photos/espagne/4251-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3510,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/france/8644-original.jpg','https://en.numista.com/catalogue/photos/france/8644-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3818,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/maroc/341-original.jpg','https://en.numista.com/catalogue/photos/maroc/341-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(3888,NULL,NULL,'Incuse pattern: 22 fleurs-de-lis in two varieties: fleurs-de-lis up and down',NULL,NULL,NULL,NULL,'/photos/espagne/3802-original.jpg','https://en.numista.com/catalogue/photos/espagne/3802-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(3932,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/espagne/615d6ed1ebcf30.46584283-original.jpg','https://en.numista.com/catalogue/photos/espagne/615d6ed1ebcf30.46584283-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4038,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4039,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4141,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4546,NULL,NULL,'Spanish flower',NULL,NULL,NULL,NULL,'/photos/espagne/607c41c62cdea8.82654283-original.jpg','https://en.numista.com/catalogue/photos/espagne/607c41c62cdea8.82654283-180.jpg','Renato Lima',NULL,NULL,NULL);
INSERT INTO Edge VALUES(4580,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/russie/5357-original.jpg','https://en.numista.com/catalogue/photos/russie/5357-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(4729,NULL,NULL,'Segmented in smooth and milled parts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4901,NULL,NULL,replace(replace('KM#182a.1: plain\r\nKM#182a.2: reeded','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(4902,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5010,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5012,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5063,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted.','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7465-original.jpg','https://en.numista.com/catalogue/photos/france/7465-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(5086,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/slovaquie/584-original.jpg','https://en.numista.com/catalogue/photos/slovaquie/584-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(5109,NULL,NULL,'Alternating smooth and reeded segments (8 each)',NULL,NULL,NULL,NULL,'/photos/bulgarie/598-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/598-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(5444,NULL,NULL,'Smooth with inscription','ESPERANÇA FRATERNIDADE CONFIANÇA',NULL,NULL,NULL,'/photos/portugal/3800-original.jpg','https://en.numista.com/catalogue/photos/portugal/3800-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(5492,NULL,NULL,'Milled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5624,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5628,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(5737,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/nepal/1707-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(5786,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6071,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6163,NULL,NULL,replace('Smooth with repeated imprints and inscriptions\nof letters "T.C." and tulip figure\n\nNote: variation exist up or down text on edge','\n',char(10)),'||||| T.C. ||||| ~ ||||| T.C. ||||| ~ ||||| T.C. ||||| ~',NULL,NULL,NULL,'/photos/turquie/1922-original.jpg','https://en.numista.com/catalogue/photos/turquie/1922-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6164,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/turquie/60b653bd690f64.48018107-original.jpg','https://en.numista.com/catalogue/photos/turquie/60b653bd690f64.48018107-180.jpg',NULL,NULL,'CC BY','https://creativecommons.org/licenses/by/4.0/deed.en');
INSERT INTO Edge VALUES(6165,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/turquie/2935-original.jpg','https://en.numista.com/catalogue/photos/turquie/2935-180.jpg','AvrAlex (Belgorod, Russia)',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6258,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6278,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6293,NULL,NULL,'Finely reeded with edge lettering: six times the sequence "2 * *" or "* * 2" alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/belgique/2742-original.jpg','https://en.numista.com/catalogue/photos/belgique/2742-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6298,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/belgique/2711-original.jpg','https://en.numista.com/catalogue/photos/belgique/2711-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6307,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/belgique/2698-original.jpg','https://en.numista.com/catalogue/photos/belgique/2698-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6319,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/allemagne/2236-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2236-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6329,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/irlande/1026-original.jpg','https://en.numista.com/catalogue/photos/irlande/1026-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6333,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/irlande/855-original.jpg','https://en.numista.com/catalogue/photos/irlande/855-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6334,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 * * " alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/irlande/860-original.jpg','https://en.numista.com/catalogue/photos/irlande/860-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6350,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/grece/1618-original.jpg','https://en.numista.com/catalogue/photos/grece/1618-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6361,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/espagne/4264-original.jpg','https://en.numista.com/catalogue/photos/espagne/4264-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6373,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/france/8646-original.jpg','https://en.numista.com/catalogue/photos/france/8646-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6374,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/france/8649-original.jpg','https://en.numista.com/catalogue/photos/france/8649-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6376,NULL,NULL,'Finely ribbed with edge lettering: three times the sequence "2 * *" upright and the sequence "* * 2" inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7467-original.jpg','https://en.numista.com/catalogue/photos/france/7467-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6418,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/luxembourg/1780-original.jpg','https://en.numista.com/catalogue/photos/luxembourg/1780-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6499,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6500,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(6612,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/9727-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/9727-180.jpg','G-REMXD',NULL,NULL,NULL);
INSERT INTO Edge VALUES(6926,NULL,NULL,'Smooth and reeded alternating: 4 reeded segments with 8 grooves each.',NULL,NULL,NULL,NULL,'/photos/suede/1885-original.jpg','https://en.numista.com/catalogue/photos/suede/1885-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(7047,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/turquie/3195-original.jpg','https://en.numista.com/catalogue/photos/turquie/3195-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(7048,NULL,NULL,'Coarsely reeded',NULL,NULL,NULL,NULL,'/photos/turquie/602-original.jpg','https://en.numista.com/catalogue/photos/turquie/602-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(7130,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7184,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7193,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7337,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7338,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/portugal/614c7921421453.27458907-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c7921421453.27458907-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(7398,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7461,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7524,NULL,NULL,'Reeded with inscription','CULTURA SINU MIL PESOS',NULL,NULL,'Sinu Culture One Thousand Pesos',NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7576,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7639,NULL,NULL,'Finely ribbed with seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/3779-original.jpg','https://en.numista.com/catalogue/photos/portugal/3779-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(7872,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(7905,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/autriche/3019-original.jpg','https://en.numista.com/catalogue/photos/autriche/3019-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(8862,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(8896,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/bresil/1540-original.jpg','https://en.numista.com/catalogue/photos/bresil/1540-180.jpg','nalaberong',NULL,NULL,NULL);
INSERT INTO Edge VALUES(8925,NULL,NULL,'Plain-reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(9285,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(9761,NULL,NULL,'Finely ribbed with edge lettering: four times the sequence of the text "2 EURO" and three stars alternately upright and inverted','2 EURO *** 2 EURO *** 2 EURO *** 2 EURO ***','[object Object]',NULL,NULL,'/photos/autriche/3034-original.jpg','https://en.numista.com/catalogue/photos/autriche/3034-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(9826,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,'/photos/portugal/3263-original.jpg','https://en.numista.com/catalogue/photos/portugal/3263-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(9828,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(9831,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(9834,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(9894,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/portugal/3795-original.jpg','https://en.numista.com/catalogue/photos/portugal/3795-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(9895,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/portugal/5417-original.jpg','https://en.numista.com/catalogue/photos/portugal/5417-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(9896,NULL,NULL,'Smooth with seven indentations ("Spanish flower")',NULL,NULL,NULL,NULL,'/photos/portugal/5419-original.jpg','https://en.numista.com/catalogue/photos/portugal/5419-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(10126,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(10288,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(10854,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/espagne/3368-original.jpg','https://en.numista.com/catalogue/photos/espagne/3368-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(10856,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/espagne/3371-original.jpg','https://en.numista.com/catalogue/photos/espagne/3371-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(10857,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/espagne/4248-original.jpg','https://en.numista.com/catalogue/photos/espagne/4248-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(10860,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/espagne/3367-original.jpg','https://en.numista.com/catalogue/photos/espagne/3367-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(10862,NULL,NULL,'Reeded with 2''s','2 ** 2 ** 2 ** 2 ** 2 ** 2 **','[object Object]',NULL,NULL,'/photos/espagne/1257-original.jpg','https://en.numista.com/catalogue/photos/espagne/1257-180.jpg','Numista',NULL,NULL,NULL);
INSERT INTO Edge VALUES(11526,NULL,NULL,'Reeded with inscription','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7464-original.jpg','https://en.numista.com/catalogue/photos/france/7464-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(11635,NULL,NULL,'Seven plain and seven reeded sections.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(11691,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(11695,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(11952,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/portugal/614c78992ed9b0.28408186-original.jpg','https://en.numista.com/catalogue/photos/portugal/614c78992ed9b0.28408186-180.jpg','Walter_Scott',NULL,NULL,NULL);
INSERT INTO Edge VALUES(13034,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(13038,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(13820,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(15296,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(15575,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(16586,NULL,NULL,'Smooth with a groove running circumferentially around the edge of the coin',NULL,NULL,NULL,NULL,'/photos/estonie/363-original.jpg','https://en.numista.com/catalogue/photos/estonie/363-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(16588,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/estonie/366-original.jpg','https://en.numista.com/catalogue/photos/estonie/366-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(18054,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(18666,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT','[object Object]',NULL,'Unity and Justice and Freedom','/photos/allemagne/2023-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2023-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(19979,NULL,NULL,'Reeded with inscription','2**2**2**2**2**2**',NULL,NULL,NULL,'/photos/espagne/3382-original.jpg','https://en.numista.com/catalogue/photos/espagne/3382-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(20700,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(20892,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 *" alternately upright and inverted','2 * 2 * 2 * 2 * 2 * 2 *',NULL,NULL,NULL,'/photos/italie/2340-original.jpg','https://en.numista.com/catalogue/photos/italie/2340-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(22038,NULL,NULL,'Segmented reeding; 5 reeds each 15 sections',NULL,NULL,NULL,NULL,'/photos/thailande/2860-original.jpg','https://en.numista.com/catalogue/photos/thailande/2860-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(22544,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(22652,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/france/62c7fface50b13.17829022-original.jpg','https://en.numista.com/catalogue/photos/france/62c7fface50b13.17829022-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Edge VALUES(24276,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/france/62c801be3a34f7.86937799-original.jpg','https://en.numista.com/catalogue/photos/france/62c801be3a34f7.86937799-180.jpg','PLH28',NULL,NULL,NULL);
INSERT INTO Edge VALUES(25746,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/10221-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/10221-180.jpg','CyrusPamelaOne',NULL,'CC BY-SA','https://creativecommons.org/licenses/by-sa/4.0/deed.en');
INSERT INTO Edge VALUES(25766,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,'/photos/royaume-uni/6367-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/6367-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(26208,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(26791,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(26792,NULL,NULL,'Plain',NULL,NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/nepal/1674-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(27352,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(27395,NULL,NULL,'Reeded with Stars Inscription',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(27528,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/argentine/834-original.jpg','https://en.numista.com/catalogue/photos/argentine/834-180.jpg','Phil59',NULL,NULL,NULL);
INSERT INTO Edge VALUES(28191,NULL,NULL,'Reeded with inscription. Combination of 2 EURO and *** repeated four times.','2 EURO *** 2 EURO *** 2 EURO *** 2 EURO ***','[object Object]',NULL,NULL,'/photos/autriche/3032-original.jpg','https://en.numista.com/catalogue/photos/autriche/3032-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(28330,NULL,NULL,'Finely ribbed with edge lettering: three times the sequence "2 * *" upright and the sequence "* * 2" inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7461-original.jpg','https://en.numista.com/catalogue/photos/france/7461-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(28608,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/bulgarie/1521-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1521-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(28610,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/bulgarie/1508-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1508-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(28611,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/bulgarie/1539-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/1539-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(32604,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/canada/5108-original.jpg','https://en.numista.com/catalogue/photos/canada/5108-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(36732,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36733,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36734,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36735,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36736,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36737,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36738,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36739,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36740,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36741,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36742,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(36743,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(40522,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(41904,NULL,NULL,'Finely ribbed with edge lettering: three times the sequence "2 * *" upright and the sequence "* * 2" inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7459-original.jpg','https://en.numista.com/catalogue/photos/france/7459-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(42976,NULL,NULL,'Reeded with 2''s & stars','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/espagne/3379-original.jpg','https://en.numista.com/catalogue/photos/espagne/3379-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(49339,NULL,NULL,'Finely reeded with edge lettering: six times the sequence "2 * *" or "* * 2" alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/belgique/2731-original.jpg','https://en.numista.com/catalogue/photos/belgique/2731-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(54956,NULL,NULL,'Indented',NULL,NULL,NULL,NULL,'/photos/pays-bas/2005-original.jpg','https://en.numista.com/catalogue/photos/pays-bas/2005-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(56030,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,'/photos/belgique/2712-original.jpg','https://en.numista.com/catalogue/photos/belgique/2712-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(56035,NULL,NULL,'Indented (50 indentations)',NULL,NULL,NULL,NULL,'/photos/belgique/2697-original.jpg','https://en.numista.com/catalogue/photos/belgique/2697-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(61644,NULL,NULL,'Milled and plain alternately (four each)',NULL,NULL,NULL,NULL,'/photos/pologne/6159d5ff612143.53182078-original.jpg','https://en.numista.com/catalogue/photos/pologne/6159d5ff612143.53182078-180.jpg',NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(67631,NULL,NULL,'Interrupted milled',NULL,NULL,NULL,NULL,'/photos/lituanie/659-original.jpg','https://en.numista.com/catalogue/photos/lituanie/659-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(68395,NULL,NULL,'Finely milled with "2" in incuse, followed by two five-pointed stars, repeated six times alternately from bottom to top and vice versa.','2 ** 2 ** 2 ** 2 ** 2 ** 2 **','[object Object]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(69263,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT','[object Object]',NULL,'Unity and Justice and Freedom','/photos/allemagne/2014-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2014-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(69264,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT','[object Object]',NULL,'Unity and Justice and Freedom','/photos/allemagne/2017-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2017-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(70547,NULL,NULL,'Milled',NULL,NULL,NULL,NULL,'/photos/royaume-uni/9728-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/9728-180.jpg','G-REMXD',NULL,NULL,NULL);
INSERT INTO Edge VALUES(81058,NULL,NULL,'Reeded with inscription: the number "2" and two stars, repeated six times alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/espagne/3377-original.jpg','https://en.numista.com/catalogue/photos/espagne/3377-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(82237,NULL,NULL,'Reeded with inscription: combination of the number "2" and two stars, repeated six times alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/7452-original.jpg','https://en.numista.com/catalogue/photos/france/7452-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(84061,NULL,NULL,'Finely ribbed with seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/4006-original.jpg','https://en.numista.com/catalogue/photos/portugal/4006-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(87329,NULL,NULL,'Finely ribbed with seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/4005-original.jpg','https://en.numista.com/catalogue/photos/portugal/4005-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(88649,NULL,NULL,'Milled',NULL,NULL,NULL,NULL,'/photos/suede/605d9e0d961316.90228193-original.jpg','https://en.numista.com/catalogue/photos/suede/605d9e0d961316.90228193-180.jpg','ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(89870,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,'/photos/argentine/1261-original.jpg','https://en.numista.com/catalogue/photos/argentine/1261-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(91431,NULL,NULL,'Reeded with inscription: combination of the number "2" and two stars, repeated six times alternately upright and inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/8575-original.jpg','https://en.numista.com/catalogue/photos/france/8575-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(100658,NULL,NULL,'Segmented reeding (milled on alternate edges)',NULL,NULL,NULL,NULL,'/photos/royaume-uni/7928-original.jpg','https://en.numista.com/catalogue/photos/royaume-uni/7928-180.jpg','Mark240590',NULL,NULL,NULL);
INSERT INTO Edge VALUES(102445,NULL,NULL,'Reeded with inscription','EINIGKEIT UND RECHT UND FREIHEIT',NULL,NULL,'Unity and Justice and Freedom','/photos/allemagne/2208-original.jpg','https://en.numista.com/catalogue/photos/allemagne/2208-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(105040,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/5045-original.jpg','https://en.numista.com/catalogue/photos/portugal/5045-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(122665,NULL,NULL,'Reeded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(133815,NULL,NULL,'Alternating plain and reeded segments (3 each)',NULL,NULL,NULL,NULL,'/photos/roumanie/2382-original.jpg','https://en.numista.com/catalogue/photos/roumanie/2382-180.jpg','ZacUK',NULL,NULL,NULL);
INSERT INTO Edge VALUES(133816,NULL,NULL,'Smooth with lettering','ROMANIA * ROMANIA *',NULL,NULL,NULL,'/photos/roumanie/2377-original.jpg','https://en.numista.com/catalogue/photos/roumanie/2377-180.jpg','From the other variety on the site',NULL,NULL,NULL);
INSERT INTO Edge VALUES(134685,NULL,NULL,'Reeded with inscription','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/11062-original.jpg','https://en.numista.com/catalogue/photos/france/11062-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(157845,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/5942-original.jpg','https://en.numista.com/catalogue/photos/portugal/5942-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(192990,NULL,NULL,'Reeded with inscription','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/5f832c12e91d69.65800356-original.jpg','https://en.numista.com/catalogue/photos/france/5f832c12e91d69.65800356-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(258832,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/6016f0bc2c36a4.70108456-original.jpg','https://en.numista.com/catalogue/photos/portugal/6016f0bc2c36a4.70108456-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(264789,NULL,NULL,replace(replace('Inscribed (lettered) \r\nThe sequence "2 ★ ★" repeated six times alternately upright and inverted.\r\n\r\n2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★','\r',char(13)),'\n',char(10)),'2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★ 2 ★ ★',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(274850,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/602bcd50abf1d2.14029502-original.jpg','https://en.numista.com/catalogue/photos/portugal/602bcd50abf1d2.14029502-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(275891,NULL,NULL,'Reeded with inscription','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/6032a9831adef4.71580122-original.jpg','https://en.numista.com/catalogue/photos/france/6032a9831adef4.71580122-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(314709,NULL,NULL,'Reeded with incuse text','EINIGKEIT UND RECHT UND FREIHEIT','[object Object]',NULL,'Unity and law and liberty','/photos/allemagne/61cda6f1eba0f3.20048770-original.jpg','https://en.numista.com/catalogue/photos/allemagne/61cda6f1eba0f3.20048770-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(314962,NULL,NULL,'Finely ribbed with edge lettering: three times the sequence "2 * *" upright and the sequence "* * 2" inverted','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/61cdffc5993d05.32634169-original.jpg','https://en.numista.com/catalogue/photos/france/61cdffc5993d05.32634169-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(318748,NULL,NULL,'Reeded with inscription','2 ** 2 ** 2 ** 2 ** 2 ** 2 **',NULL,NULL,NULL,'/photos/france/61f53db96e12e5.69933201-original.jpg','https://en.numista.com/catalogue/photos/france/61f53db96e12e5.69933201-180.jpg','Cyrillius',NULL,NULL,NULL);
INSERT INTO Edge VALUES(319351,NULL,NULL,'Smooth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(321378,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/62ff620b515243.31233954-original.jpg','https://en.numista.com/catalogue/photos/portugal/62ff620b515243.31233954-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(331445,NULL,NULL,'Finely ribbed with edge lettering: six times the sequence "2 *" alternately upright and inverted','2★2★2★2★2★2★','[object Object]',NULL,NULL,'/photos/italie/62ba1d43372ed2.29207041-original.jpg','https://en.numista.com/catalogue/photos/italie/62ba1d43372ed2.29207041-180.jpg','Cyrillius',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(338338,NULL,NULL,'Segmented reeding',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO Edge VALUES(338339,NULL,NULL,'Fine milled with edge lettering','O LIJEPA O DRAGA O SLATKA SLOBODO','[object Object]',NULL,'Oh beautiful, oh dear, oh sweet freedom','/photos/croatie/63e4016e2d3201.58633927-original.jpg','https://en.numista.com/catalogue/photos/croatie/63e4016e2d3201.58633927-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(368994,NULL,NULL,'Finely reeded with inscription: seven castles and five coats of arms',NULL,NULL,NULL,NULL,'/photos/portugal/648bdd64d54a24.00701970-original.jpg','https://en.numista.com/catalogue/photos/portugal/648bdd64d54a24.00701970-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(369820,NULL,NULL,'The sequence "2 ★ ★" repeated six times alternately upright and inverted','2★★2★★2★★2★★2★★2★★',NULL,NULL,NULL,'/photos/france/649a7f4455c368.14264025-original.jpg','https://en.numista.com/catalogue/photos/france/649a7f4455c368.14264025-180.jpg','albinh',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Edge VALUES(377368,NULL,NULL,'Serrated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
CREATE TABLE Watermark (
id INTEGER NOT NULL PRIMARY KEY,
engravers TEXT,
designers TEXT,
description TEXT,
lettering TEXT,
lettering_scripts TEXT,
unabridged_legend TEXT,
lettering_translation TEXT,
picture TEXT,
thumbnail TEXT,
picture_copyright TEXT,
picture_copyright_url TEXT,
picture_license_name TEXT,
picture_license_url TEXT
);
INSERT INTO Watermark VALUES(201676,NULL,NULL,'A rampant lion.',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/bulgarie/62c1577a7711e5.68693174-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/62c1577a7711e5.68693174-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Watermark VALUES(202243,NULL,NULL,'Admiral Gago Coutinho',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/portugal/64e746d626e4b4.41118423-original.jpg','https://en.numista.com/catalogue/photos/portugal/64e746d626e4b4.41118423-180.jpg','gyoschak',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Watermark VALUES(202397,NULL,NULL,'Abraham Lincoln.',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/etats-unis/638b30a57f2ef4.61964255-original.jpg','https://en.numista.com/catalogue/photos/etats-unis/638b30a57f2ef4.61964255-180.jpg','Griffin S',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Watermark VALUES(202523,NULL,NULL,replace(replace('Crowned portrait of Queen Elizabeth II over clear window\r\n(image colourised to enhance detail)','\r',char(13)),'\n',char(10)),NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/england/641809fadf44e6.11202698-original.jpg','https://en.numista.com/catalogue/photos/england/641809fadf44e6.11202698-180.jpg','BCNumismatics',NULL,NULL,NULL);
INSERT INTO Watermark VALUES(206382,NULL,NULL,'Atatürk in profile; Electrotype ''5''',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/turquie/5eb994b6216581.77138961-original.jpg','https://en.numista.com/catalogue/photos/turquie/5eb994b6216581.77138961-180.jpg','Andy289',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Watermark VALUES(206385,NULL,NULL,'Atatürk in profile; Electrotype ''10''',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/turquie/5eb994ccbaeb83.00257247-original.jpg','https://en.numista.com/catalogue/photos/turquie/5eb994ccbaeb83.00257247-180.jpg','Andy289',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
INSERT INTO Watermark VALUES(206387,NULL,NULL,'Atatürk in profile; Electrotype ''20''',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/turquie/62912692ae6485.04664910-original.jpg','https://en.numista.com/catalogue/photos/turquie/62912692ae6485.04664910-180.jpg','Ngdawa',NULL,'CC BY-NC-SA','https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en');
INSERT INTO Watermark VALUES(302331,NULL,NULL,'A portrait of Ivan Milev.',NULL,NULL,NULL,NULL,'https://en.numista.com/catalogue/photos/bulgarie/62c05d46ddf9a1.00960763-original.jpg','https://en.numista.com/catalogue/photos/bulgarie/62c05d46ddf9a1.00960763-180.jpg','hex7ech',NULL,'CC BY-NC','https://creativecommons.org/licenses/by-nc/4.0/deed.en');
CREATE TABLE NumistaType (
id INTEGER NOT NULL PRIMARY KEY,
url TEXT,
title TEXT NOT NULL COLLATE NOCASE,
category TEXT NOT NULL CHECK (category IN ('coin', 'banknote', 'exonumia')),
issuer_code TEXT,
min_year INTEGER,
max_year INTEGER,
type TEXT COLLATE NOCASE,
value_id INTEGER,
demonetization_id INTEGER,
shape TEXT,
composition_id INTEGER,
technique_id INTEGER,
weight REAL,
size REAL,
thickness REAL,
orientation TEXT CHECK (orientation IN ('coin', 'medal', 'variable', 'three', 'nine')),
obverse_id INTEGER,
reverse_id INTEGER,
edge_id INTEGER,
watermark_id INTEGER,
series TEXT,
commemorated_topic TEXT,
comments TEXT,
count INTEGER NOT NULL,
color TEXT,
FOREIGN KEY (issuer_code) REFERENCES Issuer(code),
FOREIGN KEY (value_id) REFERENCES Value(id),
FOREIGN KEY (demonetization_id) REFERENCES Demonetization(id),
FOREIGN KEY (composition_id) REFERENCES Composition(id),
FOREIGN KEY (technique_id) REFERENCES Technique(id),
FOREIGN KEY (obverse_id) REFERENCES Obverse(id),
FOREIGN KEY (reverse_id) REFERENCES Reverse(id),
FOREIGN KEY (edge_id) REFERENCES Edge(id),
FOREIGN KEY (watermark_id) REFERENCES Watermark(id)
);
INSERT INTO NumistaType VALUES(3,'https://en.numista.com/catalogue/pieces3.html','10 Centimes','coin','france',1962,2001,'Standard circulation coin',3,3,'Round',3,3,3.0,20.0,1.40999999999999992,'coin',3,3,3,NULL,NULL,NULL,replace(replace('Variety for 1997
\r\n
','\r',char(13)),'\n',char(10)),2,'rgb(173,149,81)');
INSERT INTO NumistaType VALUES(4,'https://en.numista.com/catalogue/pieces4.html','20 Centimes','coin','france',1962,2001,'Standard circulation coin',4,4,'Round',4,4,4.0,23.5,1.39999999999999991,'coin',4,4,4,NULL,NULL,NULL,replace(replace('Different privy marks throughout mintages:
\r\nOwl 1962-74 Raymond Joly
\r\nDolphin 1975-94 Rousseau
\r\nBee 1994-2000 Pierre Rodier
\r\nHorseshoe 2001 Gérard Buquoy
\r\n
\r\nVariante pour 1997
\r\n
\r\nVariante pour 2000
\r\n
','\r',char(13)),'\n',char(10)),1,'rgb(208,196,132)');
INSERT INTO NumistaType VALUES(5,'https://en.numista.com/catalogue/pieces5.html','½ Franc (signature "O. Roty")','coin','france',1964,2001,'Standard circulation coin',5,5,'Round',5,5,4.5,19.5,1.94999999999999995,'coin',5,5,5,NULL,NULL,NULL,replace(replace('Different privy marks throughout mintages:
\r\nOwl 1958-74 Raymond Joly
\r\nDolphin 1974-94 Rousseau
\r\nBee 1994- Pierre Rodier
\r\nHorseshoe 2000-2002 Gérard Buquoy
\r\n
\r\n The 1993 'No mark' has missing privy marks both sides of denomination ...
\r\n
\r\n
\r\n
\r\n
\r\n
','\r',char(13)),'\n',char(10)),2,'rgb(60,92,156)');
INSERT INTO NumistaType VALUES(8,'https://en.numista.com/catalogue/pieces8.html','5 Francs (signature "O. Roty")','coin','france',1969,2001,'Standard circulation coin',8,8,'Round',8,8,10.0,29.0,2.08999999999999985,'coin',8,8,8,NULL,NULL,NULL,replace(replace('Pré-série de 5 FRANCS Semeuse, 1969 Paris GEM.154 10
\r\n
\r\n
\r\nThe different brands of general engravers
\r\nOwl 1958-74 Raymond Joly.
\r\n
\r\nDolphin 1975-94 Rousseau.
\r\nBee 1994-2000 Pierre Rodier
\r\n
\r\n
\r\nHead of the Engraving Service
\r\nHorseshoe 2001 Gérard Buquoy','\r',char(13)),'\n',char(10)),1,'rgb(80.52631578947368,107.36842105263155,174.47368421052633)');
INSERT INTO NumistaType VALUES(9,'https://en.numista.com/catalogue/pieces9.html','10 Francs','coin','france',1988,2001,'Standard circulation coin',9,9,'Round',9,9,6.5,23.0,2.10000000000000008,'coin',9,9,9,NULL,NULL,NULL,replace(replace('Different privy marks throughout mintages.
\r\nDolphin 1988-93 Emile Rousseau.
\r\nBee 1994-2000 Pierre Rodier
\r\nHorseshoe 2001 Gérard Buquoy','\r',char(13)),'\n',char(10)),3,'rgb(182,140,66)');
INSERT INTO NumistaType VALUES(12,'https://en.numista.com/catalogue/pieces12.html','1 Franc (Charles de Gaulle)','coin','france',1988,1988,'Circulating commemorative coin',12,12,'Round',12,12,6.0,24.0,1.60000000000000008,'coin',12,12,12,NULL,NULL,'30th Anniversary of the Fifth Republic','
',1,'rgb(200.00000000000009,154.99999999999991,54.999999999999915)');
INSERT INTO NumistaType VALUES(42,'https://en.numista.com/catalogue/pieces42.html','1 Cent "Lincoln Memorial Cent"','coin','etats-unis',1959,1982,'Standard circulation coin',42,42,'Round',42,42,3.10999999999999987,19.0,1.30000000000000004,'coin',42,42,42,NULL,NULL,NULL,replace(replace('The standard weight of this coin was 48 grains.
\r\n
\r\nFrom 1959 to September 5, 1962 these coins were minted with 95% Copper and 5% Tin and Zinc. After September 5, 1962 and until 1982 these coins were minted with 95% Copper and 5% Zinc (Brass).
\r\n
\r\nFrom 1965 to 1967, these coins were minted in Philadelphia and Denver without a mintmark.
\r\n
\r\nFrom 1974 through 1986, a number of these coins were minted in the United States Bullion Depository, West Point. These coins lacked a mintmark are were indistinguishable from the Philadelphia issue.
\r\n
\r\nFG engraver's signature
\r\n
\r\n
\r\n1960
\r\n
\r\n1960
\r\n
\r\n1969 double die
\r\n
\r\n
\r\n1969
\r\nMintmark D: aligned with the word LIBERTY, there are small differences in the position of the date, the mintmark D and the motto "IN GOD WE TRUST".
\r\n
\r\n1970 far near S
\r\n
\r\n1971 double die
\r\n
\r\n1971, 1972
\r\nIn 1971 and 1972 the original dies of obverse were used.
\r\nDie with vest line started from the knot of bowtie and with vest line started from a loop of bowtie.
\r\nPicture: © Images courtesy of Alexandr Prokofyev
\r\n
\r\nThe upper die on the photos was in use in 1971 and 1972 years for all issues, the lower - in 1971 only for all issues.
\r\n1979S
\r\n
\r\n1981S
\r\n
\r\n
\r\n1982
\r\nThe year 1982 is a transition: the earliest coins were struck in 95% copper, and the latest coins were struck in copper plated zinc. One of the most noticeable differences between the two is the weight (3.11 grams versus 2.50 grams).
\r\n
','\r',char(13)),'\n',char(10)),2,'rgb(196,114,56)');
INSERT INTO NumistaType VALUES(43,'https://en.numista.com/catalogue/pieces43.html','1 Cent "Lincoln Memorial Cent"','coin','etats-unis',1982,2008,'Standard circulation coin',43,43,'Round',43,43,2.5,19.0500000000000007,1.30000000000000004,'coin',43,43,43,NULL,NULL,NULL,replace(replace('KM#201a is for coins dated 1982, whereas KM#201b is for all coins dated afterward.
\r\n
\r\nFrom 1974 through 1986, a number of these coins were minted in the United States Bullion Depository, West Point. These coins lacked a mintmark and are indistinguishable from the Philadelphia issue.
\r\n
\r\nFG engraver's signature
\r\n
\r\n
\r\n1982 is a transition year: the earliest coins were struck in 95% copper, and the latest coins were struck in copper-plated zinc. One of the most noticeable differences between the two is the weights (3.11 grams versus 2.50 grams).
\r\n
\r\n
\r\nReverse
\r\nDie 005 - G in FG tall, AM to AMERICA widely spread, narrow script.
\r\n
\r\nDie 006 - G in FG flared, AM to AMERICA widely spread, bolder script. See on the first photo above by Heligal for year 1992.
\r\n
\r\nCombinations
\r\nDie 005: 1986, 1987, 1988 all issues.
\r\nDie 006: 1988, 1988 D, 1989-1992 all issues, 1994-2008 S (Proof), 1998, 1999, 2000.
\r\n
\r\nIn the American numismatics the business strike of 1988 with die 006 is named 'transitional'.
\r\n
\r\nIn 1992, all coins were meant to have a wide "AM" of "AMERICA"; however, some were struck using the design meant for 1993 pieces (not using the proof, contrary to what the documentation says), resulting in some having a close "AM" of "AMERICA".
\r\n
\r\nIn 1998, 1999, and 2000, there were two different intended designs: those meant for regular circulating coins and those meant for proof coins. The design of the circulating coins was meant to have a wide "AM" of "AMERICA" whereas the design of the proof coins was meant to have a close "AM" of "AMERICA". Even so, some regular circulating coins were struck with the reverse proof design, and some proof coins (known 1998, 1999 only) were struck with the circulating design.
\r\n
\r\n
\r\nKM#201a 1982
\r\n
\r\nkm201b
\r\n1983
\r\n
\r\n1984
\r\n
\r\n1992
\r\n
\r\n1995
\r\n
\r\n1996
\r\n
\r\n1998
\r\n
\r\n1999
\r\n
\r\n2000
\r\n
\r\n
\r\nThe lowercase "o" in the the reverse lettering "THE UNITED STATES oF AMERICA" is not an error. According to the final report of the Lincoln sesquicentennial commission, it was a choice of the artist Frank Gasparro, who said that the small "o" was not done in error but rather had been done deliberately to give design appeal to the lettering on the penny. Citing precedents for the lowercase letter, such as the Franklin Half Dollar, the Liberty Walking Half Dollar, the Peace Dollar, and several commemoratives, he said, "I did it to break up the pattern."','\r',char(13)),'\n',char(10)),4,'rgb(134,96,44)');
INSERT INTO NumistaType VALUES(44,'https://en.numista.com/catalogue/pieces44.html','5 Cents "Jefferson Nickel" (1st portrait)','coin','etats-unis',1938,2003,'Standard circulation coin',44,44,'Round',44,44,5.0,21.1999999999999992,1.75,'coin',44,44,44,NULL,NULL,NULL,replace(replace('1939
\r\n
\r\n1949D
\r\n
\r\n1954S
\r\n
\r\n1955D
\r\n
\r\n1968S
\r\n
\r\n1969S
\r\n
\r\n1979S
\r\n
\r\n1981P
\r\n
\r\n1981S
\r\n
\r\n1988D
\r\n
\r\n1988P
\r\n
\r\n1989P
\r\n
\r\n
\r\nIncluding pre-war issues, the mintage of this coin resumed in 1946 as KM#A192. War-time silver nickels are listed separately as KM#192a due to different metal compositions.
\r\n
\r\n1938 thru 1989 = 5 full steps
\r\n1990 to date = 6 full steps
\r\n
\r\nFrom 1965 to 1967, these coins were minted in Philadelphia and Denver without a mintmark.
\r\n
\r\nCoin with the "S" mintmark from 1968-1970 were made for circulation, while coins for that were only made for proof sets.
\r\n
\r\nThere are 1999 P and possibly other dates which exhibit DDD (Die Deterioration Doubling). These coins exhibit doubling, thickening, twisting and other deformities which results from die deterioration. Die deterioration is the result of die wear or improper heat treating (of the dies) combined with die wear.
\r\n
\r\nDifference between 1986 P coins
\r\n
\r\n"P" going outside :
\r\n
\r\n@ antoine0002
\r\n
\r\n"P" going inside :
\r\n
\r\n@ antoine0002','\r',char(13)),'\n',char(10)),5,'rgb(68,64,160)');
INSERT INTO NumistaType VALUES(53,'https://en.numista.com/catalogue/pieces53.html','1 Dime "Roosevelt Dime"','coin','etats-unis',1965,2023,'Standard circulation coin',53,53,'Round',53,53,2.26799999999999979,17.9100000000000001,1.35000000000000008,'coin',53,53,53,NULL,NULL,NULL,replace(replace('The standard weight of this coin is 35 grains.
\r\n
\r\nMintmark varieties:
\r\n1) No mintmark (1965-1979)
\r\n2) "P" on obverse (1980-date)
\r\n3) "D" on obverse (1968-date)
\r\n4) "S" on obverse (Proof Issues, 1968-date)
\r\n5) San Francisco without a mintmark (1968, 1970, 1975, 1983)
\r\n6) "W" on obverse, 1996 (Mint sets only)
\r\nType II Proofs have a clearer mintmark than Type I Proofs.
\r\n
\r\n1979S proof
\r\n
\r\n1981S proof
\r\n
\r\n1982 weak / strong strikes - mint marks / none
\r\n
\r\n
\r\nThis design was adopted for the American Dime in 1946, one year after Franklin D. Roosevelt's death. It was minted in 90% silver from 1946 to 1964, until the United States removed silver from nearly all circulation coins starting in 1965. Since 1965, the design has remained relatively unchanged, meaning that the Roosevelt Dime is currently the oldest coin with consistent design, weight, and composition in current American production.
\r\n
\r\nFrom 1965 to 1967, these coins were minted in Philadelphia and Denver without a mintmark.','\r',char(13)),'\n',char(10)),9,'rgb(151.83206106870227,128.47328244274811,103.16793893129774)');
INSERT INTO NumistaType VALUES(55,'https://en.numista.com/catalogue/pieces55.html','¼ Dollar "Washington Quarter"','coin','etats-unis',1965,1998,'Standard circulation coin',55,55,'Round',55,55,5.66999999999999992,24.2600000000000015,1.75,'coin',55,55,55,NULL,NULL,NULL,replace(replace('The standard weight of all quarters issued since 1965 is 87½ grains.
\r\n
\r\nFrom 1965 to 1967, these coins were minted in Philadelphia and Denver without a mintmark.
\r\n
\r\nFrom 1977 through 1979, 50,824,000 coins were minted in the United States Bullion Depository, West Point. These coins are identical to the Philadelphia issue. The mintage is a follows:
\r\n1977: 7,352,000
\r\n1978: 20,800,000
\r\n1979: 20,672,000
\r\n
\r\n"Type II" proofs have clearer mint-marks than "Type I".
\r\n1979S types
\r\n
\r\n1981S types
\r\n
','\r',char(13)),'\n',char(10)),4,'rgb(132.68292682926833,124.39024390243898,122.31707317073166)');
INSERT INTO NumistaType VALUES(57,'https://en.numista.com/catalogue/pieces57.html','1 Euro Cent','coin','autriche',2002,2023,'Standard circulation coin',57,57,'Round',57,57,2.29999999999999982,16.25,1.66999999999999992,'medal',57,57,57,NULL,NULL,NULL,replace(replace('Gentian Flower or Stemless Gentian Flower - Binomial Name: Gentiana acaulis
\r\n
\r\n
\r\n
\r\nThere are small differences in the oblique lines on the reverse in 2018:
\r\n
\r\n
\r\nSlightly modified obverse (thinner, longer and more numerous lines in the red fields of the Austrian flag):
\r\n
','\r',char(13)),'\n',char(10)),4,'rgb(167,113,74)');
INSERT INTO NumistaType VALUES(58,'https://en.numista.com/catalogue/pieces58.html','2 Euro Cent','coin','autriche',2002,2023,'Standard circulation coin',58,58,'Round',58,58,3.06000000000000005,18.75,1.66999999999999992,'medal',58,58,58,NULL,NULL,NULL,replace(replace('Edelweiss Flower Binomial Name: Leontopodium alpinum
\r\n
\r\n
\r\n
\r\nNew version of the common side seen with 2018 coins. Main differences:
\r\n - Thicker and shorter numeral
\r\n - Rounded edges of the numeral
\r\n - Thicker font in "EURO CENT"
\r\n - Thicker lines with longer ends outside of stars
\r\nAlso from 2018 onwards, thinner and more numerous lines in the flag on the national side (21, 25 vs. 19, 22).
\r\n
','\r',char(13)),'\n',char(10)),2,'rgb(172,96,36)');
INSERT INTO NumistaType VALUES(73,'https://en.numista.com/catalogue/pieces73.html','1 Euro Cent - Albert II (1st type, 1st portrait)','coin','belgique',1999,2007,'Standard circulation coin',73,73,'Round',73,73,2.29999999999999982,16.25,1.66999999999999992,'medal',73,73,73,NULL,NULL,NULL,replace(replace('The star variants on the 1999 coin
\r\n
\r\nOle','\r',char(13)),'\n',char(10)),4,'rgb(172,92,52)');
INSERT INTO NumistaType VALUES(74,'https://en.numista.com/catalogue/pieces74.html','5 Euro Cent - Albert II (1st type, 1st portrait)','coin','belgique',1999,2007,'Standard circulation coin',74,74,'Round',74,74,3.91999999999999992,21.25,1.66999999999999992,'medal',74,74,74,NULL,NULL,NULL,replace(replace('(fr) BU 1999 - 2001
\r\nSet introduction de l'euro avec les pièces de 1999 à 2001
\r\n
\r\n
\r\nBU 2002
\r\n 1 - Coffret annuel - les éperons d'or à 100 000 exemplaires + 1 médaille (700 ans de la bataille des éperons d'or : 1302 - 2002)
\r\n
\r\n 2 - Adieu au franc, bienvenue à l'euro à 20 000 exemplaires
\r\n
\r\n 3 - CM de cyclisme sur route à 20 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2003
\r\n1 - 50 ans de TV en Belgique + 1 médaille (50 ans de TV en Belgique) à 100 000 exemplaires
\r\n
\r\n2- 100 ans de Ford à 15 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2004
\r\n1 - 140 ans de la Croix rouge à 60 000 exemplaires + 1 médaille classique
\r\n
\r\n2 - 140 ans de la Croix rouge + 1 médaille avec la croix peinte en rouge à 2 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2005
\r\n1 - Grand' Place + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Grand' Place + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2006
\r\n1 - Les Béguinages flamands + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Les Béguinages flamands + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2007
\r\n1 - Les ascenseurs à bateaux + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Les ascenseurs à bateaux + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver','\r',char(13)),'\n',char(10)),2,'rgb(172,92,52)');
INSERT INTO NumistaType VALUES(75,'https://en.numista.com/catalogue/pieces75.html','10 Euro Cent - Albert II (1st map, 1st type, 1st portrait)','coin','belgique',1999,2006,'Standard circulation coin',75,75,'Round',75,75,4.09999999999999964,19.75,1.92999999999999993,'medal',75,75,75,NULL,NULL,NULL,replace(replace('(fr) Distinction des variétés 1999:
\r\nAvers 1 :
\r\nLa gravure est épaisse
\r\n1) La base de la couronne est
\r\ntrès régulièrement courbe
\r\n2) Le support de la croix est étroit et accolé à la couronne
\r\n3) La pointe du A est très proche de la couronne
\r\n
\r\nAvers 2 :
\r\nLa gravure est épaisse
\r\n1) La base de la couronne
\r\nest aplatie
\r\n2) Le support de la croix est étroit et accolé à la couronne
\r\n3) La pointe du A est très proche de la couronne
\r\n
\r\nAvers 3:
\r\nLa gravure est fine
\r\n1) La base de la couronne est très régulièrement courbe
\r\n2) Le support de la croix est large et légèrement décollé de la couronne
\r\n3) La pointe du A est éloignée de la couronne
\r\n
\r\n
\r\nBU 1999 - 2001
\r\nSet introduction de l'euro avec les pièces de 1999 à 2001
\r\n
\r\n
\r\nBU 2002
\r\n 1 - Coffret annuel - les éperons d'or à 100 000 exemplaires + 1 médaille (700 ans de la bataille des éperons d'or : 1302 - 2002)
\r\n
\r\n 2 - Adieu au franc, bienvenue à l'euro à 20 000 exemplaires
\r\n
\r\n 3 - CM de cyclisme sur route à 20 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2003
\r\n1 - 50 ans de TV en Belgique + 1 médaille (50 ans de TV en Belgique) à 100 000 exemplaires
\r\n
\r\n2- 100 ans de Ford à 15 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2004
\r\n1 - 140 ans de la Croix rouge à 60 000 exemplaires + 1 médaille classique
\r\n
\r\n2 - 140 ans de la Croix rouge + 1 médaille avec la croix peinte en rouge à 2 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2005
\r\n1 - Grand' Place + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Grand' Place + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2006
\r\n1 - Les Béguinages flamands + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Les Béguinages flamands + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver','\r',char(13)),'\n',char(10)),1,'rgb(192,158,78)');
INSERT INTO NumistaType VALUES(78,'https://en.numista.com/catalogue/pieces78.html','2 Euro Cent - Albert II (1st type, 1st portrait)','coin','belgique',1999,2007,'Standard circulation coin',78,78,'Round',78,78,3.06000000000000005,18.75,1.66999999999999992,'medal',78,78,78,NULL,NULL,NULL,replace(replace('(fr) BU 1999 - 2001
\r\nSet introduction de l'euro avec les pièces de 1999 à 2001
\r\n
\r\n
\r\nBU 2002
\r\n 1 - Coffret annuel - les éperons d'or à 100 000 exemplaires + 1 médaille (700 ans de la bataille des éperons d'or : 1302 - 2002)
\r\n
\r\n 2 - Adieu au franc, bienvenue à l'euro à 20 000 exemplaires
\r\n
\r\n 3 - CM de cyclisme sur route à 20 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2003
\r\n1 - 50 ans de TV en Belgique + 1 médaille (50 ans de TV en Belgique) à 100 000 exemplaires
\r\n
\r\n2- 100 ans de Ford à 15 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2004
\r\n1 - 140 ans de la Croix rouge à 60 000 exemplaires + 1 médaille classique
\r\n
\r\n2 - 140 ans de la Croix rouge + 1 médaille avec la croix peinte en rouge à 2 000 exemplaires
\r\nimage à trouver
\r\n3 - Naissance à 10 000 exemplaires
\r\nimage à trouver
\r\n4 - Mariage à 10 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2005
\r\n1 - Grand' Place + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Grand' Place + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2006
\r\n1 - Les Béguinages flamands + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Les Béguinages flamands + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver
\r\n
\r\nBU 2007
\r\n1 - Les ascenseurs à bateaux + 1 médaille non colorisé à 38 000 exemplaires
\r\n
\r\n2 - Les ascenseurs à bateaux + 1 médaille colorisé à 2 000 exemplaires
\r\nimage à trouver','\r',char(13)),'\n',char(10)),3,'rgb(172,92,52)');
INSERT INTO NumistaType VALUES(79,'https://en.numista.com/catalogue/pieces79.html','20 Euro Cent - Albert II (1st map, 1st type, 1st portrait)','coin','belgique',1999,2006,'Standard circulation coin',79,79,'Spanish flower',79,79,5.74000000000000021,22.25,2.14000000000000012,'medal',79,79,79,NULL,NULL,NULL,replace(replace('Later issues show smaller date letters and stars surrounding the portrait.
\r\n
\r\nHow to understand if stars are small or big for 2002:
\r\n
','\r',char(13)),'\n',char(10)),1,'rgb(172,156,60)');
INSERT INTO NumistaType VALUES(81,'https://en.numista.com/catalogue/pieces81.html','1 Euro Cent (1st type)','coin','espagne',1999,2009,'Standard circulation coin',81,81,'Round',81,81,2.29999999999999982,16.25,1.66999999999999992,'medal',81,81,81,NULL,NULL,NULL,NULL,48,'rgb(196,116,60)');
INSERT INTO NumistaType VALUES(82,'https://en.numista.com/catalogue/pieces82.html','2 Euro Cent (1st type)','coin','espagne',1999,2009,'Standard circulation coin',82,82,'Round',82,82,3.06000000000000005,18.75,1.66999999999999992,'medal',82,82,82,NULL,NULL,NULL,NULL,46,'rgb(196,116,60)');
INSERT INTO NumistaType VALUES(83,'https://en.numista.com/catalogue/pieces83.html','5 Euro Cent (1st type)','coin','espagne',1999,2009,'Standard circulation coin',83,83,'Round',83,83,3.91999999999999992,21.25,1.66999999999999992,'medal',83,83,83,NULL,NULL,NULL,NULL,38,'rgb(196,116,60)');
INSERT INTO NumistaType VALUES(84,'https://en.numista.com/catalogue/pieces84.html','10 Euro Cent (1st type; 1st map)','coin','espagne',1999,2006,'Standard circulation coin',84,84,'Round',84,84,4.09999999999999964,19.75,1.92999999999999993,'medal',84,84,84,NULL,NULL,NULL,NULL,6,'rgb(156,116,68)');
INSERT INTO NumistaType VALUES(85,'https://en.numista.com/catalogue/pieces85.html','20 Euro Cent (1st type; 1st map)','coin','espagne',1999,2006,'Standard circulation coin',85,85,'Spanish flower',85,85,5.74000000000000021,22.25,2.14000000000000012,'medal',85,85,85,NULL,NULL,NULL,replace(replace('There is at least 2 types of variations in the Obverse for this coin in 1999 in regular circulation:
\r\n


','\r',char(13)),'\n',char(10)),2,'rgb(176,85,23)');
INSERT INTO NumistaType VALUES(96,'https://en.numista.com/catalogue/pieces96.html','2 Euro (1st type, 1st map)','coin','finlande',1999,2006,'Standard circulation coin',96,96,'Round',96,96,8.5,25.75,2.20000000000000017,'medal',96,96,96,NULL,NULL,NULL,'
',1,'rgb(162.13872832369944,141.50289017341038,92.86127167630057)');
INSERT INTO NumistaType VALUES(97,'https://en.numista.com/catalogue/pieces97.html','1 Euro Cent','coin','france',1999,2023,'Standard circulation coin',97,97,'Round',97,97,2.29999999999999982,16.25,1.66999999999999992,'medal',97,97,97,NULL,NULL,NULL,replace(replace('Different Mint Master Marks




','\r',char(13)),'\n',char(10)),15,'rgb(222,148,107)');
INSERT INTO NumistaType VALUES(106,'https://en.numista.com/catalogue/pieces106.html','2 Euro Cent','coin','allemagne',2002,2023,'Standard circulation coin',106,106,'Round',106,106,3.06000000000000005,18.75,1.66999999999999992,'medal',106,106,106,NULL,NULL,NULL,replace(replace('Example for 2002 "Kleines Münzbild":




','\r',char(13)),'\n',char(10)),17,'rgb(199,119,60)');
INSERT INTO NumistaType VALUES(107,'https://en.numista.com/catalogue/pieces107.html','5 Euro Cent','coin','allemagne',2002,2023,'Standard circulation coin',107,107,'Round',107,107,3.91999999999999992,21.25,1.66999999999999992,'medal',107,107,107,NULL,NULL,NULL,replace(replace('


','\r',char(13)),'\n',char(10)),7,'rgb(199,119,60)');
INSERT INTO NumistaType VALUES(108,'https://en.numista.com/catalogue/pieces108.html','10 Euro Cent (1st map)','coin','allemagne',2002,2006,'Standard circulation coin',108,108,'Round',108,108,4.09999999999999964,19.75,1.92999999999999993,'medal',108,108,108,NULL,NULL,NULL,replace(replace('Two variants for the 2002A:
','\r',char(13)),'\n',char(10)),3,'rgb(204,160,73)');
INSERT INTO NumistaType VALUES(109,'https://en.numista.com/catalogue/pieces109.html','20 Euro Cent (1st map)','coin','allemagne',2002,2007,'Standard circulation coin',109,109,'Spanish flower',109,109,5.74000000000000021,22.25,2.14000000000000012,'medal',109,109,109,NULL,NULL,NULL,'
',2,'rgb(164,126,74)');
INSERT INTO NumistaType VALUES(110,'https://en.numista.com/catalogue/pieces110.html','50 Euro Cent (1st map)','coin','allemagne',2002,2006,'Standard circulation coin',110,110,'Round',110,110,7.79999999999999982,24.25,2.37999999999999989,'medal',110,110,110,NULL,NULL,NULL,replace(replace('Five mints currently share coin production. Each puts its own workshop letter on the coins it mints:




























','\r',char(13)),'\n',char(10)),1,'rgb(172,108,52)');
INSERT INTO NumistaType VALUES(116,'https://en.numista.com/catalogue/pieces116.html','10 Euro Cent (1st map)','coin','grece',2002,2006,'Standard circulation coin',116,116,'Round',116,116,4.09999999999999964,19.75,1.92999999999999993,'medal',116,116,116,NULL,NULL,NULL,replace(replace('The coin is issued in bankrolls and the above mint sets:




','\r',char(13)),'\n',char(10)),1,'rgb(205,148,32)');
INSERT INTO NumistaType VALUES(118,'https://en.numista.com/catalogue/pieces118.html','50 Euro Cent (1st map)','coin','grece',2002,2006,'Standard circulation coin',118,118,'Round',118,118,7.79999999999999982,24.25,2.37999999999999989,'medal',118,118,118,NULL,NULL,NULL,replace(replace('The coin is issued in bankrolls and the above mint sets:




','\r',char(13)),'\n',char(10)),1,'rgb(193,173,121)');
INSERT INTO NumistaType VALUES(120,'https://en.numista.com/catalogue/pieces120.html','2 Euro (1st map)','coin','grece',2002,2006,'Standard circulation coin',120,120,'Round',120,120,8.5,25.75,2.20000000000000017,'medal',120,120,120,NULL,NULL,NULL,replace(replace('Smaller and larger font variants seen on 2 euro coins 





','\r',char(13)),'\n',char(10)),1,'rgb(167.5714285714286,140.25,87.4285714285714)');
INSERT INTO NumistaType VALUES(121,'https://en.numista.com/catalogue/pieces121.html','1 Euro Cent','coin','irlande',2002,2023,'Standard circulation coin',121,121,'Round',121,121,2.29999999999999982,16.25,1.66999999999999992,'medal',121,121,121,NULL,NULL,NULL,replace(replace('Although still legal tender, these coins are no longer issued for circulation as of 2015. Cash transactions are now rounded to the nearest 5 Cents.
','\r',char(13)),'\n',char(10)),20,'rgb(236,164,87)');
INSERT INTO NumistaType VALUES(122,'https://en.numista.com/catalogue/pieces122.html','2 Euro Cent','coin','irlande',2002,2023,'Standard circulation coin',122,122,'Round',122,122,3.06000000000000005,18.75,1.66999999999999992,'medal',122,122,122,NULL,NULL,NULL,'Although still legal tender, these coins are no longer issued for circulation as of 2015. Cash transactions are now rounded to the nearest 5 Cents.',24,'rgb(217,138,58)');
INSERT INTO NumistaType VALUES(125,'https://en.numista.com/catalogue/pieces125.html','20 Euro Cent (1st map)','coin','irlande',2002,2006,'Standard circulation coin',125,125,'Spanish flower',125,125,5.74000000000000021,22.25,2.14000000000000012,'medal',125,125,125,NULL,NULL,NULL,NULL,1,'rgb(198,147,64)');
INSERT INTO NumistaType VALUES(129,'https://en.numista.com/catalogue/pieces129.html','1 Euro Cent','coin','italie',2002,2023,'Standard circulation coin',129,129,'Round',129,129,2.29999999999999982,16.25,1.66999999999999992,'medal',129,129,129,NULL,NULL,NULL,replace(replace('Although still legal tender, these coins are no longer issued for circulation as of 2018. Cash transactions are now rounded to the nearest 5 Cents.
','\r',char(13)),'\n',char(10)),4,'rgb(149,78,36)');
INSERT INTO NumistaType VALUES(130,'https://en.numista.com/catalogue/pieces130.html','2 Euro Cent','coin','italie',2002,2023,'Standard circulation coin',130,130,'Round',130,130,3.06000000000000005,18.75,1.66999999999999992,'medal',130,130,130,NULL,NULL,NULL,replace(replace('Although still legal tender, these coins are no longer issued for circulation as of 2018. Cash transactions are now rounded to the nearest 5 Cents.
','\r',char(13)),'\n',char(10)),8,'rgb(182,101,56)');
INSERT INTO NumistaType VALUES(131,'https://en.numista.com/catalogue/pieces131.html','5 Euro Cent','coin','italie',2002,2023,'Standard circulation coin',131,131,'Round',131,131,3.91999999999999992,21.25,1.66999999999999992,'medal',131,131,131,NULL,NULL,NULL,replace(replace('



- different font and star sizes
','\r',char(13)),'\n',char(10)),479,'rgb(228,132,80)');
INSERT INTO NumistaType VALUES(154,'https://en.numista.com/catalogue/pieces154.html','2 Euro Cent','coin','portugal',2002,2023,'Standard circulation coin',154,154,'Round',154,154,3.06000000000000005,18.75,1.66999999999999992,'medal',154,154,154,NULL,NULL,NULL,'(fr) 


',393,'rgb(196,123,84)');
INSERT INTO NumistaType VALUES(155,'https://en.numista.com/catalogue/pieces155.html','5 Euro Cent','coin','portugal',2002,2023,'Standard circulation coin',155,155,'Round',155,155,3.91999999999999992,21.25,1.66999999999999992,'medal',155,155,155,NULL,NULL,NULL,replace(replace('From 2011 onwards the design of the Obverse changed to display more thin and delicate lines and motifs, this can be seen in the following image below (comparison between 2010 design, and the new 2011-present one):
','\r',char(13)),'\n',char(10)),94,'rgb(180,117,79)');
INSERT INTO NumistaType VALUES(156,'https://en.numista.com/catalogue/pieces156.html','10 Euro Cent (1st map)','coin','portugal',2002,2007,'Standard circulation coin',156,156,'Round',156,156,4.09999999999999964,19.75,1.92999999999999993,'medal',156,156,156,NULL,NULL,NULL,NULL,3,'rgb(156,132,60)');
INSERT INTO NumistaType VALUES(171,'https://en.numista.com/catalogue/pieces171.html','5 Rappen (Libertas; aluminium-bronze)','coin','suisse',1981,2023,'Standard circulation coin',171,171,'Round',171,171,1.80000000000000004,17.1499999999999985,1.25,'medal',171,171,171,NULL,'Libertas series',NULL,replace(replace('Different groups of dies are known.










',1,'rgb(149.6739130434783,60.97826086956515,194.02173913043484)');
INSERT INTO NumistaType VALUES(465,'https://en.numista.com/catalogue/pieces465.html','1 Dollar - Elizabeth II (2nd portrait)','coin','canada',1987,1989,'Standard circulation coin',465,465,'Hendecagonal (11-sided)',465,465,7.0,26.5,1.89999999999999991,'medal',465,465,465,NULL,NULL,NULL,replace('Note: for 1987 the coin's thickness is 1.95 mm and diameter 26.72 mm, but for 1988 and 1989 coins it is 1.75 mm and 26.50.


','\r',char(13)),'\n',char(10)),1,'rgb(200,178,129)');
INSERT INTO NumistaType VALUES(589,'https://en.numista.com/catalogue/pieces589.html','5 Pesos','coin','mexique',1997,2023,'Standard circulation coin',589,589,'Round',589,589,7.07000000000000028,25.5,2.0299999999999998,'coin',589,589,589,NULL,NULL,NULL,replace(replace('2008 - 2010 mintages are considerably lower because those were the years the commemorative coins were released (Centennial of the Revolution and Bicentennial of Independence series). The mintage for these standard 5 Pesos coins was reduced to nearly a tenth of the normal years, making them more difficult to find and usually more expensive than the commemorative coins of the same years.
','\r',char(13)),'\n',char(10)),1,'rgb(206,176,123)');
INSERT INTO NumistaType VALUES(591,'https://en.numista.com/catalogue/pieces591.html','10 Pesos','coin','mexique',1997,2023,'Standard circulation coin',591,591,'Round',591,591,10.33,28.0,2.29999999999999982,'coin',591,591,591,NULL,NULL,NULL,replace(replace('



','\r',char(13)),'\n',char(10)),1,'rgb(172,132,79)');
INSERT INTO NumistaType VALUES(596,'https://en.numista.com/catalogue/pieces596.html','20 Dinars','coin','algerie',1992,2023,'Standard circulation coin',596,596,'Round',596,596,8.61999999999999921,27.5,2.06999999999999984,'coin',596,596,596,NULL,NULL,NULL,replace(replace('The Barbary Lion or Atlas Lion (Panthera leo) found in Algeria is considered now a sub-species.























',94,'rgb(139.26923076923077,121.61538461538458,115.73076923076921)');
INSERT INTO NumistaType VALUES(775,'https://en.numista.com/catalogue/pieces775.html','1 Escudo','coin','portugal',1969,1979,'Standard circulation coin',775,775,'Round',775,775,8.0,26.0,2.0299999999999998,'coin',775,775,775,NULL,'System 1969-1980',NULL,'In 1973, the British Royal Mint produced 7,625,000 blank planchets for the manufacture of these coins.',18,'rgb(176,106,84)');
INSERT INTO NumistaType VALUES(776,'https://en.numista.com/catalogue/pieces776.html','50 Centavos','coin','portugal',1969,1979,'Standard circulation coin',776,776,'Round',776,776,4.5,22.5,1.5,'coin',776,776,776,NULL,'System 1969-1980',NULL,'In 1973, the British Royal Mint produced 16,444,444 blank planchets for the manufacture of these coins.',35,'rgb(180,110,80)');
INSERT INTO NumistaType VALUES(779,'https://en.numista.com/catalogue/pieces779.html','25 Pesetas (Canary Islands)','coin','espagne',1994,1994,'Circulating commemorative coin',779,779,'Round with a round hole',779,779,4.20000000000000017,19.5,1.60000000000000008,'coin',779,779,779,NULL,'Autonomous communities of Spain',NULL,NULL,1,'rgb(236,204,116)');
INSERT INTO NumistaType VALUES(781,'https://en.numista.com/catalogue/pieces781.html','5 Pesetas - Francisco Franco (Copper-nickel)','coin','espagne',1958,1975,'Standard circulation coin',781,781,'Round',781,781,5.75,23.0,1.5,'coin',781,781,781,NULL,NULL,NULL,replace('
','\n',char(10)),1,'rgb(196,172,124)');
INSERT INTO NumistaType VALUES(782,'https://en.numista.com/catalogue/pieces782.html','5 Pesetas - Juan Carlos I','coin','espagne',1976,1980,'Standard circulation coin',782,782,'Round',782,782,5.75,23.0,1.5,'coin',782,782,782,NULL,NULL,NULL,replace('Tilde style in España above the N has three sizes and also a variety with the mark missing altogether possibly from a blocked die?
','\n',char(10)),2,'rgb(173.20754716981133,134.71698113207546,81.79245283018867)');
INSERT INTO NumistaType VALUES(783,'https://en.numista.com/catalogue/pieces783.html','5 Pesetas (Islas Baleares)','coin','espagne',1997,1997,'Circulating commemorative coin',783,783,'Round',783,783,3.0,17.5,1.5,'coin',783,783,783,NULL,'Autonomous communities of Spain',NULL,replace('The Balearic Islands, an archipelago in the western Mediterranean Sea which form an autonomous community and a province of Spain.
','\n',char(10)),3,'rgb(177,155,85)');
INSERT INTO NumistaType VALUES(784,'https://en.numista.com/catalogue/pieces784.html','5 Pesetas (Asturias)','coin','espagne',1995,1995,'Circulating commemorative coin',784,784,'Round',784,784,3.0,17.5,1.5,'coin',784,784,784,NULL,'Autonomous communities of Spain',NULL,replace('Hórreos are raised granaries found in the northwest Iberian peninsula made to keep rodents out
','\n',char(10)),1,'rgb(212,188,68)');
INSERT INTO NumistaType VALUES(787,'https://en.numista.com/catalogue/pieces787.html','1 Peseta - Juan Carlos I','coin','espagne',1976,1980,'Standard circulation coin',787,787,'Round',787,787,3.5,21.0,1.60000000000000008,'coin',787,787,787,NULL,NULL,NULL,replace('The real date is written in the stars on each side of the word "UNA". An example shows 19 77 listed as 1975 77.

','\n',char(10)),2,'rgb(190,175,70)');
INSERT INTO NumistaType VALUES(844,'https://en.numista.com/catalogue/pieces844.html','2 Deutsche Mark (Konrad Adenauer)','coin','allemagne',1969,1987,'Circulating commemorative coin',844,844,'Round',844,844,7.0,26.75,1.79000000000000003,'medal',844,844,844,NULL,NULL,'20 years of Constitution of the Federal Republic of Germany',NULL,1,'rgb(113.12030075187968,122.70676691729317,141.87969924812032)');
INSERT INTO NumistaType VALUES(846,'https://en.numista.com/catalogue/pieces846.html','1 Deutsche Mark','coin','allemagne',1950,2001,'Standard circulation coin',846,846,'Round',846,846,5.5,23.5,1.75,'medal',846,846,846,NULL,NULL,NULL,replace(replace('Different obverse and reverse designs (visible in eagle's head, legend lettering):


','\r',char(13)),'\n',char(10)),1,'rgb(134.64000000000001,124.43999999999998,120.36)');
INSERT INTO NumistaType VALUES(850,'https://en.numista.com/catalogue/pieces850.html','10 Pfennig','coin','allemagne',1950,2001,'Standard circulation coin',850,850,'Round',850,850,4.0,21.5,1.69999999999999995,'medal',850,850,850,NULL,NULL,NULL,replace(replace('1971J has different varieties-Small "J" and Large "J"
','\r',char(13)),'\n',char(10)),1,'rgb(158,129,72)');
INSERT INTO NumistaType VALUES(854,'https://en.numista.com/catalogue/pieces854.html','1 Pfennig','coin','allemagne',1950,2001,'Standard circulation coin',854,854,'Round',854,854,2.0,16.5,1.37999999999999989,'variable',854,854,854,NULL,NULL,NULL,replace(replace('1950DG















































','\n',char(10)),2,'rgb(172,149,68)');
INSERT INTO NumistaType VALUES(1236,'https://en.numista.com/catalogue/pieces1236.html','10 Centavos','coin','portugal',1942,1969,'Standard circulation coin',1236,1236,'Round',1236,1236,1.98999999999999999,17.5,1.1200000000000001,'coin',1236,1236,1236,NULL,'System 1927-1968',NULL,NULL,20,'rgb(150,88,68)');
INSERT INTO NumistaType VALUES(1237,'https://en.numista.com/catalogue/pieces1237.html','20 Centavos','coin','portugal',1942,1969,'Standard circulation coin',1237,1237,'Round',1237,1237,3.0,20.1999999999999992,1.16999999999999992,'coin',1237,1237,1237,NULL,'System 1927-1968',NULL,NULL,20,'rgb(191,151,118)');
INSERT INTO NumistaType VALUES(1238,'https://en.numista.com/catalogue/pieces1238.html','200 Escudos','coin','portugal',1991,2001,'Standard circulation coin',1238,1238,'Round',1238,1238,9.80000000000000071,28.0,2.20000000000000017,'coin',1238,1238,1238,NULL,'System 1981-2001',NULL,replace(replace('Different dies are known.
','\r',char(13)),'\n',char(10)),6,'rgb(151,112,72)');
INSERT INTO NumistaType VALUES(1241,'https://en.numista.com/catalogue/pieces1241.html','1 Escudo','coin','portugal',1986,2001,'Standard circulation coin',1241,1241,'Round',1241,1241,1.68999999999999994,16.0,1.19999999999999995,'coin',1241,1241,1241,NULL,'System 1981-2001',NULL,replace(replace('Different Obv. and Rev. dies are known.
','\r',char(13)),'\n',char(10)),44,'rgb(236,202,81)');
INSERT INTO NumistaType VALUES(1242,'https://en.numista.com/catalogue/pieces1242.html','100 Escudos','coin','portugal',1989,2001,'Standard circulation coin',1242,1242,'Round',1242,1242,8.30000000000000071,25.5,2.5,'coin',1242,1242,1242,NULL,'System 1981-2001',NULL,'
',13,'rgb(223,189,116)');
INSERT INTO NumistaType VALUES(1243,'https://en.numista.com/catalogue/pieces1243.html','20 Escudos','coin','portugal',1986,2001,'Standard circulation coin',1243,1243,'Round',1243,1243,6.90000000000000035,26.5,1.6399999999999999,'coin',1243,1243,1243,NULL,'System 1981-2001',NULL,replace(replace('Different Obv. and Rev. dies are known.







','\n',char(10)),6,'rgb(150,127,67)');
INSERT INTO NumistaType VALUES(1263,'https://en.numista.com/catalogue/pieces1263.html','5 Pesetas (Jacobeo)','coin','espagne',1993,1993,'Circulating commemorative coin',1263,1263,'Round',1263,1263,3.0,17.5,1.5,'coin',1263,1263,1263,NULL,'Jubilee Year of St. James',NULL,replace('Abnormal rim

','\n',char(10)),1,'rgb(186,160,73)');
INSERT INTO NumistaType VALUES(1264,'https://en.numista.com/catalogue/pieces1264.html','25 Pesetas (Melilla)','coin','espagne',1997,1997,'Circulating commemorative coin',1264,1264,'Round with a round hole',1264,1264,4.20000000000000017,19.5,1.60000000000000008,'coin',1264,1264,1264,NULL,'Autonomous communities of Spain',NULL,replace('Melilla is a Spanish autonomous city located on the northwest coast of Africa, sharing a border with Morocco. Melilla is one of two permanently inhabited Spanish cities in mainland Africa, the other being nearby Ceuta. It was part of the Province of Málaga until 14 March 1995, when the city's Statute of Autonomy was passed.
','\n',char(10)),3,'rgb(152,126,70)');
INSERT INTO NumistaType VALUES(1267,'https://en.numista.com/catalogue/pieces1267.html','1 Peseta - Juan Carlos I','coin','espagne',1989,2001,'Standard circulation coin',1267,1267,'Round',1267,1267,0.550000000000000044,14.0,1.19999999999999995,'coin',1267,1267,1267,NULL,NULL,NULL,replace('1997 coin, plus or X different. Can be a different variant.
','\n',char(10)),3,'rgb(128.36734693877548,128.36734693877548,126.63265306122452)');
INSERT INTO NumistaType VALUES(1324,'https://en.numista.com/catalogue/pieces1324.html','2 Pounds - Elizabeth II (4th portrait; Technology)','coin','royaume-uni',1998,2015,'Standard circulation coin',1324,1324,'Round',1324,1324,12.0,28.3999999999999985,2.5,'medal',1324,1324,1324,NULL,NULL,NULL,replace(replace('In 1999, this type was only struck for circulation since the Royal Mint Brilliant Uncirculated and Proof sets contained the Rugby World Cup commemoratives.
',1,'rgb(163.4154929577465,134.6830985915493,91.5845070422535)');
INSERT INTO NumistaType VALUES(1366,'https://en.numista.com/catalogue/pieces1366.html','10 Centavos','coin','portugal',1969,1979,'Standard circulation coin',1366,1366,'Round',1366,1366,0.5,15.0,1.36000000000000009,'coin',1366,1366,1366,NULL,'System 1969-1980',NULL,'The olive fruit/tree (Binomial name: Olea europaea)',30,'rgb(163.4154929577465,149.04929577464787,91.5845070422535)');
INSERT INTO NumistaType VALUES(1376,'https://en.numista.com/catalogue/pieces1376.html','20 Pence - Elizabeth II (3rd portrait)','coin','royaume-uni',1985,1997,'Standard circulation coin',1376,1376,'Equilateral curve heptagon (7-sided)',1376,1376,5.0,21.3999999999999985,1.69999999999999995,'medal',1376,1376,1376,NULL,NULL,NULL,replace(replace('The 1986 strike was not issued for circulation and only issued as part of the Annual Coin Sets in both Brilliant Uncirculated & Proof versions.

','\r',char(13)),'\n',char(10)),1,'rgb(180,140,52)');
INSERT INTO NumistaType VALUES(1389,'https://en.numista.com/catalogue/pieces1389.html','1 Pound - Elizabeth II (2nd portrait; Royal Arms)','coin','royaume-uni',1983,1983,'Standard circulation coin',1389,1389,'Round',1389,1389,9.5,22.5,3.14999999999999991,'medal',1389,1389,1389,NULL,'Heraldic Emblems series',NULL,replace(replace('The first round pound coin to replace the old pound note. Issued for circulation as well as was part of the Annual Coin Sets in both Brilliant Uncirculated (637,100 sales) & Proof versions, while also available in an individual BU pack (484, 900 sales)



','\r',char(13)),'\n',char(10)),2,'rgb(188,148,60)');
INSERT INTO NumistaType VALUES(1397,'https://en.numista.com/catalogue/pieces1397.html','1 Pound - Elizabeth II (3rd portrait; English Lions)','coin','royaume-uni',1997,1997,'Circulating commemorative coin',1397,1397,'Round',1397,1397,9.5,22.5,3.14999999999999991,'medal',1397,1397,1397,NULL,'Heraldic Emblems series','England',replace(replace('The fourth and final of the Norman Sillman heraldic emblems, issued as part of the Annual Coin Sets for 1997, in both Brilliant Uncirculated (109,557 sales) and Proof versions, as well as in an individual BU pack (56,996 sales).




','\r',char(13)),'\n',char(10)),1,'rgb(142.7064220183486,131.00917431192659,112.29357798165138)');
INSERT INTO NumistaType VALUES(1998,'https://en.numista.com/catalogue/pieces1998.html','5 Forint','coin','hongrie',1992,2011,'Standard circulation coin',1998,1998,'Round',1998,1998,4.20000000000000017,21.1999999999999992,1.60000000000000008,'medal',1998,1998,1998,NULL,NULL,NULL,NULL,1,'rgb(129,108,52)');
INSERT INTO NumistaType VALUES(2047,'https://en.numista.com/catalogue/pieces2047.html','200 Escudos (Expo ''98)','coin','portugal',1998,1998,'Circulating commemorative coin',2047,2047,'Round',2047,2047,9.80000000000000071,28.0,2.20000000000000017,'coin',2047,2047,2047,NULL,'System 1981-2001','Expo ''98',NULL,2,'rgb(110,94,44)');
INSERT INTO NumistaType VALUES(2168,'https://en.numista.com/catalogue/pieces2168.html','2 Euro (Don Quixote)','coin','espagne',2005,2005,'Circulating commemorative coin',2168,2168,'Round',2168,2168,8.5,25.75,2.20000000000000017,'medal',2168,2168,2168,NULL,NULL,'IV centenary of the first edition of "Don Quixote de la Mancha"','The Ingenious Gentleman Don Quixote of La Mancha (Modern Spanish: El ingenioso hidalgo Don Quijote de la Mancha), or just Don Quixote, is a Spanish novel by Miguel de Cervantes. It was published in two parts, in 1605 and 1615. A founding work of Western literature, it is often labeled "the first modern novel" and many authors consider it to be the best literary work ever written.',1,'rgb(145.2906976744186,130.4651162790698,109.70930232558139)');
INSERT INTO NumistaType VALUES(2169,'https://en.numista.com/catalogue/pieces2169.html','2 Euro (Bundesländer - "Schleswig-Holstein")','coin','allemagne',2006,2006,'Circulating commemorative coin',2169,2169,'Round',2169,2169,8.5,25.75,2.20000000000000017,'medal',2169,2169,2169,NULL,'German states','State of Schleswig-Holstein',NULL,1,'rgb(148,148,204)');
INSERT INTO NumistaType VALUES(2173,'https://en.numista.com/catalogue/pieces2173.html','1 Euro Cent','coin','chypre',2008,2022,'Standard circulation coin',2173,2173,'Round',2173,2173,2.29999999999999982,16.25,1.66999999999999992,'medal',2173,2173,2173,NULL,NULL,NULL,NULL,1,'rgb(182,127,94)');
INSERT INTO NumistaType VALUES(2175,'https://en.numista.com/catalogue/pieces2175.html','5 Euro Cent','coin','chypre',2008,2022,'Standard circulation coin',2175,2175,'Round',2175,2175,3.91999999999999992,21.25,1.66999999999999992,'medal',2175,2175,2175,NULL,NULL,NULL,replace(replace('On the edge 2018-2019 modification of Rev. happened.




','\r',char(13)),'\n',char(10)),4,'rgb(176,140,84)');
INSERT INTO NumistaType VALUES(2236,'https://en.numista.com/catalogue/pieces2236.html','10 Pence - Elizabeth II (4th portrait; Crowned Lion)','coin','royaume-uni',1998,2008,'Standard circulation coin',2236,2236,'Round',2236,2236,6.5,24.5,1.85000000000000008,'medal',2236,2236,2236,NULL,NULL,NULL,'The 1998 & 1999 issues were not struck for circulation and can only be found in the annual Brilliant Uncirculated and Proof sets.',4,'rgb(201,185,132)');
INSERT INTO NumistaType VALUES(2252,'https://en.numista.com/catalogue/pieces2252.html','25 Centavos (Deodoro da Fonseca)','coin','bresil',1998,2023,'Standard circulation coin',2252,2252,'Round',2252,2252,7.54999999999999982,25.0,2.25,'coin',2252,2252,2252,NULL,NULL,NULL,replace(replace('"T" partially and wholly inside the stripes










',1,'rgb(189,165,116)');
INSERT INTO NumistaType VALUES(2374,'https://en.numista.com/catalogue/pieces2374.html','100 Pesetas - Juan Carlos I','coin','espagne',1976,1976,'Standard circulation coin',2374,2374,'Round',2374,2374,17.0,34.0,2.10000000000000008,'coin',2374,2374,2374,NULL,NULL,NULL,NULL,1,'rgb(181.75531914893617,138.35106382978722,73.24468085106383)');
INSERT INTO NumistaType VALUES(2375,'https://en.numista.com/catalogue/pieces2375.html','10 Stotinki','coin','bulgarie',1999,2002,'Standard circulation coin',2375,2375,'Round',2375,2375,3.0,18.3999999999999985,1.5,'medal',2375,2375,2375,NULL,NULL,NULL,replace(replace('There are two different versions from 1999:
','\r',char(13)),'\n',char(10)),14,'rgb(157.25,144.5,97.74999999999999)');
INSERT INTO NumistaType VALUES(2376,'https://en.numista.com/catalogue/pieces2376.html','20 Stotinki','coin','bulgarie',1999,2002,'Standard circulation coin',2376,2376,'Round',2376,2376,4.0,20.5,1.68999999999999994,'medal',2376,2376,2376,NULL,NULL,NULL,replace(replace('Two varieties for 1999:

','\r',char(13)),'\n',char(10)),7,'rgb(157.98913043478262,149.67391304347825,97.01086956521736)');
INSERT INTO NumistaType VALUES(2383,'https://en.numista.com/catalogue/pieces2383.html','25 Escudos','coin','portugal',1977,1978,'Standard circulation coin',2383,2383,'Round',2383,2383,9.5,26.25,2.39999999999999991,'coin',2383,2383,2383,NULL,'System 1969-1980',NULL,NULL,3,'rgb(159.375,143.4375,95.625)');
INSERT INTO NumistaType VALUES(2384,'https://en.numista.com/catalogue/pieces2384.html','25 Escudos','coin','portugal',1980,1986,'Standard circulation coin',2384,2384,'Round',2384,2384,10.8000000000000007,28.5,2.25,'coin',2384,2384,2384,NULL,'System 1981-2001',NULL,'This coin is larger than the previous version (KM# 607, Schön# 63).',7,'rgb(137.30769230769232,123.04195804195807,117.69230769230766)');
INSERT INTO NumistaType VALUES(2432,'https://en.numista.com/catalogue/pieces2432.html','500 Pesos','coin','colombie',1993,2012,'Standard circulation coin',2432,2432,'Round',2432,2432,7.40000000000000035,23.8000000000000007,2.25,'coin',2432,2432,2432,NULL,NULL,NULL,replace(replace('Varieties exist both in terms of the ratio of design size and the inner circle and in terms of placement of writing along the rim (closer vs. farther from the coin edge):

@Duberney Osorio



','\r',char(13)),'\n',char(10)),1,'rgb(171.5178571428571,127.49999999999997,83.4821428571429)');
INSERT INTO NumistaType VALUES(2504,'https://en.numista.com/catalogue/pieces2504.html','5 Pesos (magnetic)','coin','republique_dominicaine',2002,2020,'Standard circulation coin',2504,2504,'Round',2504,2504,6.0,23.0,2.14999999999999991,'coin',2504,2504,2504,NULL,NULL,NULL,replace(replace('For the 2008 non-magnetic center , see https://en.numista.com/catalogue/pieces220030.html



','\n',char(10)),1,'rgb(155.21739130434784,129.34782608695653,99.78260869565216)');
INSERT INTO NumistaType VALUES(2763,'https://en.numista.com/catalogue/pieces2763.html','1 Pound - Elizabeth II (4th portrait; Menai Bridge)','coin','royaume-uni',2005,2005,'Circulating commemorative coin',2763,2763,'Round',2763,2763,9.5,22.5,3.14999999999999991,'medal',2763,2763,2763,NULL,'Regional Bridge series','Wales',replace(replace('The second of four Edwina Ellis bridge designs, representing Wales, the Menai Suspension Bridge (Welsh: Pont Grog y Borth) is a suspension bridge that carries road traffic between the island of Anglesey and the mainland of Wales. The bridge was opened on 30 January 1826 and on 28 February 2005 the bridge was promoted to UNESCO as a candidate World Heritage Site.

','\r',char(13)),'\n',char(10)),1,'rgb(193,164,82)');
INSERT INTO NumistaType VALUES(2842,'https://en.numista.com/catalogue/pieces2842.html','10 Pesos','coin','chili',1981,1990,'Standard circulation coin',2842,2842,'Round',2842,2842,3.5,21.0,1.30000000000000004,'coin',2842,2842,2842,NULL,NULL,NULL,replace(replace('1986 Varieties:
','\r',char(13)),'\n',char(10)),1,'rgb(209,156,81)');
INSERT INTO NumistaType VALUES(2903,'https://en.numista.com/catalogue/pieces2903.html','20 Cents (iNingizimu Afrika)','coin','afrique_du_sud',2007,2020,'Standard circulation coin',2903,2903,'Round',2903,2903,3.5,19.0,1.80000000000000004,'medal',2903,2903,2903,NULL,NULL,NULL,replace(replace('Legends in the 11 Official Languages of the Republic of South Africa:
','\n',char(10)),1,'rgb(174,145,82)');
INSERT INTO NumistaType VALUES(2994,'https://en.numista.com/catalogue/pieces2994.html','2 Euro (Bundesländer - "Hamburg")','coin','allemagne',2008,2008,'Circulating commemorative coin',2994,2994,'Round',2994,2994,8.5,25.75,2.20000000000000017,'medal',2994,2994,2994,NULL,'German states','Federal State of Hamburg',replace(replace('This coin was issued in 2008 by the Stuttgart Mint. It was supposed to have the "New" Europe Map on the reverse. The Stuttgart Mint (F) accidentally issued 600,000 of them with the "Old" Europe Map on the reverse. They realised their error and issued their remaining allocation, 9,000,000, with the correct reverse. The Mule coin has got a separate KM# (KM# A261) from the correctly issued coin (KM# 261)
','\r',char(13)),'\n',char(10)),1,'rgb(137,94,52)');
INSERT INTO NumistaType VALUES(3002,'https://en.numista.com/catalogue/pieces3002.html','10 Centavos','coin','equateur',2000,2000,'Standard circulation coin',3002,3002,'Round',3002,3002,2.29999999999999982,17.8999999999999985,1.30000000000000004,'coin',3002,3002,3002,NULL,NULL,NULL,'Due to rampant inflation in the 1980's and 1990's, the government of Ecuador abandoned the Sucre in 2000 and adopted the United States Dollar. These coins where introduced to supplement the circulation of the Dime.',1,'rgb(196,156,124)');
INSERT INTO NumistaType VALUES(3044,'https://en.numista.com/catalogue/pieces3044.html','1 Yeni Lira','coin','turquie',2005,2008,'Standard circulation coin',3044,3044,'Round',3044,3044,8.5,26.1499999999999985,1.89999999999999991,'medal',3044,3044,3044,NULL,NULL,NULL,replace(replace('The mint set "The first minted new uncirculated coins 2005."
','\r',char(13)),'\n',char(10)),3,'rgb(149,113,71)');
INSERT INTO NumistaType VALUES(3200,'https://en.numista.com/catalogue/pieces3200.html','50 Pesetas - Juan Carlos I','coin','espagne',1975,1980,'Standard circulation coin',3200,3200,'Round',3200,3200,12.5,30.0,2.0,'coin',3200,3200,3200,NULL,NULL,NULL,NULL,1,'rgb(155.3448275862069,134.82758620689657,99.65517241379312)');
INSERT INTO NumistaType VALUES(3223,'https://en.numista.com/catalogue/pieces3223.html','20 Centavos','coin','bolivie',1987,2008,'Standard circulation coin',3223,3223,'Round',3223,3223,3.66000000000000014,22.0,1.26,'coin',3223,3223,3223,NULL,NULL,NULL,replace(replace('Different denominations:

','\r',char(13)),'\n',char(10)),1,'rgb(123.33333333333331,131.66666666666669,123.33333333333331)');
INSERT INTO NumistaType VALUES(3224,'https://en.numista.com/catalogue/pieces3224.html','50 Centavos','coin','bolivie',1965,1980,'Standard circulation coin',3224,3224,'Round',3224,3224,4.0,24.0,2.0,'medal',3224,3224,3224,NULL,NULL,NULL,NULL,1,'rgb(145.45774647887322,127.5,109.54225352112678)');
INSERT INTO NumistaType VALUES(3225,'https://en.numista.com/catalogue/pieces3225.html','50 Centavos','coin','bolivie',1987,2008,'Standard circulation coin',3225,3225,'Round',3225,3225,3.79999999999999982,24.0,1.23999999999999999,'coin',3225,3225,3225,NULL,NULL,NULL,replace(replace('Different designs of the coat of arms:
','\r',char(13)),'\n',char(10)),1,'rgb(132.68292682926833,122.31707317073166,126.46341463414632)');
INSERT INTO NumistaType VALUES(3228,'https://en.numista.com/catalogue/pieces3228.html','1 Boliviano','coin','bolivie',1987,2008,'Standard circulation coin',3228,3228,'Round',3228,3228,5.0,27.0,1.26,'coin',3228,3228,3228,NULL,NULL,NULL,replace(replace('Different designs of the coat of arms:
','\r',char(13)),'\n',char(10)),1,'rgb(126.60839160839161,119.47552447552445,135.52447552447555)');
INSERT INTO NumistaType VALUES(3256,'https://en.numista.com/catalogue/pieces3256.html','25 Centavos','coin','argentine',1992,2010,'Standard circulation coin',3256,3256,'Round',3256,3256,5.40000000000000035,24.1999999999999992,1.73599999999999998,'coin',3256,3256,3256,NULL,NULL,NULL,replace(replace('CJ# 4.1.1 - 1992 - Chile Mint
','\r',char(13)),'\n',char(10)),1,'rgb(192,164,100)');
INSERT INTO NumistaType VALUES(3282,'https://en.numista.com/catalogue/pieces3282.html','20 Centavos','coin','portugal',1969,1974,'Standard circulation coin',3282,3282,'Round',3282,3282,1.80000000000000004,16.0,1.14999999999999991,'coin',3282,3282,3282,NULL,'System 1969-1980',NULL,'The olive fruit/tree (Binomial name: Olea europaea).',9,'rgb(151,108,68)');
INSERT INTO NumistaType VALUES(3372,'https://en.numista.com/catalogue/pieces3372.html','10 Euro Cent (1st type; 2nd map)','coin','espagne',2007,2009,'Standard circulation coin',3372,3372,'Round',3372,3372,4.09999999999999964,19.75,1.92999999999999993,'medal',3372,3372,3372,NULL,NULL,NULL,NULL,2,'rgb(178,138,73)');
INSERT INTO NumistaType VALUES(3510,'https://en.numista.com/catalogue/pieces3510.html','10 Euro Cent (2nd map)','coin','france',2007,2023,'Standard circulation coin',3510,3510,'Round',3510,3510,4.09999999999999964,19.75,1.92999999999999993,'medal',3510,3510,3510,NULL,NULL,NULL,replace(replace('Different Mint Master Marks





','\n',char(10)),1,'rgb(144.50000000000003,130.33333333333326,110.49999999999997)');
INSERT INTO NumistaType VALUES(4580,'https://en.numista.com/catalogue/pieces4580.html','50 Kopecks (magnetic; smooth edge)','coin','russie',2006,2015,'Standard circulation coin',4580,4580,'Round',4580,4580,2.75,19.5,1.5,'medal',4580,4580,4580,NULL,NULL,NULL,replace(replace('Two types of this coin exist.


','\r',char(13)),'\n',char(10)),5,'rgb(177,80,65)');
INSERT INTO NumistaType VALUES(4902,'https://en.numista.com/catalogue/pieces4902.html','50 Centavos','coin','bolivie',1939,1939,'Standard circulation coin',4902,4902,'Round',4902,4902,8.44999999999999929,29.0,1.87999999999999989,'medal',4902,4902,4902,NULL,NULL,NULL,NULL,1,'rgb(145.7142857142857,125.4761904761905,109.28571428571429)');
INSERT INTO NumistaType VALUES(5010,'https://en.numista.com/catalogue/pieces5010.html','5 Cents (non-magnetic)','coin','bahamas',1974,2006,'Standard circulation coin',5010,5010,'Round',5010,5010,3.93999999999999994,21.0,1.53000000000000002,'medal',5010,5010,5010,NULL,NULL,NULL,NULL,1,'rgb(184.53947368421052,167.76315789473682,70.46052631578947)');
INSERT INTO NumistaType VALUES(5012,'https://en.numista.com/catalogue/pieces5012.html','15 Cents','coin','bahamas',1974,2005,'Standard circulation coin',5012,5012,'Square with rounded corners',5012,5012,6.48000000000000042,25.0,2.06000000000000005,'medal',5012,5012,5012,NULL,NULL,NULL,NULL,1,'rgb(184,184,184)');
INSERT INTO NumistaType VALUES(5063,'https://en.numista.com/catalogue/pieces5063.html','2 Euro (10 Years of EMU)','coin','france',2009,2009,'Circulating commemorative coin',5063,5063,'Round',5063,5063,8.5,25.75,2.20000000000000017,'medal',5063,5063,5063,NULL,'10 Years of EMU','10th Anniversary of the European Monetary Union',replace(replace('
','\r',char(13)),'\n',char(10)),1,'rgb(52,76,124)');
INSERT INTO NumistaType VALUES(5086,'https://en.numista.com/catalogue/pieces5086.html','5 Euro Cent','coin','slovaquie',2009,2023,'Standard circulation coin',5086,5086,'Round',5086,5086,3.91999999999999992,21.25,1.66999999999999992,'medal',5086,5086,5086,NULL,NULL,NULL,replace(replace('New version of the common side seen from 2020 onwards. Main differences:
','\r',char(13)),'\n',char(10)),1,'rgb(169,104,73)');
INSERT INTO NumistaType VALUES(5109,'https://en.numista.com/catalogue/pieces5109.html','1 Lev','coin','bulgarie',2002,2002,'Standard circulation coin',5109,5109,'Round',5109,5109,7.0,24.5,1.89999999999999991,'medal',5109,5109,5109,NULL,NULL,NULL,NULL,7,'rgb(198,178,124)');
INSERT INTO NumistaType VALUES(5444,'https://en.numista.com/catalogue/pieces5444.html','10 Escudos','coin','portugal',1971,1974,'Standard circulation coin',5444,5444,'Round',5444,5444,10.0,28.0,2.18000000000000016,'coin',5444,5444,5444,NULL,'System 1969-1980',NULL,'There are 2 edge alignments in all dates',2,'rgb(180.96774193548387,134.35483870967735,74.03225806451611)');
INSERT INTO NumistaType VALUES(5492,'https://en.numista.com/catalogue/pieces5492.html','25 Escudos (Accession to the EEC)','coin','portugal',1986,1986,'Circulating commemorative coin',5492,5492,'Round',5492,5492,11.0,28.5,2.25,'coin',5492,5492,5492,NULL,'System 1981-2001','Accession of Portugal to the European Economic Community',NULL,2,'rgb(139.30555555555554,139.30555555555554,115.69444444444444)');
INSERT INTO NumistaType VALUES(5624,'https://en.numista.com/catalogue/pieces5624.html','200 Pesetas (Jacinto Benavente)','coin','espagne',1997,1997,'Circulating commemorative coin',5624,5624,'Round',5624,5624,10.5,25.5,2.29999999999999982,'coin',5624,5624,5624,NULL,NULL,'75th anniversary of Nobel Prize for Jacinto Benavente',NULL,1,'rgb(149.84536082474224,134.07216494845358,105.15463917525776)');
INSERT INTO NumistaType VALUES(5628,'https://en.numista.com/catalogue/pieces5628.html','20 Pence - Elizabeth II (4th portrait; Royal Shield)','coin','royaume-uni',2008,2015,'Standard circulation coin',5628,5628,'Equilateral curve heptagon (7-sided)',5628,5628,5.0,21.3999999999999985,1.69999999999999995,'medal',5628,5628,5628,NULL,NULL,NULL,replace(replace('Introduced in 2008 when the small coinage designs were changed from the Emblems of Britain to the Royal Shield of Arms. The 2008 coin was issued part way through the year and so was not part of the annual coin sets, however it was issued in both a Brilliant Uncirculated set (Issue Limit: 100,000) and a Proof set (Issue Limit: 20,000) it was also issued in silver proof, silver piedfort, gold proof and platinum proof.



','\r',char(13)),'\n',char(10)),4,'rgb(145.45774647887322,140.0704225352113,109.54225352112678)');
INSERT INTO NumistaType VALUES(6163,'https://en.numista.com/catalogue/pieces6163.html','1 Lira','coin','turquie',2009,2022,'Standard circulation coin',6163,6163,'Round',6163,6163,8.19999999999999929,26.1499999999999985,2.0,'medal',6163,6163,6163,NULL,NULL,NULL,replace(replace('Out of real varieties, the types with the wide and narrow bottom of numeral "1" on the reverse in 2009 are the most popular.

','\r',char(13)),'\n',char(10)),1,'rgb(122.48031496062993,132.51968503937007,130.51181102362204)');
INSERT INTO NumistaType VALUES(6293,'https://en.numista.com/catalogue/pieces6293.html','2 Euro - Albert II (2nd map, 2nd type, 2nd portrait)','coin','belgique',2008,2008,'Standard circulation coin',6293,6293,'Round',6293,6293,8.5,25.75,2.20000000000000017,'medal',6293,6293,6293,NULL,NULL,NULL,replace(replace('Privy mark:
','\r',char(13)),'\n',char(10)),1,'rgb(170,162,79)');
INSERT INTO NumistaType VALUES(6329,'https://en.numista.com/catalogue/pieces6329.html','10 Euro Cent (2nd map)','coin','irlande',2007,2023,'Standard circulation coin',6329,6329,'Round',6329,6329,4.09999999999999964,19.75,1.92999999999999993,'medal',6329,6329,6329,NULL,NULL,NULL,NULL,1,'rgb(207,162,66)');
INSERT INTO NumistaType VALUES(6333,'https://en.numista.com/catalogue/pieces6333.html','1 Euro (2nd map)','coin','irlande',2007,2023,'Standard circulation coin',6333,6333,'Round',6333,6333,7.5,23.25,2.33000000000000007,'medal',6333,6333,6333,NULL,NULL,NULL,NULL,1,'rgb(148,116,68)');
INSERT INTO NumistaType VALUES(6334,'https://en.numista.com/catalogue/pieces6334.html','2 Euro (2nd map)','coin','irlande',2007,2023,'Standard circulation coin',6334,6334,'Round',6334,6334,8.5,25.75,2.20000000000000017,'medal',6334,6334,6334,NULL,NULL,NULL,'There are 2 different types of edges A and B depending on the specific star, read more at: http://www.amisdeleuro.org/fr/121',1,'rgb(124,98,43)');
INSERT INTO NumistaType VALUES(6350,'https://en.numista.com/catalogue/pieces6350.html','20 Euro Cent (2nd map)','coin','grece',2007,2023,'Standard circulation coin',6350,6350,'Spanish flower',6350,6350,5.74000000000000021,22.25,2.14000000000000012,'medal',6350,6350,6350,NULL,NULL,NULL,replace(replace('The coin is issued in bankrolls and the above mint sets:
','\r',char(13)),'\n',char(10)),1,'rgb(176,154,84)');
INSERT INTO NumistaType VALUES(6361,'https://en.numista.com/catalogue/pieces6361.html','20 Euro Cent (1st type; 2nd map)','coin','espagne',2007,2009,'Standard circulation coin',6361,6361,'Spanish flower',6361,6361,5.74000000000000021,22.25,2.14000000000000012,'medal',6361,6361,6361,NULL,NULL,NULL,NULL,2,'rgb(196,140,60)');
INSERT INTO NumistaType VALUES(6373,'https://en.numista.com/catalogue/pieces6373.html','20 Euro Cent (2nd map)','coin','france',2007,2023,'Standard circulation coin',6373,6373,'Spanish flower',6373,6373,5.74000000000000021,22.25,2.14000000000000012,'medal',6373,6373,6373,NULL,NULL,NULL,replace(replace('Different Mint Master Marks
','\r',char(13)),'\n',char(10)),1,'rgb(223.125,159.375,31.875)');
INSERT INTO NumistaType VALUES(6418,'https://en.numista.com/catalogue/pieces6418.html','20 Euro Cent - Henri I (2nd map)','coin','luxembourg',2007,2023,'Standard circulation coin',6418,6418,'Spanish flower',6418,6418,5.74000000000000021,22.25,2.14000000000000012,'medal',6418,6418,6418,NULL,NULL,NULL,replace(replace('This piece was engraved by several countries and by several engravers according to the following periods: 









','\r',char(13)),'\n',char(10)),1,'rgb(149.04929577464787,132.88732394366193,105.95070422535211)');
INSERT INTO NumistaType VALUES(7398,'https://en.numista.com/catalogue/pieces7398.html','2 Pence - Elizabeth II (4th portrait; magnetic)','coin','royaume-uni',1998,2008,'Standard circulation coin',7398,7398,'Round',7398,7398,7.1200000000000001,25.8999999999999985,2.04999999999999982,'medal',7398,7398,7398,NULL,NULL,NULL,replace(replace('In 1992 the composition for the two pence circulation strikes was changed from bronze to copper plated steel to reduce production costs.



','\r',char(13)),'\n',char(10)),2,'rgb(164.23728813559325,138.30508474576268,90.76271186440677)');
INSERT INTO NumistaType VALUES(7905,'https://en.numista.com/catalogue/pieces7905.html','1 Euro (2nd map)','coin','autriche',2008,2023,'Standard circulation coin',7905,7905,'Round',7905,7905,7.5,23.25,2.33000000000000007,'medal',7905,7905,7905,NULL,NULL,NULL,NULL,1,'rgb(202,182,130)');
INSERT INTO NumistaType VALUES(8862,'https://en.numista.com/catalogue/pieces8862.html','1 Rupee - Birendra Bir Bikram','coin','nepal',1988,1992,'Standard circulation coin',8862,8862,'Round',8862,8862,6.75,27.5,1.75,'medal',8862,8862,8862,NULL,NULL,NULL,NULL,2,'rgb(204,196,146)');
INSERT INTO NumistaType VALUES(8896,'https://en.numista.com/catalogue/pieces8896.html','1 Real','coin','bresil',2002,2023,'Standard circulation coin',8896,8896,'Round',8896,8896,7.0,27.0,1.94999999999999995,'coin',8896,8896,8896,NULL,NULL,NULL,replace(replace('



','\r',char(13)),'\n',char(10)),1,'rgb(148,116,60)');
INSERT INTO NumistaType VALUES(9826,'https://en.numista.com/catalogue/pieces9826.html','1 Escudo (Roller Hockey Championship)','coin','portugal',1982,1982,'Circulating commemorative coin',9826,9826,'Round',9826,9826,3.0,18.1999999999999992,1.69999999999999995,'coin',9826,9826,9826,NULL,'System 1981-2001','25th Roller Hockey World Championship',NULL,3,'rgb(152,141,60)');
INSERT INTO NumistaType VALUES(9828,'https://en.numista.com/catalogue/pieces9828.html','2.50 Escudos (Roller Hockey Championship)','coin','portugal',1982,1982,'Circulating commemorative coin',9828,9828,'Round',9828,9828,3.5,20.0,1.60000000000000008,'coin',9828,9828,9828,NULL,'System 1981-2001','25th Roller hockey world championships',NULL,1,'rgb(118.46456692913385,136.53543307086616,132.51968503937005)');
INSERT INTO NumistaType VALUES(9831,'https://en.numista.com/catalogue/pieces9831.html','25 Escudos (FAO)','coin','portugal',1983,1983,'Circulating commemorative coin',9831,9831,'Round',9831,9831,11.0,28.5,2.25,'coin',9831,9831,9831,NULL,'System 1981-2001','World Food Day 1983',replace(replace('Under the FAO coins Programme; Portugal in 1983 issued
','\r',char(13)),'\n',char(10)),1,'rgb(132,116,60)');
INSERT INTO NumistaType VALUES(9895,'https://en.numista.com/catalogue/pieces9895.html','10 Euro Cent (2nd map)','coin','portugal',2008,2023,'Standard circulation coin',9895,9895,'Round',9895,9895,4.09999999999999964,19.75,1.92999999999999993,'medal',9895,9895,9895,NULL,NULL,NULL,'(fr) 


',5,'rgb(187.5,172.5,67.49999999999999)');
INSERT INTO NumistaType VALUES(9896,'https://en.numista.com/catalogue/pieces9896.html','20 Euro Cent (2nd map)','coin','portugal',2008,2023,'Standard circulation coin',9896,9896,'Spanish flower',9896,9896,5.74000000000000021,22.25,2.14000000000000012,'medal',9896,9896,9896,NULL,NULL,NULL,'(fr) 


',4,'rgb(183.28125,151.40625,71.71875)');
INSERT INTO NumistaType VALUES(10004,'https://en.numista.com/catalogue/pieces10004.html','1 Satang - Rama IX','coin','thailande',1987,2007,'Non-circulating coin',10004,10004,'Round',10004,10004,0.5,15.0,NULL,'coin',10004,10004,NULL,NULL,NULL,NULL,replace('Made-to-order coins exist:
','\r',char(13)),'\n',char(10)),4,'rgb(132.0863309352518,133.9208633093525,121.07913669064749)');
INSERT INTO NumistaType VALUES(10288,'https://en.numista.com/catalogue/pieces10288.html','200 Escudos (Sydney Olympic Games)','coin','portugal',2000,2000,'Circulating commemorative coin',10288,10288,'Round',10288,10288,9.80000000000000071,28.0,2.20000000000000017,'coin',10288,10288,10288,NULL,'System 1981-2001','Olympic Games 2000 in Sydney',NULL,1,'rgb(203,174,109)');
INSERT INTO NumistaType VALUES(10854,'https://en.numista.com/catalogue/pieces10854.html','5 Euro Cent (2nd type)','coin','espagne',2010,2023,'Standard circulation coin',10854,10854,'Round',10854,10854,3.91999999999999992,21.25,1.66999999999999992,'medal',10854,10854,10854,NULL,NULL,NULL,replace(replace('(fr) Variante trouvée pour 2018 concernant la face commune avec globe et le chiffre déplacés vers l'intérieur. Les traits sont aussi de plus grande taille à l'extérieur et de taille inférieure à l'intérieur.
','\r',char(13)),'\n',char(10)),7,'rgb(204,116,52)');
INSERT INTO NumistaType VALUES(10856,'https://en.numista.com/catalogue/pieces10856.html','1 Euro Cent (2nd type)','coin','espagne',2010,2023,'Standard circulation coin',10856,10856,'Round',10856,10856,2.29999999999999982,16.25,1.66999999999999992,'medal',10856,10856,10856,NULL,NULL,NULL,replace(replace('New version of the common side seen from 2018 onwards. Main differences:
','\r',char(13)),'\n',char(10)),19,'rgb(204,116,52)');
INSERT INTO NumistaType VALUES(10857,'https://en.numista.com/catalogue/pieces10857.html','2 Euro Cent (2nd type)','coin','espagne',2010,2023,'Standard circulation coin',10857,10857,'Round',10857,10857,3.06000000000000005,18.75,1.66999999999999992,'medal',10857,10857,10857,NULL,NULL,NULL,'
',5,'rgb(204,116,52)');
INSERT INTO NumistaType VALUES(10860,'https://en.numista.com/catalogue/pieces10860.html','50 Euro Cent (2nd type; 2nd map)','coin','espagne',2010,2023,'Standard circulation coin',10860,10860,'Round',10860,10860,7.79999999999999982,24.25,2.37999999999999989,'medal',10860,10860,10860,NULL,NULL,NULL,NULL,1,'rgb(160,136,60)');
INSERT INTO NumistaType VALUES(10862,'https://en.numista.com/catalogue/pieces10862.html','2 Euro - Juan Carlos I (2nd type - 2nd map)','coin','espagne',2010,2014,'Standard circulation coin',10862,10862,'Round',10862,10862,8.5,25.75,2.20000000000000017,'medal',10862,10862,10862,NULL,NULL,NULL,NULL,1,'rgb(204,188,140)');
INSERT INTO NumistaType VALUES(11526,'https://en.numista.com/catalogue/pieces11526.html','2 Euro (Speech of June 18th 1940)','coin','france',2010,2010,'Circulating commemorative coin',11526,11526,'Round',11526,11526,8.5,25.75,2.20000000000000017,'medal',11526,11526,11526,NULL,NULL,'DeGaulle''s Radio Speech on June 18th, 1940 - 70th Anniversary of the Appeal of June 18','
','\r',char(13)),'\n',char(10)),25,'rgb(172.5563909774436,161.05263157894737,82.4436090225564)');
INSERT INTO NumistaType VALUES(13034,'https://en.numista.com/catalogue/pieces13034.html','200 Escudos (Death on the Sea)','coin','portugal',1999,1999,'Circulating commemorative coin',13034,13034,'Round',13034,13034,21.1000000000000014,36.0,NULL,'coin',13034,13034,13034,NULL,'X Portuguese Discoveries Series','Death on the Sea',NULL,1,'rgb(109.00763358778627,124.58015267175574,145.99236641221373)');
INSERT INTO NumistaType VALUES(13038,'https://en.numista.com/catalogue/pieces13038.html','200 Escudos (Duarte Pacheco Pereira)','coin','portugal',1999,1999,'Circulating commemorative coin',13038,13038,'Round',13038,13038,21.1000000000000014,36.0,NULL,'coin',13038,13038,13038,NULL,'X Portuguese Discoveries Series','Duarte Pacheco Pereira',NULL,1,'rgb(147.7380952380952,141.66666666666669,107.26190476190477)');
INSERT INTO NumistaType VALUES(13820,'https://en.numista.com/catalogue/pieces13820.html','2 Bolivianos (large type)','coin','bolivie',1995,2008,'Standard circulation coin',13820,13820,'Hendecagonal (11-sided)',13820,13820,6.40000000000000035,29.0,1.39999999999999991,'coin',13820,13820,13820,NULL,NULL,NULL,replace(replace('Different designs of the coat of arms:
','\r',char(13)),'\n',char(10)),1,'rgb(104.08163265306119,130.10204081632654,150.9183673469388)');
INSERT INTO NumistaType VALUES(15296,'https://en.numista.com/catalogue/pieces15296.html','25 Cents (non-magnetic)','coin','bahamas',1991,2005,'Standard circulation coin',15296,15296,'Round',15296,15296,5.75,24.2600000000000015,1.64999999999999991,'medal',15296,15296,15296,NULL,NULL,NULL,NULL,1,'rgb(200.35714285714297,145.7142857142854,54.64285714285703)');
INSERT INTO NumistaType VALUES(15575,'https://en.numista.com/catalogue/pieces15575.html','50 Paisa - Gyanendra Bir Bikram','coin','nepal',2003,2004,'Standard circulation coin',15575,15575,'Round',15575,15575,1.39999999999999991,22.5,1.55000000000000004,'medal',15575,15575,15575,NULL,NULL,NULL,NULL,1,'rgb(134.58333333333331,134.58333333333331,120.41666666666669)');
INSERT INTO NumistaType VALUES(16586,'https://en.numista.com/catalogue/pieces16586.html','2 Euro Cent','coin','estonie',2011,2022,'Standard circulation coin',16586,16586,'Round',16586,16586,3.06000000000000005,18.75,1.66999999999999992,'medal',16586,16586,16586,NULL,NULL,NULL,replace(replace('2018 large stars:
','\r',char(13)),'\n',char(10)),1,'rgb(179.364406779661,127.5,75.63559322033898)');
INSERT INTO NumistaType VALUES(16588,'https://en.numista.com/catalogue/pieces16588.html','5 Euro Cent','coin','estonie',2011,2023,'Standard circulation coin',16588,16588,'Round',16588,16588,3.91999999999999992,21.25,1.66999999999999992,'medal',16588,16588,16588,NULL,NULL,NULL,replace(replace('Coins from 2018 have large stars:
','\r',char(13)),'\n',char(10)),1,'rgb(204,177,148)');
INSERT INTO NumistaType VALUES(18054,'https://en.numista.com/catalogue/pieces18054.html','2 Bolivianos','coin','bolivie',2010,2017,'Standard circulation coin',18054,18054,'Hendecagonal (11-sided)',18054,18054,6.40000000000000035,29.0,1.39999999999999991,'coin',18054,18054,18054,NULL,NULL,NULL,replace(replace('Design varieties exist:
','\r',char(13)),'\n',char(10)),1,'rgb(133.3846153846154,121.61538461538461,121.61538461538461)');
INSERT INTO NumistaType VALUES(18666,'https://en.numista.com/catalogue/pieces18666.html','2 Euro (Bundesländer - "Nordrhein-Westfalen")','coin','allemagne',2011,2011,'Circulating commemorative coin',18666,18666,'Round',18666,18666,8.5,25.75,2.20000000000000017,'medal',18666,18666,18666,NULL,'German states','State of Nordrhein-Westfalen',replace(replace('Five mints currently share coin production. Each puts its own workshop letter on the coins it mints:

Lentävä maailma (Flying world) set.
Ruimte-avontuur (Space adventure) set.
de verovering van de hemel (the conquest of heaven) set.','\r',char(13)),'\n',char(10)),1,'rgb(142,108,14)');
INSERT INTO NumistaType VALUES(24276,'https://en.numista.com/catalogue/exonumia24276.html','Shell Token - Man in Flight (#15 - Wernher Von Braun, Jupiter C, 1958)','exonumia','france',1969,1969,'Advertising token',24276,24276,'Round',24276,24276,5.0,26.0,1.5,'medal',24276,24276,24276,NULL,NULL,'Man in Flight',replace(replace('Man in Flight - L'épopée de l'espace (the epic of space) set.

Lentävä maailma (Flying world) set.
Ruimte-avontuur (Space adventure) set.
de verovering van de hemel (the conquest of heaven) set.','\r',char(13)),'\n',char(10)),1,'rgb(166,141,74)');
INSERT INTO NumistaType VALUES(25746,'https://en.numista.com/catalogue/pieces25746.html','10 Pence - Elizabeth II (4th portrait; Royal Shield, magnetic)','coin','royaume-uni',2011,2015,'Standard circulation coin',25746,25746,'Round',25746,25746,6.5,24.5,1.85000000000000008,'medal',25746,25746,25746,NULL,NULL,NULL,replace(replace('Introduced in 2008 when the small coinage designs were changed from the Emblems of Britain to the Royal Shield of Arms. 


','\r',char(13)),'\n',char(10)),2,'rgb(188,153,112)');
INSERT INTO NumistaType VALUES(28191,'https://en.numista.com/catalogue/pieces28191.html','2 Euro (10 Years of Euro Cash)','coin','autriche',2012,2012,'Circulating commemorative coin',28191,28191,'Round',28191,28191,8.5,25.75,2.20000000000000017,'medal',28191,28191,28191,NULL,NULL,'10 Years of Euro Cash',NULL,1,'rgb(169.99999999999997,136.32075471698116,85.00000000000004)');
INSERT INTO NumistaType VALUES(28330,'https://en.numista.com/catalogue/pieces28330.html','2 Euro (10 Years of Euro Cash)','coin','france',2012,2012,'Circulating commemorative coin',28330,28330,'Round',28330,28330,8.5,25.75,2.20000000000000017,'medal',28330,28330,28330,NULL,NULL,'10 Years of Euro Cash',replace(replace('There are 2 different types of edges A and B depending on the specific star, for more information read:
','\r',char(13)),'\n',char(10)),1,'rgb(142,105,68)');
INSERT INTO NumistaType VALUES(28608,'https://en.numista.com/catalogue/pieces28608.html','2 Stotinki (magnetic)','coin','bulgarie',2000,2002,'Standard circulation coin',28608,28608,'Round',28608,28608,2.5,18.0,1.39999999999999991,'medal',28608,28608,28608,NULL,NULL,NULL,replace(replace('Two varieties: 
','\r',char(13)),'\n',char(10)),12,'rgb(228,180,82)');
INSERT INTO NumistaType VALUES(28610,'https://en.numista.com/catalogue/pieces28610.html','1 Stotinka (magnetic)','coin','bulgarie',2000,2002,'Standard circulation coin',28610,28610,'Round',28610,28610,1.80000000000000004,16.0,1.32000000000000006,'medal',28610,28610,28610,NULL,NULL,NULL,replace('Two varieties: 
','\n',char(10)),11,'rgb(242,199,85)');
INSERT INTO NumistaType VALUES(28611,'https://en.numista.com/catalogue/pieces28611.html','5 Stotinki (magnetic)','coin','bulgarie',2000,2002,'Standard circulation coin',28611,28611,'Round',28611,28611,3.5,20.0,1.69999999999999995,'medal',28611,28611,28611,NULL,NULL,NULL,replace(replace('Two different varieties:
','\r',char(13)),'\n',char(10)),9,'rgb(212,152,44)');
INSERT INTO NumistaType VALUES(32604,'https://en.numista.com/catalogue/pieces32604.html','1 Dollar - Elizabeth II (4th portrait, new alloy)','coin','canada',2012,2022,'Standard circulation coin',32604,32604,'Hendecagonal (11-sided)',32604,32604,6.26999999999999957,26.5,1.94999999999999995,'medal',32604,32604,32604,NULL,NULL,NULL,replace(replace('

','\r',char(13)),'\n',char(10)),1,'rgb(144.04580152671755,124.58015267175574,110.95419847328246)');
INSERT INTO NumistaType VALUES(42976,'https://en.numista.com/catalogue/pieces42976.html','2 Euro (Escorial)','coin','espagne',2013,2013,'Circulating commemorative coin',42976,42976,'Round',42976,42976,8.5,25.75,2.20000000000000017,'medal',42976,42976,42976,NULL,'UNESCO World Heritage','Monastery and Site of the Escorial','El Escorial is one of several Spanish royal sites due to its history as a residence of the royal family. The palace was designed by King Philip II and architect Juan Bautista de Toledo to serve as a monument to Spain's central role in the Christian world.',1,'rgb(124,100,44)');
INSERT INTO NumistaType VALUES(49339,'https://en.numista.com/catalogue/pieces49339.html','2 Euro - Philippe (Royal Meteorological Institute)','coin','belgique',2013,2013,'Circulating commemorative coin',49339,49339,'Round',49339,49339,8.5,25.75,2.20000000000000017,'medal',49339,49339,49339,NULL,NULL,'100th Anniversary of the Royal Meteorological Institute',replace(replace('coincard
','\r',char(13)),'\n',char(10)),1,'rgb(141.02272727272725,141.02272727272725,113.97727272727273)');
INSERT INTO NumistaType VALUES(54956,'https://en.numista.com/catalogue/pieces54956.html','10 Euro Cent - Willem-Alexander (2nd map)','coin','pays-bas',2014,2023,'Standard circulation coin',54956,54956,'Round',54956,54956,4.09999999999999964,19.75,1.92999999999999993,'medal',54956,54956,54956,NULL,NULL,NULL,replace(replace('This piece was engraved by the monetary workshop of Utrecht by several engravers according to the following periods :
','\r',char(13)),'\n',char(10)),1,'rgb(199,182,121)');
INSERT INTO NumistaType VALUES(67631,'https://en.numista.com/catalogue/pieces67631.html','1 Euro','coin','lituanie',2015,2023,'Standard circulation coin',67631,67631,'Round',67631,67631,7.5,23.25,2.33000000000000007,'medal',67631,67631,67631,NULL,NULL,NULL,NULL,1,'rgb(204,172,92)');
INSERT INTO NumistaType VALUES(68395,'https://en.numista.com/catalogue/pieces68395.html','2 Euro','coin','andorre',2014,2023,'Standard circulation coin',68395,68395,'Round',68395,68395,8.5,25.75,2.20000000000000017,'medal',68395,68395,68395,NULL,NULL,NULL,replace('Mints: In even years, the coins were minted in Madrid (Spain), in odd years in Pessac (France)

','\r',char(13)),'\n',char(10)),1,'rgb(174.47368421052633,134.21052631578948,80.52631578947368)');
INSERT INTO NumistaType VALUES(84061,'https://en.numista.com/catalogue/pieces84061.html','2 Euro (Portuguese Olympic Team for Rio 2016)','coin','portugal',2016,2016,'Circulating commemorative coin',84061,84061,'Round',84061,84061,8.5,25.75,2.20000000000000017,'medal',84061,84061,84061,NULL,NULL,'Portuguese Olympic Team for Rio 2016',replace(replace('Double die obverse varieties are known to exist.
','\r',char(13)),'\n',char(10)),1,'rgb(177.55555555555554,124.66666666666667,77.44444444444444)');
INSERT INTO NumistaType VALUES(87329,'https://en.numista.com/catalogue/pieces87329.html','2 Euro (25th of April bridge)','coin','portugal',2016,2016,'Circulating commemorative coin',87329,87329,'Round',87329,87329,8.5,25.75,2.20000000000000017,'medal',87329,87329,87329,NULL,NULL,'The 50th Anniversary of the 25th of April bridge',replace(replace('The coin dedicated to a suspension bridge connecting the city of Lisbon (Portugal), to the municipality of Almada on the left (south) bank of the Tagus river. It has a total length of 2,277 metres (7,470 ft), making it the 46th longest suspension bridge in the world.
',2,'rgb(220,164,60)');
INSERT INTO NumistaType VALUES(91431,'https://en.numista.com/catalogue/pieces91431.html','2 Euro (François Mitterrand)','coin','france',2016,2016,'Circulating commemorative coin',91431,91431,'Round',91431,91431,8.5,25.75,2.20000000000000017,'medal',91431,91431,91431,NULL,NULL,'100th Anniversary of the birth of François Mitterrand','There are 2 different types of edges A and B depending on the specific star, more about: http://www.amisdeleuro.org/fr/121',1,'rgb(132,108,60)');
INSERT INTO NumistaType VALUES(100658,'https://en.numista.com/catalogue/pieces100658.html','1 Pound - Elizabeth II (5th portrait; Nations of the Crown)','coin','royaume-uni',2016,2022,'Standard circulation coin',100658,100658,'Dodecagonal (12-sided)',100658,100658,8.75,23.3999999999999985,2.79999999999999982,'medal',100658,100658,100658,NULL,NULL,NULL,replace(replace('Launched for circulation by the Royal Mint on March 28th 2017, as 'The world's most secure coin'. 500 million circulation issues were struck with a 2016 date but were not released until 2017. There are a handful of known mules that show the obverse dated 2016 but have 2017 in the micro-lettering around the rim.







','\r',char(13)),'\n',char(10)),2,'rgb(204,188,132)');
INSERT INTO NumistaType VALUES(102445,'https://en.numista.com/catalogue/pieces102445.html','2 Euro (Bundesländer - "Rheinland-Pfalz")','coin','allemagne',2017,2017,'Circulating commemorative coin',102445,102445,'Round',102445,102445,8.5,25.75,2.20000000000000017,'medal',102445,102445,102445,NULL,'German states','State of Rhineland-Palatinate',replace(replace('Five mints currently share coin production. Each puts its own workshop letter on the coins it mints:







','\r',char(13)),'\n',char(10)),1,'rgb(140.820895522388,142.72388059701495,112.27611940298506)');
INSERT INTO NumistaType VALUES(157845,'https://en.numista.com/catalogue/pieces157845.html','2 Euro (600th Anniversary of the discovery of the Madeira archipelago)','coin','portugal',2019,2019,'Circulating commemorative coin',157845,157845,'Round',157845,157845,8.5,25.75,2.20000000000000017,'medal',157845,157845,157845,NULL,NULL,'600th Anniversary of the discovery of the Madeira archipelago',NULL,1,'rgb(185.45454545454547,135.2272727272727,69.54545454545455)');
INSERT INTO NumistaType VALUES(192990,'https://en.numista.com/catalogue/pieces192990.html','2 Euro (General Charles de Gaulle)','coin','france',2020,2020,'Circulating commemorative coin',192990,192990,'Round',192990,192990,8.5,25.75,2.20000000000000017,'medal',192990,192990,192990,NULL,NULL,'General Charles de Gaulle','The number of circulation coins being struck (18,061,940 coins) was not chosen by chance. Split by groups of 2, then 2, then 4 digits, this number makes 18/06/1940 which is the date of the famous call to arms of the 18th June broadcast from London.',1,'rgb(196,172,84)');
INSERT INTO NumistaType VALUES(201624,'https://en.numista.com/catalogue/note201624.html','5 Pounds - Elizabeth II (Sir Winston Churchill; polymer)','banknote','england',2015,2015,'Standard banknote',201624,201624,'Rectangular',201624,NULL,NULL,NULL,NULL,NULL,201624,201624,NULL,NULL,NULL,NULL,replace(replace('The note is copyrighted with the date 2015 but was introduced in 2016.







','\r',char(13)),'\n',char(10)),1,'rgb(117,85,44)');
INSERT INTO NumistaType VALUES(302331,'https://en.numista.com/catalogue/note302331.html','5 Leva','banknote','bulgarie',2009,2009,'Standard banknote',302331,302331,'Rectangular',302331,NULL,NULL,NULL,NULL,NULL,302331,302331,NULL,302331,NULL,NULL,replace(replace('For similar notes dated 1999 with a green and red stripe next to the holographic strip, see P#116a.





','\r',char(13)),'\n',char(10)),1,'rgb(172,124,76)');
INSERT INTO NumistaType VALUES(338339,'https://en.numista.com/catalogue/pieces338339.html','2 Euro (2nd map)','coin','croatie',2023,2023,'Standard circulation coin',338339,338339,'Round',338339,338339,8.5,25.75,2.20000000000000017,'medal',338339,338339,338339,NULL,NULL,NULL,replace(replace('BUNC Sets Released © zdravko



','\r',char(13)),'\n',char(10)),1,'rgb(240.00000000000006,154.99999999999991,14.999999999999947)');
INSERT INTO NumistaType VALUES(368994,'https://en.numista.com/catalogue/pieces368994.html','2 Euro (World Youth Day)','coin','portugal',2023,2023,'Circulating commemorative coin',368994,368994,'Round',368994,368994,8.5,25.75,2.20000000000000017,'medal',368994,368994,368994,NULL,NULL,'World Youth Day - Lisbon 2023',NULL,1,'rgb(145.18248175182484,126.56934306569339,109.81751824817516)');
INSERT INTO NumistaType VALUES(369820,'https://en.numista.com/catalogue/pieces369820.html','2 Euro (Rugby World Cup 2023)','coin','france',2023,2023,'Circulating commemorative coin',369820,369820,'Round',369820,369820,8.5,25.75,2.20000000000000017,'medal',369820,369820,369820,NULL,'Rugby World Cup, France 2023','Rugby World Cup 2023',NULL,1,'rgb(174.9418604651163,124.53488372093017,80.05813953488372)');
INSERT INTO NumistaType VALUES(377368,'https://en.numista.com/catalogue/pieces377368.html','25 Cents - Elizabeth II (4th portrait)','coin','canada',2003,2006,'Standard circulation coin',377368,377368,'Round',377368,377368,4.42999999999999971,23.879999999999999,1.58000000000000007,'medal',377368,377368,377368,NULL,NULL,NULL,'NOTE: 2006 last "P" (for plated) composition mark used on circulation coins and the RCM logo introduced as well.',1,'rgb(178.94736842105266,118.55263157894734,76.05263157894736)');
CREATE TABLE RulerGroup (
id INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL
);
INSERT INTO RulerGroup VALUES(36,'House of Braganza');
INSERT INTO RulerGroup VALUES(44,'House of Bourbon');
INSERT INTO RulerGroup VALUES(65,'Chakri dynasty');
INSERT INTO RulerGroup VALUES(89,'Modern France');
INSERT INTO RulerGroup VALUES(99,'House of Bernadotte');
INSERT INTO RulerGroup VALUES(129,'Grand Dukes of Nassau-Weilburg');
INSERT INTO RulerGroup VALUES(223,'Alaouite Kings');
INSERT INTO RulerGroup VALUES(240,'Shah dynasty');
INSERT INTO RulerGroup VALUES(377,'Co-Principality');
INSERT INTO RulerGroup VALUES(527,'House of Windsor');
INSERT INTO RulerGroup VALUES(530,'House of Belgium');
INSERT INTO RulerGroup VALUES(750,'House of Orange-Nassau');
INSERT INTO RulerGroup VALUES(797,'House of Windsor');
INSERT INTO RulerGroup VALUES(825,'House of Windsor');
INSERT INTO RulerGroup VALUES(827,'House of Windsor');
INSERT INTO RulerGroup VALUES(834,'House of Windsor');
CREATE TABLE Ruler (
id INTEGER NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
wikidata_id TEXT,
group_id INTEGER,
FOREIGN KEY (group_id) REFERENCES RulerGroup(id)
);
INSERT INTO Ruler VALUES(11,'Fifth Republic','Q200686',89);
INSERT INTO Ruler VALUES(149,'Second Republic','Q40',NULL);
INSERT INTO Ruler VALUES(150,'Felipe VI','Q191045',44);
INSERT INTO Ruler VALUES(151,'Juan Carlos I','Q19943',44);
INSERT INTO Ruler VALUES(152,'Francisco Franco','Q29179',NULL);
INSERT INTO Ruler VALUES(275,'Elizabeth II','Q9682',527);
INSERT INTO Ruler VALUES(335,'Shōwa','Q327567',NULL);
INSERT INTO Ruler VALUES(634,'Republic','Q258',NULL);
INSERT INTO Ruler VALUES(952,'Elizabeth II','Q9682',797);
INSERT INTO Ruler VALUES(1164,'Republic','Q38',NULL);
INSERT INTO Ruler VALUES(1170,'Albert II','Q3911',530);
INSERT INTO Ruler VALUES(1171,'Philippe','Q155004',530);
INSERT INTO Ruler VALUES(1254,'Third Hellenic Republic','Q17765809',NULL);
INSERT INTO Ruler VALUES(1290,'Luís I','Q156175',36);
INSERT INTO Ruler VALUES(1293,'First Republic','Q167360',NULL);
INSERT INTO Ruler VALUES(1294,'Second Republic','Q17748736',NULL);
INSERT INTO Ruler VALUES(1295,'Third Republic','Q1259200',NULL);
INSERT INTO Ruler VALUES(1302,'Juliana','Q154946',750);
INSERT INTO Ruler VALUES(1303,'Beatrix','Q29574',750);
INSERT INTO Ruler VALUES(1304,'Willem-Alexander','Q154952',750);
INSERT INTO Ruler VALUES(1310,'Republic','Q215',NULL);
INSERT INTO Ruler VALUES(1461,'Republic','Q218',NULL);
INSERT INTO Ruler VALUES(1500,'Khalifa bin Zayed Al Nahyan','Q1059948',NULL);
INSERT INTO Ruler VALUES(1572,'Soviet Union','Q15180',NULL);
INSERT INTO Ruler VALUES(1573,'Russian Federation','Q159',NULL);
INSERT INTO Ruler VALUES(1575,'Henri','Q16004',129);
INSERT INTO Ruler VALUES(1783,'Elizabeth II','Q9682',825);
INSERT INTO Ruler VALUES(1795,'Republic','Q229',NULL);
INSERT INTO Ruler VALUES(1801,'Republic','Q718422',NULL);
INSERT INTO Ruler VALUES(1905,'Bhumibol Adulyadej (Rama IX)','Q855252',65);
INSERT INTO Ruler VALUES(2044,'Republic','Q191',NULL);
INSERT INTO Ruler VALUES(2047,'Republic','Q43',NULL);
INSERT INTO Ruler VALUES(2055,'Republic','Q219',NULL);
INSERT INTO Ruler VALUES(2095,'Elizabeth II','Q9682',827);
INSERT INTO Ruler VALUES(2366,'Carl XVI Gustaf','Q45068',99);
INSERT INTO Ruler VALUES(2684,'Federative Republic of Brazil','Q155',NULL);
INSERT INTO Ruler VALUES(2857,'Federal State','Q355857',NULL);
INSERT INTO Ruler VALUES(2858,'Republic','Q27',NULL);
INSERT INTO Ruler VALUES(2860,'Federal Republic','Q183',NULL);
INSERT INTO Ruler VALUES(2864,'Republic','Q233',NULL);
INSERT INTO Ruler VALUES(2866,'Republic','Q37',NULL);
INSERT INTO Ruler VALUES(3278,'Republic','Q224',NULL);
INSERT INTO Ruler VALUES(3291,'Republic','Q33',NULL);
INSERT INTO Ruler VALUES(3299,'Republic','Q298',NULL);
INSERT INTO Ruler VALUES(3304,'Elizabeth II','Q9682',834);
INSERT INTO Ruler VALUES(3733,'People''s Democratic Republic','Q262',NULL);
INSERT INTO Ruler VALUES(3739,'Third Republic','Q1259201',NULL);
INSERT INTO Ruler VALUES(3758,'Republic','Q736',NULL);
INSERT INTO Ruler VALUES(3765,'Republic','Q214',NULL);
INSERT INTO Ruler VALUES(3831,'Mohammed VI','Q57553',223);
INSERT INTO Ruler VALUES(3964,'Birendra Bir Bikram Shah','Q162306',240);
INSERT INTO Ruler VALUES(3965,'Gyanendra Bir Bikram Shah','Q201327',240);
INSERT INTO Ruler VALUES(3966,'Federal Republic','Q837',NULL);
INSERT INTO Ruler VALUES(3983,'Federal Republic','Q414',NULL);
INSERT INTO Ruler VALUES(4012,'Republic','Q822',NULL);
INSERT INTO Ruler VALUES(4029,'United Mexican States/Mexican Republic','Q96',NULL);
INSERT INTO Ruler VALUES(4033,'Fourth Republic','Q786',NULL);
INSERT INTO Ruler VALUES(4088,'Republic','Q739',NULL);
INSERT INTO Ruler VALUES(4379,'Republic','Q750',NULL);
INSERT INTO Ruler VALUES(4380,'Plurinational State','Q750',NULL);
INSERT INTO Ruler VALUES(4700,'Joan Enric Vives i Sicília','Q57473',377);
INSERT INTO Ruler VALUES(4720,'Federal republic','Q30',NULL);
CREATE TABLE TypeRuler (
type_id INTEGER NOT NULL,
ruler_id INTEGER NOT NULL,
FOREIGN KEY (type_id) REFERENCES NumistaType(id),
FOREIGN KEY (ruler_id) REFERENCES Ruler(id),
UNIQUE(type_id, ruler_id)
);
INSERT INTO TypeRuler VALUES(596,3733);
INSERT INTO TypeRuler VALUES(68395,4700);
INSERT INTO TypeRuler VALUES(2217,3983);
INSERT INTO TypeRuler VALUES(27528,3983);
INSERT INTO TypeRuler VALUES(3256,3983);
INSERT INTO TypeRuler VALUES(89870,3983);
INSERT INTO TypeRuler VALUES(1702,1783);
INSERT INTO TypeRuler VALUES(1703,1783);
INSERT INTO TypeRuler VALUES(28191,149);
INSERT INTO TypeRuler VALUES(57,149);
INSERT INTO TypeRuler VALUES(58,149);
INSERT INTO TypeRuler VALUES(7905,149);
INSERT INTO TypeRuler VALUES(9761,149);
INSERT INTO TypeRuler VALUES(15296,952);
INSERT INTO TypeRuler VALUES(5010,952);
INSERT INTO TypeRuler VALUES(5012,952);
INSERT INTO TypeRuler VALUES(9224,952);
INSERT INTO TypeRuler VALUES(941,952);
INSERT INTO TypeRuler VALUES(49339,1171);
INSERT INTO TypeRuler VALUES(56030,1171);
INSERT INTO TypeRuler VALUES(56035,1171);
INSERT INTO TypeRuler VALUES(6293,1170);
INSERT INTO TypeRuler VALUES(6298,1170);
INSERT INTO TypeRuler VALUES(6307,1170);
INSERT INTO TypeRuler VALUES(73,1170);
INSERT INTO TypeRuler VALUES(74,1170);
INSERT INTO TypeRuler VALUES(75,1170);
INSERT INTO TypeRuler VALUES(78,1170);
INSERT INTO TypeRuler VALUES(79,1170);
INSERT INTO TypeRuler VALUES(13820,4379);
INSERT INTO TypeRuler VALUES(18054,4380);
INSERT INTO TypeRuler VALUES(3223,4379);
INSERT INTO TypeRuler VALUES(3224,4379);
INSERT INTO TypeRuler VALUES(3225,4379);
INSERT INTO TypeRuler VALUES(3228,4379);
INSERT INTO TypeRuler VALUES(4901,4379);
INSERT INTO TypeRuler VALUES(4902,4379);
INSERT INTO TypeRuler VALUES(2252,2684);
INSERT INTO TypeRuler VALUES(2253,2684);
INSERT INTO TypeRuler VALUES(666,2684);
INSERT INTO TypeRuler VALUES(8896,2684);
INSERT INTO TypeRuler VALUES(2375,2055);
INSERT INTO TypeRuler VALUES(2376,2055);
INSERT INTO TypeRuler VALUES(28608,2055);
INSERT INTO TypeRuler VALUES(28610,2055);
INSERT INTO TypeRuler VALUES(28611,2055);
INSERT INTO TypeRuler VALUES(5109,2055);
INSERT INTO TypeRuler VALUES(32604,2095);
INSERT INTO TypeRuler VALUES(377,2095);
INSERT INTO TypeRuler VALUES(377368,2095);
INSERT INTO TypeRuler VALUES(403,2095);
INSERT INTO TypeRuler VALUES(465,2095);
INSERT INTO TypeRuler VALUES(2842,3299);
INSERT INTO TypeRuler VALUES(1051,4088);
INSERT INTO TypeRuler VALUES(1073,4088);
INSERT INTO TypeRuler VALUES(2432,4088);
INSERT INTO TypeRuler VALUES(2433,4088);
INSERT INTO TypeRuler VALUES(7524,4088);
INSERT INTO TypeRuler VALUES(338338,3278);
INSERT INTO TypeRuler VALUES(338339,3278);
INSERT INTO TypeRuler VALUES(2173,1795);
INSERT INTO TypeRuler VALUES(2175,1795);
INSERT INTO TypeRuler VALUES(2178,1795);
INSERT INTO TypeRuler VALUES(2180,1795);
INSERT INTO TypeRuler VALUES(2504,4033);
INSERT INTO TypeRuler VALUES(3002,3758);
INSERT INTO TypeRuler VALUES(16586,2044);
INSERT INTO TypeRuler VALUES(16588,2044);
INSERT INTO TypeRuler VALUES(91,3291);
INSERT INTO TypeRuler VALUES(96,3291);
INSERT INTO TypeRuler VALUES(100,11);
INSERT INTO TypeRuler VALUES(11526,11);
INSERT INTO TypeRuler VALUES(12,11);
INSERT INTO TypeRuler VALUES(134685,11);
INSERT INTO TypeRuler VALUES(192990,11);
INSERT INTO TypeRuler VALUES(22652,11);
INSERT INTO TypeRuler VALUES(24276,11);
INSERT INTO TypeRuler VALUES(275891,11);
INSERT INTO TypeRuler VALUES(28330,11);
INSERT INTO TypeRuler VALUES(3,11);
INSERT INTO TypeRuler VALUES(314962,11);
INSERT INTO TypeRuler VALUES(318748,11);
INSERT INTO TypeRuler VALUES(3510,11);
INSERT INTO TypeRuler VALUES(369820,11);
INSERT INTO TypeRuler VALUES(4,11);
INSERT INTO TypeRuler VALUES(41904,11);
INSERT INTO TypeRuler VALUES(5,11);
INSERT INTO TypeRuler VALUES(5063,11);
INSERT INTO TypeRuler VALUES(6373,11);
INSERT INTO TypeRuler VALUES(6376,11);
INSERT INTO TypeRuler VALUES(681,11);
INSERT INTO TypeRuler VALUES(8,11);
INSERT INTO TypeRuler VALUES(82237,11);
INSERT INTO TypeRuler VALUES(9,11);
INSERT INTO TypeRuler VALUES(91431,11);
INSERT INTO TypeRuler VALUES(97,11);
INSERT INTO TypeRuler VALUES(98,11);
INSERT INTO TypeRuler VALUES(99,11);
INSERT INTO TypeRuler VALUES(102445,2860);
INSERT INTO TypeRuler VALUES(105,2860);
INSERT INTO TypeRuler VALUES(106,2860);
INSERT INTO TypeRuler VALUES(107,2860);
INSERT INTO TypeRuler VALUES(108,2860);
INSERT INTO TypeRuler VALUES(109,2860);
INSERT INTO TypeRuler VALUES(110,2860);
INSERT INTO TypeRuler VALUES(111,2860);
INSERT INTO TypeRuler VALUES(18666,2860);
INSERT INTO TypeRuler VALUES(2169,2860);
INSERT INTO TypeRuler VALUES(2201,2860);
INSERT INTO TypeRuler VALUES(2994,2860);
INSERT INTO TypeRuler VALUES(314709,2860);
INSERT INTO TypeRuler VALUES(6319,2860);
INSERT INTO TypeRuler VALUES(69263,2860);
INSERT INTO TypeRuler VALUES(69264,2860);
INSERT INTO TypeRuler VALUES(844,2860);
INSERT INTO TypeRuler VALUES(846,2860);
INSERT INTO TypeRuler VALUES(847,2860);
INSERT INTO TypeRuler VALUES(850,2860);
INSERT INTO TypeRuler VALUES(854,2860);
INSERT INTO TypeRuler VALUES(115,1254);
INSERT INTO TypeRuler VALUES(116,1254);
INSERT INTO TypeRuler VALUES(118,1254);
INSERT INTO TypeRuler VALUES(120,1254);
INSERT INTO TypeRuler VALUES(6350,1254);
INSERT INTO TypeRuler VALUES(1998,1801);
INSERT INTO TypeRuler VALUES(121,2858);
INSERT INTO TypeRuler VALUES(122,2858);
INSERT INTO TypeRuler VALUES(125,2858);
INSERT INTO TypeRuler VALUES(6329,2858);
INSERT INTO TypeRuler VALUES(6333,2858);
INSERT INTO TypeRuler VALUES(6334,2858);
INSERT INTO TypeRuler VALUES(129,1164);
INSERT INTO TypeRuler VALUES(130,1164);
INSERT INTO TypeRuler VALUES(131,1164);
INSERT INTO TypeRuler VALUES(132,1164);
INSERT INTO TypeRuler VALUES(133,1164);
INSERT INTO TypeRuler VALUES(136,1164);
INSERT INTO TypeRuler VALUES(20892,1164);
INSERT INTO TypeRuler VALUES(331445,1164);
INSERT INTO TypeRuler VALUES(1589,335);
INSERT INTO TypeRuler VALUES(122665,4012);
INSERT INTO TypeRuler VALUES(67631,2866);
INSERT INTO TypeRuler VALUES(137,1575);
INSERT INTO TypeRuler VALUES(138,1575);
INSERT INTO TypeRuler VALUES(139,1575);
INSERT INTO TypeRuler VALUES(144,1575);
INSERT INTO TypeRuler VALUES(6418,1575);
INSERT INTO TypeRuler VALUES(2183,2864);
INSERT INTO TypeRuler VALUES(587,4029);
INSERT INTO TypeRuler VALUES(589,4029);
INSERT INTO TypeRuler VALUES(591,4029);
INSERT INTO TypeRuler VALUES(27352,3831);
INSERT INTO TypeRuler VALUES(27395,3831);
INSERT INTO TypeRuler VALUES(3818,3831);
INSERT INTO TypeRuler VALUES(15575,3965);
INSERT INTO TypeRuler VALUES(1571,3964);
INSERT INTO TypeRuler VALUES(22544,3965);
INSERT INTO TypeRuler VALUES(26208,3965);
INSERT INTO TypeRuler VALUES(26791,3965);
INSERT INTO TypeRuler VALUES(26792,3964);
INSERT INTO TypeRuler VALUES(319351,3966);
INSERT INTO TypeRuler VALUES(5737,3965);
INSERT INTO TypeRuler VALUES(5737,3966);
INSERT INTO TypeRuler VALUES(6278,3964);
INSERT INTO TypeRuler VALUES(7461,3964);
INSERT INTO TypeRuler VALUES(7872,3964);
INSERT INTO TypeRuler VALUES(8862,3964);
INSERT INTO TypeRuler VALUES(145,1303);
INSERT INTO TypeRuler VALUES(146,1303);
INSERT INTO TypeRuler VALUES(147,1303);
INSERT INTO TypeRuler VALUES(149,1303);
INSERT INTO TypeRuler VALUES(152,1303);
INSERT INTO TypeRuler VALUES(54956,1304);
INSERT INTO TypeRuler VALUES(734,1302);
INSERT INTO TypeRuler VALUES(524,3739);
INSERT INTO TypeRuler VALUES(61644,3739);
INSERT INTO TypeRuler VALUES(10288,1295);
INSERT INTO TypeRuler VALUES(105040,1295);
INSERT INTO TypeRuler VALUES(11635,1295);
INSERT INTO TypeRuler VALUES(11691,1295);
INSERT INTO TypeRuler VALUES(11695,1295);
INSERT INTO TypeRuler VALUES(11952,1295);
INSERT INTO TypeRuler VALUES(1238,1295);
INSERT INTO TypeRuler VALUES(1241,1295);
INSERT INTO TypeRuler VALUES(1242,1295);
INSERT INTO TypeRuler VALUES(1243,1295);
INSERT INTO TypeRuler VALUES(13034,1295);
INSERT INTO TypeRuler VALUES(13038,1295);
INSERT INTO TypeRuler VALUES(153,1295);
INSERT INTO TypeRuler VALUES(154,1295);
INSERT INTO TypeRuler VALUES(155,1295);
INSERT INTO TypeRuler VALUES(156,1295);
INSERT INTO TypeRuler VALUES(157845,1295);
INSERT INTO TypeRuler VALUES(2047,1295);
INSERT INTO TypeRuler VALUES(2204,1295);
INSERT INTO TypeRuler VALUES(2384,1295);
INSERT INTO TypeRuler VALUES(258832,1295);
INSERT INTO TypeRuler VALUES(274850,1295);
INSERT INTO TypeRuler VALUES(321378,1295);
INSERT INTO TypeRuler VALUES(368994,1295);
INSERT INTO TypeRuler VALUES(4141,1290);
INSERT INTO TypeRuler VALUES(4729,1295);
INSERT INTO TypeRuler VALUES(5786,1295);
INSERT INTO TypeRuler VALUES(6258,1295);
INSERT INTO TypeRuler VALUES(6499,1295);
INSERT INTO TypeRuler VALUES(6500,1295);
INSERT INTO TypeRuler VALUES(7130,1295);
INSERT INTO TypeRuler VALUES(7193,1295);
INSERT INTO TypeRuler VALUES(7639,1295);
INSERT INTO TypeRuler VALUES(768,1290);
INSERT INTO TypeRuler VALUES(770,1295);
INSERT INTO TypeRuler VALUES(771,1295);
INSERT INTO TypeRuler VALUES(772,1294);
INSERT INTO TypeRuler VALUES(772,1295);
INSERT INTO TypeRuler VALUES(773,1295);
INSERT INTO TypeRuler VALUES(774,1294);
INSERT INTO TypeRuler VALUES(774,1295);
INSERT INTO TypeRuler VALUES(775,1294);
INSERT INTO TypeRuler VALUES(775,1295);
INSERT INTO TypeRuler VALUES(776,1294);
INSERT INTO TypeRuler VALUES(776,1295);
INSERT INTO TypeRuler VALUES(84061,1295);
INSERT INTO TypeRuler VALUES(87329,1295);
INSERT INTO TypeRuler VALUES(907,1294);
INSERT INTO TypeRuler VALUES(9826,1295);
INSERT INTO TypeRuler VALUES(9834,1295);
INSERT INTO TypeRuler VALUES(9894,1295);
INSERT INTO TypeRuler VALUES(9895,1295);
INSERT INTO TypeRuler VALUES(9896,1295);
INSERT INTO TypeRuler VALUES(991,1294);
INSERT INTO TypeRuler VALUES(991,1295);
INSERT INTO TypeRuler VALUES(133815,1461);
INSERT INTO TypeRuler VALUES(133816,1461);
INSERT INTO TypeRuler VALUES(4580,1573);
INSERT INTO TypeRuler VALUES(766,1572);
INSERT INTO TypeRuler VALUES(5086,3765);
INSERT INTO TypeRuler VALUES(242,1310);
INSERT INTO TypeRuler VALUES(243,1310);
INSERT INTO TypeRuler VALUES(2903,634);
INSERT INTO TypeRuler VALUES(10854,150);
INSERT INTO TypeRuler VALUES(10854,151);
INSERT INTO TypeRuler VALUES(10856,150);
INSERT INTO TypeRuler VALUES(10856,151);
INSERT INTO TypeRuler VALUES(10857,150);
INSERT INTO TypeRuler VALUES(10857,151);
INSERT INTO TypeRuler VALUES(10860,150);
INSERT INTO TypeRuler VALUES(10860,151);
INSERT INTO TypeRuler VALUES(10862,151);
INSERT INTO TypeRuler VALUES(1149,151);
INSERT INTO TypeRuler VALUES(1258,151);
INSERT INTO TypeRuler VALUES(1262,151);
INSERT INTO TypeRuler VALUES(1263,151);
INSERT INTO TypeRuler VALUES(1264,151);
INSERT INTO TypeRuler VALUES(1266,151);
INSERT INTO TypeRuler VALUES(1267,151);
INSERT INTO TypeRuler VALUES(1353,151);
INSERT INTO TypeRuler VALUES(19979,151);
INSERT INTO TypeRuler VALUES(2168,151);
INSERT INTO TypeRuler VALUES(2254,151);
INSERT INTO TypeRuler VALUES(2255,151);
INSERT INTO TypeRuler VALUES(2304,151);
INSERT INTO TypeRuler VALUES(2374,151);
INSERT INTO TypeRuler VALUES(264789,150);
INSERT INTO TypeRuler VALUES(2736,151);
INSERT INTO TypeRuler VALUES(2986,151);
INSERT INTO TypeRuler VALUES(3200,151);
INSERT INTO TypeRuler VALUES(3372,151);
INSERT INTO TypeRuler VALUES(3888,151);
INSERT INTO TypeRuler VALUES(3932,151);
INSERT INTO TypeRuler VALUES(42976,151);
INSERT INTO TypeRuler VALUES(4546,151);
INSERT INTO TypeRuler VALUES(5624,151);
INSERT INTO TypeRuler VALUES(6361,151);
INSERT INTO TypeRuler VALUES(7184,151);
INSERT INTO TypeRuler VALUES(7576,151);
INSERT INTO TypeRuler VALUES(779,151);
INSERT INTO TypeRuler VALUES(781,152);
INSERT INTO TypeRuler VALUES(782,151);
INSERT INTO TypeRuler VALUES(783,151);
INSERT INTO TypeRuler VALUES(784,151);
INSERT INTO TypeRuler VALUES(787,151);
INSERT INTO TypeRuler VALUES(81,151);
INSERT INTO TypeRuler VALUES(81058,150);
INSERT INTO TypeRuler VALUES(82,151);
INSERT INTO TypeRuler VALUES(83,151);
INSERT INTO TypeRuler VALUES(84,151);
INSERT INTO TypeRuler VALUES(85,151);
INSERT INTO TypeRuler VALUES(88,151);
INSERT INTO TypeRuler VALUES(8925,151);
INSERT INTO TypeRuler VALUES(946,151);
INSERT INTO TypeRuler VALUES(6926,2366);
INSERT INTO TypeRuler VALUES(88649,2366);
INSERT INTO TypeRuler VALUES(171,2857);
INSERT INTO TypeRuler VALUES(173,2857);
INSERT INTO TypeRuler VALUES(178,2857);
INSERT INTO TypeRuler VALUES(185,2857);
INSERT INTO TypeRuler VALUES(189,2857);
INSERT INTO TypeRuler VALUES(10004,1905);
INSERT INTO TypeRuler VALUES(1643,1905);
INSERT INTO TypeRuler VALUES(22038,1905);
INSERT INTO TypeRuler VALUES(3044,2047);
INSERT INTO TypeRuler VALUES(6163,2047);
INSERT INTO TypeRuler VALUES(6164,2047);
INSERT INTO TypeRuler VALUES(6165,2047);
INSERT INTO TypeRuler VALUES(7047,2047);
INSERT INTO TypeRuler VALUES(7048,2047);
INSERT INTO TypeRuler VALUES(40522,1500);
INSERT INTO TypeRuler VALUES(100658,275);
INSERT INTO TypeRuler VALUES(1324,275);
INSERT INTO TypeRuler VALUES(1376,275);
INSERT INTO TypeRuler VALUES(1384,275);
INSERT INTO TypeRuler VALUES(1389,275);
INSERT INTO TypeRuler VALUES(1390,275);
INSERT INTO TypeRuler VALUES(1395,275);
INSERT INTO TypeRuler VALUES(1397,275);
INSERT INTO TypeRuler VALUES(20700,275);
INSERT INTO TypeRuler VALUES(2236,275);
INSERT INTO TypeRuler VALUES(25746,275);
INSERT INTO TypeRuler VALUES(25766,275);
INSERT INTO TypeRuler VALUES(2763,275);
INSERT INTO TypeRuler VALUES(4038,275);
INSERT INTO TypeRuler VALUES(4039,275);
INSERT INTO TypeRuler VALUES(5628,275);
INSERT INTO TypeRuler VALUES(573,275);
INSERT INTO TypeRuler VALUES(6612,275);
INSERT INTO TypeRuler VALUES(664,275);
INSERT INTO TypeRuler VALUES(665,275);
INSERT INTO TypeRuler VALUES(70547,275);
INSERT INTO TypeRuler VALUES(7398,275);
INSERT INTO TypeRuler VALUES(861,275);
INSERT INTO TypeRuler VALUES(862,275);
INSERT INTO TypeRuler VALUES(863,275);
INSERT INTO TypeRuler VALUES(864,275);
INSERT INTO TypeRuler VALUES(865,275);
INSERT INTO TypeRuler VALUES(867,275);
INSERT INTO TypeRuler VALUES(868,275);
INSERT INTO TypeRuler VALUES(875,275);
INSERT INTO TypeRuler VALUES(876,275);
INSERT INTO TypeRuler VALUES(879,275);
INSERT INTO TypeRuler VALUES(42,4720);
INSERT INTO TypeRuler VALUES(43,4720);
INSERT INTO TypeRuler VALUES(44,4720);
INSERT INTO TypeRuler VALUES(53,4720);
INSERT INTO TypeRuler VALUES(55,4720);
INSERT INTO TypeRuler VALUES(614,4720);
INSERT INTO TypeRuler VALUES(648,4720);
INSERT INTO TypeRuler VALUES(649,4720);
INSERT INTO TypeRuler VALUES(908,4720);
INSERT INTO TypeRuler VALUES(201676,2055);
INSERT INTO TypeRuler VALUES(302331,2055);
INSERT INTO TypeRuler VALUES(202279,3831);
INSERT INTO TypeRuler VALUES(202287,3831);
INSERT INTO TypeRuler VALUES(202243,1295);
INSERT INTO TypeRuler VALUES(206382,2047);
INSERT INTO TypeRuler VALUES(206385,2047);
INSERT INTO TypeRuler VALUES(206387,2047);
INSERT INTO TypeRuler VALUES(201624,3304);
INSERT INTO TypeRuler VALUES(202523,3304);
INSERT INTO TypeRuler VALUES(202397,4720);
INSERT INTO TypeRuler VALUES(1366,1294);
INSERT INTO TypeRuler VALUES(1366,1295);
INSERT INTO TypeRuler VALUES(1237,1294);
INSERT INTO TypeRuler VALUES(3282,1294);
INSERT INTO TypeRuler VALUES(2383,1295);
INSERT INTO TypeRuler VALUES(1236,1294);
INSERT INTO TypeRuler VALUES(9285,1293);
INSERT INTO TypeRuler VALUES(9828,1295);
INSERT INTO TypeRuler VALUES(6071,1295);
INSERT INTO TypeRuler VALUES(7337,1295);
INSERT INTO TypeRuler VALUES(10126,1295);
INSERT INTO TypeRuler VALUES(5444,1294);
INSERT INTO TypeRuler VALUES(7338,1295);
INSERT INTO TypeRuler VALUES(5492,1295);
INSERT INTO TypeRuler VALUES(9831,1295);
INSERT INTO TypeRuler VALUES(6374,11);
CREATE TABLE TypeRelated (
type1_id INTEGER NOT NULL,
type2_id INTEGER NOT NULL,
FOREIGN KEY (type1_id) REFERENCES NumistaType(id),
FOREIGN KEY (type2_id) REFERENCES NumistaType(id),
UNIQUE(type1_id, type2_id)
);
INSERT INTO TypeRelated VALUES(1702,1703);
INSERT INTO TypeRelated VALUES(1703,1702);
INSERT INTO TypeRelated VALUES(28191,28330);
INSERT INTO TypeRelated VALUES(6298,73);
INSERT INTO TypeRelated VALUES(73,6298);
INSERT INTO TypeRelated VALUES(13820,3223);
INSERT INTO TypeRelated VALUES(13820,3225);
INSERT INTO TypeRelated VALUES(13820,3228);
INSERT INTO TypeRelated VALUES(3223,3225);
INSERT INTO TypeRelated VALUES(3223,3228);
INSERT INTO TypeRelated VALUES(3223,13820);
INSERT INTO TypeRelated VALUES(3225,3223);
INSERT INTO TypeRelated VALUES(3225,3228);
INSERT INTO TypeRelated VALUES(3225,13820);
INSERT INTO TypeRelated VALUES(3228,3223);
INSERT INTO TypeRelated VALUES(3228,3225);
INSERT INTO TypeRelated VALUES(3228,13820);
INSERT INTO TypeRelated VALUES(2252,2253);
INSERT INTO TypeRelated VALUES(2252,666);
INSERT INTO TypeRelated VALUES(2252,8896);
INSERT INTO TypeRelated VALUES(2253,2252);
INSERT INTO TypeRelated VALUES(2253,666);
INSERT INTO TypeRelated VALUES(2253,8896);
INSERT INTO TypeRelated VALUES(666,2253);
INSERT INTO TypeRelated VALUES(666,2252);
INSERT INTO TypeRelated VALUES(666,8896);
INSERT INTO TypeRelated VALUES(8896,2253);
INSERT INTO TypeRelated VALUES(8896,2252);
INSERT INTO TypeRelated VALUES(8896,666);
INSERT INTO TypeRelated VALUES(36732,36739);
INSERT INTO TypeRelated VALUES(36732,36742);
INSERT INTO TypeRelated VALUES(36732,36733);
INSERT INTO TypeRelated VALUES(36732,36738);
INSERT INTO TypeRelated VALUES(36732,36735);
INSERT INTO TypeRelated VALUES(36732,36737);
INSERT INTO TypeRelated VALUES(36732,36734);
INSERT INTO TypeRelated VALUES(36732,36741);
INSERT INTO TypeRelated VALUES(36732,36740);
INSERT INTO TypeRelated VALUES(36732,36743);
INSERT INTO TypeRelated VALUES(36732,36736);
INSERT INTO TypeRelated VALUES(36733,36739);
INSERT INTO TypeRelated VALUES(36733,36742);
INSERT INTO TypeRelated VALUES(36733,36738);
INSERT INTO TypeRelated VALUES(36733,36735);
INSERT INTO TypeRelated VALUES(36733,36737);
INSERT INTO TypeRelated VALUES(36733,36734);
INSERT INTO TypeRelated VALUES(36733,36741);
INSERT INTO TypeRelated VALUES(36733,36740);
INSERT INTO TypeRelated VALUES(36733,36743);
INSERT INTO TypeRelated VALUES(36733,36736);
INSERT INTO TypeRelated VALUES(36734,36739);
INSERT INTO TypeRelated VALUES(36734,36742);
INSERT INTO TypeRelated VALUES(36734,36733);
INSERT INTO TypeRelated VALUES(36734,36738);
INSERT INTO TypeRelated VALUES(36734,36735);
INSERT INTO TypeRelated VALUES(36734,36737);
INSERT INTO TypeRelated VALUES(36734,36741);
INSERT INTO TypeRelated VALUES(36734,36740);
INSERT INTO TypeRelated VALUES(36734,36743);
INSERT INTO TypeRelated VALUES(36734,36736);
INSERT INTO TypeRelated VALUES(36735,36739);
INSERT INTO TypeRelated VALUES(36735,36742);
INSERT INTO TypeRelated VALUES(36735,36733);
INSERT INTO TypeRelated VALUES(36735,36738);
INSERT INTO TypeRelated VALUES(36735,36737);
INSERT INTO TypeRelated VALUES(36735,36734);
INSERT INTO TypeRelated VALUES(36735,36741);
INSERT INTO TypeRelated VALUES(36735,36740);
INSERT INTO TypeRelated VALUES(36735,36743);
INSERT INTO TypeRelated VALUES(36735,36736);
INSERT INTO TypeRelated VALUES(36736,36739);
INSERT INTO TypeRelated VALUES(36736,36742);
INSERT INTO TypeRelated VALUES(36736,36733);
INSERT INTO TypeRelated VALUES(36736,36738);
INSERT INTO TypeRelated VALUES(36736,36735);
INSERT INTO TypeRelated VALUES(36736,36737);
INSERT INTO TypeRelated VALUES(36736,36734);
INSERT INTO TypeRelated VALUES(36736,36741);
INSERT INTO TypeRelated VALUES(36736,36740);
INSERT INTO TypeRelated VALUES(36736,36743);
INSERT INTO TypeRelated VALUES(36737,36739);
INSERT INTO TypeRelated VALUES(36737,36742);
INSERT INTO TypeRelated VALUES(36737,36733);
INSERT INTO TypeRelated VALUES(36737,36738);
INSERT INTO TypeRelated VALUES(36737,36735);
INSERT INTO TypeRelated VALUES(36737,36734);
INSERT INTO TypeRelated VALUES(36737,36741);
INSERT INTO TypeRelated VALUES(36737,36740);
INSERT INTO TypeRelated VALUES(36737,36743);
INSERT INTO TypeRelated VALUES(36737,36736);
INSERT INTO TypeRelated VALUES(36738,36739);
INSERT INTO TypeRelated VALUES(36738,36742);
INSERT INTO TypeRelated VALUES(36738,36733);
INSERT INTO TypeRelated VALUES(36738,36735);
INSERT INTO TypeRelated VALUES(36738,36737);
INSERT INTO TypeRelated VALUES(36738,36734);
INSERT INTO TypeRelated VALUES(36738,36741);
INSERT INTO TypeRelated VALUES(36738,36740);
INSERT INTO TypeRelated VALUES(36738,36743);
INSERT INTO TypeRelated VALUES(36738,36736);
INSERT INTO TypeRelated VALUES(36739,36742);
INSERT INTO TypeRelated VALUES(36739,36733);
INSERT INTO TypeRelated VALUES(36739,36738);
INSERT INTO TypeRelated VALUES(36739,36735);
INSERT INTO TypeRelated VALUES(36739,36737);
INSERT INTO TypeRelated VALUES(36739,36734);
INSERT INTO TypeRelated VALUES(36739,36741);
INSERT INTO TypeRelated VALUES(36739,36740);
INSERT INTO TypeRelated VALUES(36739,36743);
INSERT INTO TypeRelated VALUES(36739,36736);
INSERT INTO TypeRelated VALUES(36740,36739);
INSERT INTO TypeRelated VALUES(36740,36742);
INSERT INTO TypeRelated VALUES(36740,36733);
INSERT INTO TypeRelated VALUES(36740,36738);
INSERT INTO TypeRelated VALUES(36740,36735);
INSERT INTO TypeRelated VALUES(36740,36737);
INSERT INTO TypeRelated VALUES(36740,36734);
INSERT INTO TypeRelated VALUES(36740,36741);
INSERT INTO TypeRelated VALUES(36740,36743);
INSERT INTO TypeRelated VALUES(36740,36736);
INSERT INTO TypeRelated VALUES(36741,36739);
INSERT INTO TypeRelated VALUES(36741,36742);
INSERT INTO TypeRelated VALUES(36741,36733);
INSERT INTO TypeRelated VALUES(36741,36738);
INSERT INTO TypeRelated VALUES(36741,36735);
INSERT INTO TypeRelated VALUES(36741,36737);
INSERT INTO TypeRelated VALUES(36741,36734);
INSERT INTO TypeRelated VALUES(36741,36740);
INSERT INTO TypeRelated VALUES(36741,36743);
INSERT INTO TypeRelated VALUES(36741,36736);
INSERT INTO TypeRelated VALUES(36742,36739);
INSERT INTO TypeRelated VALUES(36742,36733);
INSERT INTO TypeRelated VALUES(36742,36738);
INSERT INTO TypeRelated VALUES(36742,36735);
INSERT INTO TypeRelated VALUES(36742,36737);
INSERT INTO TypeRelated VALUES(36742,36734);
INSERT INTO TypeRelated VALUES(36742,36741);
INSERT INTO TypeRelated VALUES(36742,36740);
INSERT INTO TypeRelated VALUES(36742,36743);
INSERT INTO TypeRelated VALUES(36742,36736);
INSERT INTO TypeRelated VALUES(36743,36739);
INSERT INTO TypeRelated VALUES(36743,36742);
INSERT INTO TypeRelated VALUES(36743,36733);
INSERT INTO TypeRelated VALUES(36743,36738);
INSERT INTO TypeRelated VALUES(36743,36735);
INSERT INTO TypeRelated VALUES(36743,36737);
INSERT INTO TypeRelated VALUES(36743,36734);
INSERT INTO TypeRelated VALUES(36743,36741);
INSERT INTO TypeRelated VALUES(36743,36740);
INSERT INTO TypeRelated VALUES(36743,36736);
INSERT INTO TypeRelated VALUES(2173,2175);
INSERT INTO TypeRelated VALUES(2175,2173);
INSERT INTO TypeRelated VALUES(100,3510);
INSERT INTO TypeRelated VALUES(22652,24276);
INSERT INTO TypeRelated VALUES(24276,22652);
INSERT INTO TypeRelated VALUES(28330,28191);
INSERT INTO TypeRelated VALUES(314962,6376);
INSERT INTO TypeRelated VALUES(109,6319);
INSERT INTO TypeRelated VALUES(6319,109);
INSERT INTO TypeRelated VALUES(145,146);
INSERT INTO TypeRelated VALUES(145,147);
INSERT INTO TypeRelated VALUES(146,145);
INSERT INTO TypeRelated VALUES(146,147);
INSERT INTO TypeRelated VALUES(147,145);
INSERT INTO TypeRelated VALUES(147,146);
INSERT INTO TypeRelated VALUES(524,61644);
INSERT INTO TypeRelated VALUES(1241,773);
INSERT INTO TypeRelated VALUES(1241,771);
INSERT INTO TypeRelated VALUES(156,9895);
INSERT INTO TypeRelated VALUES(4141,768);
INSERT INTO TypeRelated VALUES(768,4141);
INSERT INTO TypeRelated VALUES(771,1241);
INSERT INTO TypeRelated VALUES(771,773);
INSERT INTO TypeRelated VALUES(773,1241);
INSERT INTO TypeRelated VALUES(773,771);
INSERT INTO TypeRelated VALUES(907,775);
INSERT INTO TypeRelated VALUES(907,11952);
INSERT INTO TypeRelated VALUES(907,1241);
INSERT INTO TypeRelated VALUES(9895,156);
INSERT INTO TypeRelated VALUES(991,776);
INSERT INTO TypeRelated VALUES(10854,83);
INSERT INTO TypeRelated VALUES(10856,81);
INSERT INTO TypeRelated VALUES(10857,82);
INSERT INTO TypeRelated VALUES(10862,88);
INSERT INTO TypeRelated VALUES(1263,784);
INSERT INTO TypeRelated VALUES(1263,1149);
INSERT INTO TypeRelated VALUES(1263,783);
INSERT INTO TypeRelated VALUES(1263,1266);
INSERT INTO TypeRelated VALUES(19979,42976);
INSERT INTO TypeRelated VALUES(19979,81058);
INSERT INTO TypeRelated VALUES(19979,264789);
INSERT INTO TypeRelated VALUES(264789,19979);
INSERT INTO TypeRelated VALUES(264789,42976);
INSERT INTO TypeRelated VALUES(264789,81058);
INSERT INTO TypeRelated VALUES(3372,84);
INSERT INTO TypeRelated VALUES(3932,782);
INSERT INTO TypeRelated VALUES(42976,19979);
INSERT INTO TypeRelated VALUES(42976,81058);
INSERT INTO TypeRelated VALUES(42976,264789);
INSERT INTO TypeRelated VALUES(6361,85);
INSERT INTO TypeRelated VALUES(782,3932);
INSERT INTO TypeRelated VALUES(81,10856);
INSERT INTO TypeRelated VALUES(81058,19979);
INSERT INTO TypeRelated VALUES(81058,42976);
INSERT INTO TypeRelated VALUES(81058,264789);
INSERT INTO TypeRelated VALUES(82,10857);
INSERT INTO TypeRelated VALUES(83,10854);
INSERT INTO TypeRelated VALUES(84,3372);
INSERT INTO TypeRelated VALUES(85,6361);
INSERT INTO TypeRelated VALUES(88,10862);
INSERT INTO TypeRelated VALUES(1643,22038);
INSERT INTO TypeRelated VALUES(22038,1643);
INSERT INTO TypeRelated VALUES(1384,1389);
INSERT INTO TypeRelated VALUES(1389,1384);
INSERT INTO TypeRelated VALUES(1390,1395);
INSERT INTO TypeRelated VALUES(1395,1390);
INSERT INTO TypeRelated VALUES(25746,2236);
INSERT INTO TypeRelated VALUES(25766,6612);
INSERT INTO TypeRelated VALUES(573,5628);
INSERT INTO TypeRelated VALUES(6612,876);
INSERT INTO TypeRelated VALUES(6612,25766);
INSERT INTO TypeRelated VALUES(70547,25766);
INSERT INTO TypeRelated VALUES(862,4038);
INSERT INTO TypeRelated VALUES(865,1376);
INSERT INTO TypeRelated VALUES(865,573);
INSERT INTO TypeRelated VALUES(865,5628);
INSERT INTO TypeRelated VALUES(867,868);
INSERT INTO TypeRelated VALUES(868,867);
INSERT INTO TypeRelated VALUES(876,6612);
INSERT INTO TypeRelated VALUES(42,43);
INSERT INTO TypeRelated VALUES(43,42);
INSERT INTO TypeRelated VALUES(201624,202523);
INSERT INTO TypeRelated VALUES(202523,201624);
COMMIT;