UUCP

UUCP
Original author(s)Mike Lesk
Developer(s)AT&T Bell Laboratories
Initial release1979; 45 years ago (1979)
Operating systemUnix and Unix-like, DOS, OS/2, OpenVMS, AmigaOS, classic Mac OS, CP/M
TypeCommand

UUCP (Unix-to-Unix Copy)[1] is a suite of computer programs and protocols allowing remote execution of commands and transfer of files, email and netnews between computers.

A command named uucp is one of the programs in the suite; it provides a user interface for requesting file copy operations. The UUCP suite also includes uux (user interface for remote command execution), uucico (the communication program that performs the file transfers), uustat (reports statistics on recent activity), uuxqt (execute commands sent from remote machines), and uuname (reports the UUCP name of the local system). Some versions of the suite include uuencode/uudecode (convert 8-bit binary files to 7-bit text format and vice versa).

Although UUCP was originally developed on Unix in the 1970s and 1980s, and is most closely associated with Unix-like systems, UUCP implementations exist for several non-Unix-like operating systems, including DOS, OS/2, OpenVMS (for VAX hardware only), AmigaOS,[2] classic Mac OS, and even CP/M.

History

UUCP was originally written at AT&T Bell Laboratories by Mike Lesk.[3] By 1978 it was in use on 82 UNIX machines inside the Bell system, primarily for software distribution. It was released in 1979 as part of Version 7 Unix.[4]

The first UUCP emails from the U.S. arrived in the United Kingdom in 1979 and email between the UK, the Netherlands and Denmark started in 1980, becoming a regular service via EUnet in 1982.[5][6]

The original UUCP was rewritten by AT&T researchers Peter Honeyman, David A. Nowitz, and Brian E. Redman around 1983. The rewrite is referred to as HDB or HoneyDanBer uucp, which was later enhanced, bug fixed, and repackaged as BNU UUCP ("Basic Network Utilities").[7]

Each of these versions was distributed as proprietary software, which inspired Ian Lance Taylor to write a new free software version from scratch in 1991.[8] Taylor UUCP was released under the GNU General Public License. Taylor UUCP addressed security holes which allowed some of the original network worms to remotely execute unexpected shell commands. Taylor UUCP also incorporated features of all previous versions of UUCP, allowing it to communicate with any other version and even use similar config file formats from other versions.

UUCP was also implemented for non-UNIX operating systems, most-notably DOS systems. Packages such as UUSLAVE/GNUUCP (John Gilmore, Garry Paxinos, Tim Pozar), UUPC/extended (Drew Derbyshire of Kendra Electronic Wonderworks) and FSUUCP (Christopher Ambler of IODesign), brought early Internet connectivity to personal computers, expanding the network beyond the interconnected university systems. FSUUCP formed the basis for many bulletin board system (BBS) packages such as Galacticomm's Major BBS and Mustang Software's Wildcat! BBS to connect to the UUCP network and exchange email and Usenet traffic. As an example, UFGATE (John Galvin, Garry Paxinos, Tim Pozar) was a package that provided a gateway between networks running Fidonet and UUCP protocols.

FSUUCP was the only other implementation of Taylor's enhanced 'i' protocol, a significant improvement over the standard 'g' protocol used by most UUCP implementations.[citation needed]

Technology

Before the widespread availability of Internet access, computers were only connected by smaller local area networks within a company or organization. They were also often equipped with modems so they could be used remotely from character-mode terminals via dial-up telephone lines. UUCP used the computers' modems to dial out to other computers, establishing temporary, point-to-point links between them. Each system in a UUCP network has a list of neighbor systems, with phone numbers, login names and passwords, etc. When work (file transfer or command execution requests) is queued for a neighbor system, the uucico program typically calls that system to process the work. The uucico program can also poll its neighbors periodically to check for work queued on their side; this permits neighbors without dial-out capability to participate.

Over time, dial-up links were replaced by Internet connections, and UUCP added a number of new link layer protocols. These newer connections also reduced the need for UUCP at all, as newer application protocols developed to take advantage of the new networks. Today, UUCP is rarely used over dial-up links, but is occasionally used over TCP/IP.[9][10] The number of systems involved, as of early 2006, ran between 1500 and 2000 sites across 60 enterprises. UUCP's longevity can be attributed to its low cost, extensive logging, native failover to dialup, and persistent queue management.

Sessions

UUCP is normally started by having a user log into the target system and then running the UUCP program. In most cases, this is automated by logging into a known user account used for transfers, whose account's shell has been set to uucico. Thus, for automated transfers, another machine simply has to open a modem connection to the called machine and log into the known account.

When uucico runs, it will expect to receive commands from another UUCP program on the caller's machine and begin a session. The session has three distinct stages:

  1. Initial handshake
  2. File request(s)
  3. Final handshake

Initial handshake

On starting, uucico will respond by sending an identification string, \20Shere=hostname\0, where \20 is the control-P character, and \0 is a trailing null. The caller's UUCP responds with \20Scallername options\0, where options is a string containing zero or more Unix-like option switches. These can include packet and window sizes, the maximum supported file size, debugging options, and others.

Depending on the setup of the two systems, the call may end here. For instance, when the caller responds with their system name, the called system may optionally hang up if it does not recognize the caller, sending the RYou are unknown to me\0 response string and then disconnecting.

File requests

If the two systems successfully handshake, the caller will now begin to send a series of file requests. There are four types:

S causes a file to be Sent from the caller to the called system (upload). The from and to names are provided, allowing the filename to be changed on the receiver. When the S command is received on the called system, it responds with SY if it succeeded and it is ready to accept the file, or SNx if it failed, where x is a failure reason. If an SY is received by the caller, it begins uploading the file using the protocol selected during the initial handshake (see below). When the transfer is complete, the called system responds with CY if it successfully received the file, or CN5 if it failed.
R is a Request for the called system to send a file to the caller (download). It is otherwise similar to S, using RY and RN to indicate the command was accepted and it will begin to send data or had a problem, and expecting a CY and CN5 from the caller at the end of the transfer.
X uploads commands to be eXecuted on the called system. This can be used to make that system call another and deliver files to it. The called system responds with XY if it succeeded, or XN if it failed.
H, for Hangup, indicates the caller is done. The called system responds with HY if it succeeded, or HN if it failed.

Final handshake

After sending an H command, the calling system sends a final packet \20OOOOOO\0 (control-P, six ohs, null-terminator) and the called system responds with \20OOOOOO\0 (control-P, seven ohs, null-terminator). Some systems will simply hang up on the successful reception of the H command and not bother with the final handshake.

g-protocol

Within the suite of protocols in UUCP, the underlying g-protocol is responsible for transferring information in an error-free form. The protocol originated as a general-purpose system for packet delivery, and thus offers a number of features that are not used by the UUCP package as a whole. These include a secondary channel that can send command data interspersed with a file transfer, and the ability to renegotiate the packet and window sizes during transmission. These extra features may not be available in some implementations of the UUCP stack.[11]

The packet format consisted of a 6-byte header and then between zero and 4096 bytes in the payload. The packet starts with a single \020 (control-P). This is followed by a single byte, known as "K", containing a value of 1 to 8 indicating a packet size from 32 to 4096 bytes, or a 9 indicating a control packet. Many systems only supported K=2, meaning 64 bytes. The next two bytes were a 16-bit checksum of the payload, not including the header. The next byte is the data type and finally, the last byte is the XOR of the header, allowing it to be checked separately from the payload.[11]

The control byte consists of three bit-fields in the format TTXXXYYY. TT is the packet type, 0 for control packets (which also requires K=9 to be valid), 1 for alternate data (not used in UUCP), 2 for data, and 3 indicates a short packet that re-defines the meaning of K. In a data packet, XXX is the packet number for this packet from 0 to 7, and YYY is the last that was received correctly. This provides up to 8 packets in a window. In a control packet, XXX indicates the command and YYY is used for various parameters. For instance, transfers are started by sending a short control packet with TT=0 (control), XXX=7 and YYY the number of packets in a window, then sending another packet with XXX=6 and YYY as the packet length (encoded as it would be in K) and then a third packet that is identical to the first but XXX=5.[11]

g-protocol uses a simple sliding window system to deal with potentially long latencies between endpoints. The protocol allows packets to size from 64 to 4096 8-bit bytes, and windows that include 1 to 7 packets. In theory, a system using 4k packets and 7 packet windows (4096x7) would offer performance matching or beating the best file-transfer protocols like ZMODEM. In practice, many implementations only supported a single setting of 64x3. As a result, the g-protocol has an undeserved reputation for poor performance. Confusion over the packet and window sizes led to the G-protocol, differing only in that it always used 4096x3. Taylor UUCP did not support G, but did support any valid requested window or packet size, so remote systems starting G would work fine with Taylor's g, while two Taylor systems could negotiate even faster connections.[11]

Telebit modems used protocol spoofing to improve the performance of g-protocol transfers by noticing end-of-packet markers being sent to the remote system and immediately sending an ACK back to the local host, pretending that the remote system had already received the packet and decoded it correctly. This triggered the software stack to send the next packet, so rapidly that the transfer became almost continuous. The data between the two modems was error-corrected using a proprietary protocol based on MNP that ran over Telebit's half-duplex connections much better than g-protocol would normally,[11] because in the common 64x3 case the remote system would be sending a constant stream of ACKs that would overflow the low-speed return channel. Combined with the modem's naturally higher data rates, they greatly improved overall throughput and generally performed about seven times the speed of a 2400 bit/s modem.[12] They were widely used on UUCP hosts as they could quickly pay for themselves in reduced long-distance charges.

Other protocols

UUCP implementations also include other transfer protocols for use over certain links.

f-protocol is designed to run over 7-bit error-corrected links. This was originally intended for use on X.25 links, which were popular for a time in the 1980s. It does not packetize data, instead, the entire file is sent as a single long string followed by a whole-file checksum. The similar x-protocol appears to have seen little or no use. d-protocol was similar to x, but intended for use on Datakit networks that connected many of Bell Labs offices.[11]

t-protocol originated in the BSD versions of UUCP and like some similar ones, is designed to run over 8-bit error-free TCP/IP links. It has no error correction at all, and the protocol consists simply of breaking up command and file data into 512 or 1024-byte packets to easily fit within typical TCP frames.

e-protocol ("e" for Ethernet) was developed by Clem Cole at MASSCOMP and was widely released by Brian Redman in the later HoneyDanBer versions. It was developed and released before the t-protocol, but the t-protocol was more commonly used because the BSD version of UUCP was the dominant implementation. The e-protocol differs from the t-protocol only in that commands are not packetized and are instead sent as normal strings, while files are padded to the nearest 20 bytes.[11][13]

Mail routing

Business card with UUCP email address

The uucp and uuxqt capabilities could be used to send email between machines, with suitable mail user interfaces and delivery agent programs. A simple UUCP mail address was formed from the adjacent machine name, an exclamation mark (often pronounced bang), followed by the user name on the adjacent machine. For example, the address barbox!user would refer to user user on adjacent machine barbox.[14]

Mail could furthermore be routed through the network, traversing any number of intermediate nodes before arriving at its destination. Initially, this had to be done by specifying the complete path, with a list of intermediate host names separated by bangs. For example, if machine barbox is not connected to the local machine, but it is known that barbox is connected to machine foovax which does communicate with the local machine, the appropriate address to send mail to would be foovax!barbox!user.

User barbox!user would generally publish their UUCP email address in a form such as …!bigsite!foovax!barbox!user. This directs people to route their mail to machine bigsite (presumably a well-known and well-connected machine accessible to everybody) and from there through the machine foovax to the account of user user on barbox. Publishing a full path would be pointless, because it would be different, depending on where the sender was. (e.g. Ann at one site may have to send via path gway!tcol!canty!uoh!bigsite!foovax!barbox!user, whereas from somewhere else, Bill has to send via the path pdp10!router22!bigsite!foovax!barbox!user). Many users would suggest multiple routes from various large well-known sites, providing even better and perhaps faster connection service from the mail sender.

Bang path

An email address of this form was known as a bang path. Bang paths of eight to ten machines (or hops) were not uncommon in 1981, and late-night dial-up UUCP links could cause week-long transmission times. Bang paths were often selected by both transmission time and reliability, as messages would often get lost. Some hosts went so far as to try to "rewrite" the path, sending mail via "faster" routes—this practice tended to be frowned upon.

The "pseudo-domain" ending .uucp was sometimes used to designate a hostname as being reachable by UUCP networking, although this was never formally registered in the domain name system (DNS) as a top-level domain. The uucp community administered itself and did not mesh well with the administration methods and regulations governing the DNS; .uucp works where it needs to[where?]; some hosts[which?] punt mail out of SMTP queue into uucp queues on gateway machines if a .uucp address is recognized on an incoming SMTP connection.[citation needed]

Usenet traffic was originally transmitted over the UUCP protocol using bang paths. These are still in use within Usenet message format Path header lines. They now have only an informational purpose, and are not used for routing, although they can be used to ensure that loops do not occur.

In general, like other older e-mail address formats, bang paths have now been superseded by the "@ notation", even by sites still using UUCP. A UUCP-only site can register a DNS domain name, and have the DNS server that handles that domain provide MX records that cause Internet mail to that site to be delivered to a UUCP host on the Internet that can then deliver the mail to the UUCP site.

UUCPNET and mapping

UUCPNET was the name for the totality of the network of computers connected through UUCP. This network was very informal, maintained in a spirit of mutual cooperation between systems owned by thousands of private companies, universities, and so on. Often, particularly in the private sector, UUCP links were established without official approval from the companies' upper management. The UUCP network was constantly changing as new systems and dial-up links were added, others were removed, etc.

The UUCP Mapping Project was a volunteer, largely successful effort to build a map of the connections between machines that were open mail relays and establish a managed namespace. Each system administrator would submit, by e-mail, a list of the systems to which theirs would connect, along with a ranking for each such connection. These submitted map entries were processed by an automatic program that combined them into a single set of files describing all connections in the network. These files were then published monthly in a newsgroup dedicated to this purpose. The UUCP map files could then be used by software such as "pathalias" to compute the best route path from one machine to another for mail, and to supply this route automatically. The UUCP maps also listed contact information for the sites, and so gave sites seeking to join UUCPNET an easy way to find prospective neighbors.

Connections with the Internet

Many UUCP hosts, particularly those at universities, were also connected to the Internet in its early years, and e-mail gateways between Internet SMTP-based mail and UUCP mail were developed. A user at a system with UUCP connections could thereby exchange mail with Internet users, and the Internet links could be used to bypass large portions of the slow UUCP network. A "UUCP zone" was defined within the Internet domain namespace to facilitate these interfaces.

With this infrastructure in place, UUCP's strength was that it permitted a site to gain Internet e-mail and Usenet connectivity with only a dial-up modem link to another cooperating computer. This was at a time when true Internet access required a leased data line providing a connection to an Internet Point of Presence, both of which were expensive and difficult to arrange. By contrast, a link to the UUCP network could usually be established with a few phone calls to the administrators of prospective neighbor systems. Neighbor systems were often close enough to avoid all but the most basic charges for telephone calls.

Remote commands

uux is remote command execution over UUCP. The uux command is used to execute a command on a remote system, or to execute a command on the local system using files from remote systems. The command is run by the uucico daemon, which handles remote execution requests as simply another kind of file to batch-send to the remote system whenever a next-hop node is available. The remote system will then execute the requested command and return the result, when the original system is available. Both of these transfers may be indirect, via multi-hop paths, with arbitrary windows of availability. Even when executing a command on an always-available neighbor, uux is not instant.

Decline

UUCP usage began to die out with the rise of Internet service providers offering inexpensive SLIP and PPP services. The UUCP Mapping Project was formally shut down in late 2000.

The UUCP protocol has now mostly been replaced by the Internet TCP/IP based protocols SMTP for mail and NNTP for Usenet news.

In July 2012, Dutch Internet provider XS4ALL closed down its UUCP service, claiming it was "probably one of the last providers in the world that still offered it"; it had only 13 users at that time (prior to its shut-down it had refused requests from new users for several years).[15]

Current uses and legacy

One surviving feature of UUCP is the chat file format, largely inherited by the Expect software package.

UUCP was in use over special-purpose high cost links (e.g. marine satellite links) long after its disappearance elsewhere,[16] and still remains in legacy use.[citation needed] In addition to legacy use, in 2021 new and innovative UUCP uses are growing, especially for telecommunications in the HF band, for example, for communities in the Amazon rainforest for email exchange and other uses. A patch to Ian's UUCP was contributed to UUCP Debian Linux package[17] to adapt for the HERMES (High-Frequency Emergency and Rural Multimedia Exchange System) project, which provides UUCP HF connectivity.[18]

In the mid 2000s, UUCP over TCP/IP (often encrypted, using the SSH protocol[10]) was proposed[according to whom?] for use when a computer does not have any fixed IP addresses but is still willing to run a standard mail transfer agent (MTA) like Sendmail or Postfix.

Bang-like paths are still in use within the Usenet network, though not for routing; they are used to record, in the header of a message, the nodes through which that message has passed, rather than to direct where it will go next.[19] "Bang path" is also used as an expression for any explicitly specified routing path between network hosts. That usage is not necessarily limited to UUCP, IP routing, email messaging, or Usenet.

The concept of delay-tolerant networking protocols was revisited in the early 2000s.[20] Similar techniques as those used by UUCP can apply to other networks that experience delay or significant disruption.

See also

References

  1. ^ UNIX(TM) TIME-SHARING SYSTEM: UNIX PROGRAMMER'S MANUAL, Seventh Edition, Volume 1 (PDF). Murray Hill, New Jersey: Bell Telephone Laboratories, Incorporated. January 1979. Archived (PDF) from the original on 2016-04-29. Retrieved 2018-02-20.
  2. ^ "Aminet - Search".
  3. ^ McIlroy, M. D. (1987). A Research Unix reader: annotated excerpts from the Programmer's Manual, 1971–1986 (PDF) (Technical report). CSTR. Bell Labs. 139. Archived (PDF) from the original on 2017-11-11. Retrieved 2015-02-01.
  4. ^ "Version 7 Unix manual: "UUCP Implementation Description" by D. A. Nowitz, and "A Dial-Up Network of UNIX Systems" by D. A. Nowitz and M. E. Lesk" (PDF). Archived (PDF) from the original on 2018-02-21. Retrieved 2018-02-21.
  5. ^ Houlder, Peter (19 January 2007). "Starting the Commercial Internet in the UK" (PDF). 6th UK Network Operators' Forum. Retrieved 2020-02-12.
  6. ^ Reid, Jim (3 April 2007). "Networking in UK Academia ~25 Years Ago" (PDF). 7th UK Network Operators' Forum. Retrieved 2020-02-12.
  7. ^ Gary J. Murakami (September 24, 1988). "The History of ihnp4 and The Growth of the Email Network". Archived from the original on September 11, 2013. Retrieved June 7, 2013.
  8. ^ Ian Lance Taylor (September 1991). "Beta release of new UUCP package available". Retrieved 2009-01-19.
  9. ^ Ian Lance Taylor (June 2003). "UUCP 'f' Protocol". Archived from the original on 2008-07-18. Retrieved 2008-08-04.
  10. ^ a b Fabien Penso. "UUCPssh". Archived from the original on 2009-09-30. Retrieved 2009-08-09.
  11. ^ a b c d e f g Taylor, Ian Lance (8 March 1996). "UUCP Internals Frequently Asked Questions". Archived from the original on 6 November 2019. Retrieved 29 August 2020.
  12. ^ Kirksey, Kenneth (25 December 1991). "What You Need To Know About Modems". Archived from the original on 24 October 2020. Retrieved 29 August 2020. The actual throughput is around 14400 bps.
  13. ^ Talbot, Stephen (February 1988). UUCP Management Guide, Rev C. User Manuals. Massachusetts Computer Corporation.
  14. ^ Cerf, Vint (20 March 2022). "[Internet Policy] Why the World Must Resist Calls to Undermine the Internet". IETF-Discussion (Mailing list). Retrieved 24 March 2022.
  15. ^ Huijbregts, Niels (30 July 2012). "XS4ALL Weblog: Afscheid van UUCP (Goodbye to UUCP)" (in Dutch). XS4ALL. Archived from the original on 31 July 2013.
  16. ^ Randolph Bentson (August 1995). "Linux Goes To Sea". Archived from the original on 2008-02-26. Retrieved 2009-02-21.
  17. ^ Rafael Diniz (January 2021). "UUCP 1.07.27-changelog". Archived from the original on 2020-08-12. Retrieved 2021-01-10.
  18. ^ Rafael Diniz (January 2021). "High-frequency Emergency and Rural Multimedia Exchange System". Retrieved 2021-01-10.
  19. ^ K. Murchison; C. Lindsey; D. Kohn (November 2009). "Path". Netnews Article Format. IETF. p. 14-16. sec. 3.1.5. doi:10.17487/RFC5536. RFC 5536.
  20. ^ Kevin Fall (August 2003). "A Delay-Tolerant Network Architecture for Challenged Internets". Proceedings of the 2003 conference on Applications, technologies, architectures, and protocols for computer communications - SIGCOMM '03. 2003 Conference on Applications, Technologies, Architectures, and Protocols for Computer Communications. ACM SIGCOMM. pp. 27–34. doi:10.1145/863955.863960. ISBN 978-1-58113-735-4.

Read other articles:

For the waterfall on Ellicott Creek, Williamsville, see Glen Falls (New York). City in New York, United StatesGlens FallsCityCentennial Circle, a five-leg roundabout in downtown Glens FallsNickname(s): Hometown U.S.A., Empire CityLocation of Glens Falls in Warren CountyGlens FallsLocation in New York (state)Show map of New YorkGlens FallsLocation within the United StatesShow map of the United StatesCoordinates: 43°18′44″N 73°38′54″W / 43.31222°N 73.64833°W…

National Bolshevik of Russian-Ugandan descent Beness AijoБенес АйоAijo in 2020Personal detailsBorn (1979-06-08) 8 June 1979 (age 44)Rēzekne, Latvian SSR, Soviet UnionCitizenshipLatvia (until 2023)Russia (since 2022)Political partyThe Other Russia of E. V. LimonovOther politicalaffiliations Communist Party of the Russian Federation(from c. 2021) Communist Party of Great Britain (Marxist–Leninist)(in the United Kingdom, from c. 2006) National Bolshevik Party(1998–2007) Alma mater…

Camphre         Structure du camphre Identification Nom UICPA 1,7,7-triméthylbicyclo[2,2,1]heptan-2-one Synonymes 2-bornanone2-camphanone No CAS 76-22-2 (±) No ECHA 100.000.860 No CE 200-945-0 FEMA 4513 Apparence cristaux incolores ou blancs, d'odeur caractéristique[1]. Propriétés chimiques Formule C10H16O  [Isomères] Masse molaire[2] 152,233 4 ± 0,009 4 g/mol C 78,9 %, H 10,59 %, O 10,51…

  لمعانٍ أخرى، طالع أكتوبر (توضيح). أكتوبرمعلومات عامةصنف فرعي من شهر في التقويم الميلادي(الجريجوري) جزء من تقويم يوليانيتقويم ميلاديالتقويم السويدي الاسم октября (بالروسية) października (بالبولندية) кастрычніка (بالتاراتسكييفيتسا) سُمِّي باسم 8أصفرشتاء الفهرس الزمني 9٫5 شه…

1941 filmNotes to YouLobby cardDirected byI. FrelengStory byMichael MalteseProduced byLeon SchlesingerStarringMel BlancEdited byTreg BrownMusic byCarl W. StallingAnimation byManuel PerezBackgrounds byPaul JulianColor processBlack and White (Colored hand drawn and digitally from the 1960s and 1990s respectively)ProductioncompanyLeon Schlesinger ProductionsDistributed byWarner Bros. PicturesRelease date September 20, 1941 (1941-09-20) Running time7:14LanguageEnglish Notes to You is …

Steinbrunn-le-Hautcomune Steinbrunn-le-Haut – Veduta LocalizzazioneStato Francia RegioneGrand Est Dipartimento Alto Reno ArrondissementMulhouse CantoneBrunstatt TerritorioCoordinate47°40′N 7°21′E / 47.666667°N 7.35°E47.666667; 7.35 (Steinbrunn-le-Haut)Coordinate: 47°40′N 7°21′E / 47.666667°N 7.35°E47.666667; 7.35 (Steinbrunn-le-Haut) Superficie9,26 km² Abitanti609[1] (2009) Densità65,77 ab./km² Altre informazioniCod.…

Piala SwediaMulai digelar1941Wilayah SwediaJumlah tim96 (2012–13)Juara bertahanIFK GöteborgTim tersuksesMalmö FF(14 gelar)Televisi penyiarTV4Situs webSvenska Cupen Piala Swedia 2013–14 Piala Swedia (bahasa Swedia: Svenska Cupen), adalah kejuaraan nasional sepak bola di Swedia. Mulai diselenggarakan sejak 1941, pemenangnya berhak mengikuti Liga Eropa UEFA pada musim berikutnya. Daftar juara Key Juara juga memenangkan Liga Swedia pada musim yang sama Klub yang bermain di luar divisi…

Ларарий с изображением божеств-покровителей дома: родовой гений (в центре) в окружении двух ларов со змеем-хранителем внизу Ни́зшая мифоло́гия — сфера мифологических представлений, относящихся к персонажам, которые не имеют божественного статуса, демонам и духам, и пр…

Auto racing team MazdaspeedCompany typeSubsidiaryIndustry Automotive engineering Motorsport Founded1967HeadquartersHiroshima, JapanArea servedWorldwideProductsAutomobileParentMazda Mazdaspeed (マツダスピード, Matsudasupīdo) (often stylized in all-caps as MAZDASPEED) was Mazda's in-house performance division. The company was a grassroots racing team in Japan. Owned by Mazda Motor Corporation, they built production model vehicles, became involved in motorsports development, and offered per…

† Стеллерова корова Муляж стеллеровой коровы в Лондонском музее естествознания Научная классификация Домен:ЭукариотыЦарство:ЖивотныеПодцарство:ЭуметазоиБез ранга:Двусторонне-симметричныеБез ранга:ВторичноротыеТип:ХордовыеПодтип:ПозвоночныеИнфратип:Челюстноро…

Approach to restricting system access to authorized users This article's lead section may be too short to adequately summarize the key points. Please consider expanding the lead to provide an accessible overview of all important aspects of the article. (May 2012) In computer systems security, role-based access control (RBAC)[1][2] or role-based security[3] is an approach to restricting system access to authorized users, and to implementing mandatory access control (MAC) o…

1921–1989 political party in Romania, ruling from 1953 to 1989 Not to be confused with Communitarian Party of Romania. Romanian Communist Party Partidul Comunist RomânGeneral SecretaryGheorghe Cristescu (first)Nicolae Ceaușescu (last)Founded8 May 1921; 103 years ago (1921-05-08)Dissolved22 December 1989; 34 years ago (1989-12-22)Preceded bySocialist Party of RomaniaSucceeded byNational Salvation Front (faction, not the legal successor)[1]…

CB5

For the Cambridge postal area, see CB postal area. For the fifth game in the Crash Bandicoot series, see Crash Twinsanity. 2020 mixtape by French MontanaCB5Mixtape by French MontanaReleasedNovember 20, 2020Length55:35Label Coke Boy Bad Boy EMPIRE ProducerFrench Montana (also exec.)Harry Fraud (also exec.)1st Class808MeloArizonaslimbeatsBhawkmusicCardiakFelipe SpainForeign TeckHitmakaJasper HarrisJetsonMadeKid CultureKrueOnTheBeatLucky LoopMarlon MillerMixxPaul CouturePrezident JeffRedhoo…

Winery in Australia Not to be confused with Lindemans Brewery. Lindeman'sProduct typeWineOwnerTreasury Wine EstatesCountryAustraliaIntroduced1843WebsiteLindemans Lindeman'sLocationMacDonalds Road, Pokolbin, NSW, AustraliaCoordinates32°47′49″S 151°16′55″E / 32.796807°S 151.281884°E / -32.796807; 151.281884Wine regionHunter ValleyWebsitePokolbin site Lindeman's is an Australian wine company, owned by Treasury Wine Estates. It was founded in 1843 by Dr Henry …

Untuk album Mel Tormé / Buddy Rich dengan judul yang sama, lihat Together Again: For the First Time. Together Again For The First TimeAlbum studio karya PulleyDirilis9 Oktober 2001Direkam2001GenrePunk rock, Skate punk, Melodic hardcoreDurasi29:56LabelEpitaphProduserRyan GreeneKronologi Pulley @#!*(1999) Together Again For The First Time(2001) Matters(2004) Together Again for the First Time adalah album full-length keempat oleh grup band punk rock Pulley. Daftar lagu In Search – 2:11 Hoora…

Tuscumbia, Courtland and Decatur RailroadOverviewLocaleNorth AlabamaDates of operation1832–1850SuccessorMemphis and Charleston RailroadTechnicalTrack gauge5 ft (1,524 mm) Incorporated on January 13, 1832, the Tuscumbia, Courtland and Decatur Railroad was a railroad in Alabama, the United States. The Tuscumbia, Courtland and Decatur Railroad ran from Decatur in Morgan County through the northern half of Lawrence County through Courtland, then into Colbert County and ended in Tuscu…

Final da Liga dos Campeões da UEFA de 2016–17 Evento Liga dos Campeões da UEFA de 2016–17 Juventus Real Madrid 1 4 Data 3 de junho de 2017 Local Millennium Stadium, Cardiff, País de Gales Melhor em campo Cristiano Ronaldo Árbitro GER Felix Brych Público 65 842 Tempo 16 °C ← Anterior Próxima → 2015–16 2017–18 A Final da Liga dos Campeões da UEFA de 2016–17 foi a 62ª edição da decisão da principal competição de clubes da Europa. Ela foi disputada em 3 de junho de 2017 n…

See also: enol ether Divinyl ether Names Preferred IUPAC name (Ethenyloxy)ethene Other names divinyl ether, divinyl oxide, ethenoxyethene, vinyl ether Identifiers CAS Number 109-93-3 3D model (JSmol) Interactive image ChEBI CHEBI:81293 ChEMBL ChEMBL2105883 ChemSpider 7733 ECHA InfoCard 100.003.383 EC Number 203-720-5 KEGG C17721 PubChem CID 8024 UNII 2H2T044E11 UN number 1167 CompTox Dashboard (EPA) DTXSID5074555 InChI InChI=1S/C4H6O/c1-3-5-4-2/h3-4H,1-2H2Key: QYKIQEUNHZKYBP-UHFFFAOYSA-N SM…

Style of electronic music Not to be confused with Industrial dance music. Intelligent dance musicOther names Electronic listening music[1][2] intelligent techno[1][2] art techno[1] braindance Stylistic originsElectronicatechnoambientavant-gardeprogressiveacid housebreakbeatelectrojunglehip hopsound designCultural originsEarly 1990s, United KingdomDerivative forms Breakcore drill 'n' bass glitch microhouse wonky flashcore Other topics Acid techno ambient te…

1950 American filmAll A Bir-r-r-dDirected byI. FrelengStory byTedd Pierce[1]StarringMel BlancMusic byCarl StallingAnimation byKen ChampinVirgil RossArthur DavisEmery HawkinsGerry ChiniquyLayouts byHawley PrattBackgrounds byPaul JulianColor processTechnicolorDistributed byWarner Bros. Pictures The Vitaphone CorporationRelease date June 24, 1950 (1950-06-24) Running time7:22CountryUnited StatesLanguageEnglish All a Bir-r-r-d is a 1950 Warner Bros. Looney Tunes cartoon direct…