{"id":79720,"date":"2020-04-29T19:42:33","date_gmt":"2020-04-29T17:42:33","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5"},"modified":"2020-04-29T19:42:33","modified_gmt":"2020-04-29T17:42:33","slug":"znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5","title":{"rendered":"Significant update to the global decentralized file system IPFS 0.5","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p><noindex><a rel=\"nofollow\" href=\"https:\/\/blog.ipfs.io\/2020-04-28-go-ipfs-0-5-0\/\">Introduced<\/a><\/noindex> new release of the decentralized file system <noindex><a rel=\"nofollow\" href=\"https:\/\/ipfs.io\/\">IPFS 0.5<\/a><\/noindex> (InterPlanetary File System), forming a global versioned file storage deployed in the form of a P2P network made up of participant systems. IPFS combines ideas previously realized in systems such as Git, BitTorrent, Kademlia, SFS, and the Web, and resembles a single BitTorrent 'swarm' (peers participating in sharing) that exchanges Git objects. To access the global FS, IPFS can use the HTTP protocol or mount a virtual FS \/ipfs using the FUSE module. The reference implementation code is written in Go and <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/ipfs\/go-ipfs\">is distributed<\/a><\/noindex> under Apache 2.0 and MIT licenses. Additionally <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/ipfs\/js-ipfs\">is being developed<\/a><\/noindex> there is an implementation of the IPFS protocol in JavaScript, which can work in a browser.<\/p>\n<p>A key <noindex><a rel=\"nofollow\" href=\"https:\/\/docs.ipfs.io\/introduction\/overview\/\">feature<\/a><\/noindex> of IPFS is content addressing, where the link for accessing a file is directly tied to its contents (including the cryptographic hash of the content). IPFS has built-in support for versioning. A file's address cannot be randomly renamed; it can only change when the content changes. Similarly, it is impossible to modify a file without changing its address (the old version will remain at the previous address, and the new one will be accessible via a different address, as the hash of the file's content will change). Given that the file identifier changes with every modification, services are provided to bind permanent addresses accounting for different versions of the file, to avoid having to pass new links every time (<noindex><a rel=\"nofollow\" href=\"https:\/\/docs.ipfs.io\/guides\/concepts\/ipns\/\">IPNS<\/a><\/noindex>), or to anchor a pseudonym similar to traditional FS and DNS (<noindex><a rel=\"nofollow\" href=\"https:\/\/docs.ipfs.io\/guides\/concepts\/mfs\/\">MFS<\/a><\/noindex> (Mutable File System) and <noindex><a rel=\"nofollow\" href=\"https:\/\/docs.ipfs.io\/guides\/concepts\/dnslink\/\">DNSLink<\/a><\/noindex>).<\/p>\n<p>Similar to BitTorrent, data is directly stored on participant systems, which exchange information in a P2P manner, without relying on centralized nodes. When a file with specific content is needed, the system locates participants who have that file and delivers it from their systems in parts over multiple streams. After downloading the file to their system, a participant automatically becomes one of the points for its distribution. To identify network participants that have the desired content <noindex><a rel=\"nofollow\" href=\"https:\/\/docs.ipfs.io\/introduction\/how-ipfs-works\/\">a layer<\/a><\/noindex> a distributed hash table (<noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/%D0%A0%D0%B0%D1%81%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D1%91%D0%BD%D0%BD%D0%B0%D1%8F_%D1%85%D0%B5%D1%88-%D1%82%D0%B0%D0%B1%D0%BB%D0%B8%D1%86%D0%B0\">DHT<\/a><\/noindex>). <\/p>\n<p><center><noindex><a rel=\"nofollow\" href=\"https:\/\/camo.githubusercontent.com\/3759ceff46d10f763d6b288a574fe8edd6fd2d59\/68747470733a2f2f646f63732e676f6f676c652e636f6d2f64726177696e67732f642f652f32504143582d3176535f6e3146765375366d646d5369726b427249494569623267716867746174443961776150325f576472474e347a544e65673632305851643950393557542d49766f676e5378494964434d3575452f7075623f773d3134343626683d31303336\"><img decoding=\"async\" alt=\"Significant update to the global decentralized file system IPFS 0.5\" src=\"\/wp-content\/uploads\/2020\/04\/1eca38acb830d224dc7bfa0ca9352ee9.png\" style=\"display:block;margin: 0 auto;\" \/><\/a><\/noindex><\/center><\/p>\n<p>Essentially, IPFS can be seen as a distributed reincarnation of the Web, with addressing based on content rather than location and arbitrary names. Besides file storage and data sharing, IPFS can serve as a foundation for creating new services, such as organizing the operation of websites that are not tied to servers, or for developing distributed applications. <noindex><a rel=\"nofollow\" href=\"https:\/\/awesome.ipfs.io\/\">applications<\/a><\/noindex>.<\/p>\n<p>IPFS helps address issues such as reliable storage (if the original storage goes down, the file can be retrieved from other users' systems), resisting content censorship (blocking would require shutting down all users' systems that have a copy of the data), and enabling access in the absence of a direct internet connection or in conditions of poor signal quality (data can be downloaded through nearby peers on a local network).<\/p>\n<p>In the version <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/ipfs\/go-ipfs\/releases\/tag\/v0.5.0\">IPFS 0.5<\/a><\/noindex> , performance and reliability have been significantly improved. The public network based on IPFS has surpassed 100,000 nodes, and the changes in IPFS 0.5 reflect the protocol's adaptation to work under such conditions. The optimizations have primarily focused on enhancing the content routing mechanisms responsible for data discovery, announcing, and retrieval, as well as on improving the efficiency of the implementation of <noindex><a rel=\"nofollow\" href=\"https:\/\/docs-beta.ipfs.io\/concepts\/dht\/\">distributed hash table<\/a><\/noindex> (DHT), which provides information about nodes that have the sought data. The code related to DHT has been almost completely rewritten, significantly speeding up content search and IPNS record determination.<\/p>\n<p>In particular, the speed of data addition operations has increased by 2 times, announcing new content to the network by 2.5 times,<br \/>\ndata retrieval by 2 to 5 times, and content search by 2 to 6 times.<br \/>\nThe redesigned routing and announcement mechanisms have accelerated network operation by 2-3 times due to more efficient use of bandwidth and background traffic transfer. The next release is set to introduce transport based on the QUIC protocol, which will enable even greater performance gains by reducing delays. <\/p>\n<p>The performance has been accelerated and the reliability of the IPNS (Inter-Planetary Name System) has increased, which is used for creating permanent links to changing content. The new experimental pubsub transport has enabled us to accelerate the delivery of IPNS records by 30-40 times during testing on a network with a thousand nodes (a special simulator was developed for these experiments. <noindex><a rel=\"nofollow\" href=\"http:\/\/testground.ipfs.team\/\">P2P network<\/a><\/noindex>). The performance of the Badger layer, used for interaction with the operating system's filesystem, has approximately doubled. Thanks to support for asynchronous write operations, Badger now works 25 times faster than the old flatfs layer. Performance improvements have also affected the<br \/>\nBitswap <noindex><a rel=\"nofollow\" href=\"https:\/\/docs-beta.ipfs.io\/concepts\/bitswap\/\">, which is used for file transfer between nodes.<\/a><\/noindex>Among the functional improvements, the use of TLS for encrypting connections between clients and servers is noteworthy. Support for subdomains in the HTTP gateway has been added, allowing developers to host decentralized applications (dapps) and web content in isolated subdomains that can be used with hash addresses, IPNS, DNSLink, ENS, etc. A new namespace \/p2p has been added for data related to peer addresses (\/ipfs\/peer_id \u2192 \/p2p\/peer_id). Support for blockchain-based \"eth\" links has been introduced, which will expand the use of IPFS in distributed applications.<\/p>\n<p><center><noindex><a rel=\"nofollow\" href=\"https:\/\/blog.ipfs.io\/090-go-ipfs-0-5-0\/container-image.png\"><img decoding=\"async\" alt=\"Significant update to the global decentralized file system IPFS 0.5\" src=\"\/wp-content\/uploads\/2020\/04\/b7b19ccd62df1fe1a212811a1f30dc5c.png\" style=\"display:block;margin: 0 auto;\" \/><\/a><\/noindex><\/center><\/p>\n<p>Among the functional improvements are the use of TLS for encrypting connections between clients and servers. Support for subdomains in the HTTP gateway has been introduced \u2014 developers can host decentralized applications (dapps) and web content in isolated subdomains that can be used with hash addresses, IPNS, DNSLink, ENS, etc. A new namespace \/p2p has been added, which contains data related to peer addresses (\/ipfs\/peer_id \u2192 \/p2p\/peer_id). Support for '.eth' links based on the blockchain has been introduced, expanding the application of IPFS in distributed applications.<\/p>\n<p>FileCoin <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/filecoin-project\/go-filecoin\/releases\">, which is a layer built on top of IPFS. While IPFS allows participants to store, request, and transfer data among themselves, Filecoin is developing as a blockchain-based platform for permanent storage. Filecoin enables users with unused disk space to provide it to the network for a reward, while users needing storage can purchase it. If the need for storage disappears, the user can sell it. Thus, a storage marketplace is formed, with transactions being conducted in tokens<\/a><\/noindex>Filecoin <noindex><a rel=\"nofollow\" href=\"https:\/\/filecoin.io\/\">, generated through mining.<\/a><\/noindex>The V8 developers have introduced a decompiler for WebAssembly.<\/p>\n<p><noindex><a rel=\"nofollow\" name=\"link\"><\/a><\/noindex><\/p>\n<p>Source: <a \ncontent=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=52834\">opennet.ru<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS 0.5 (InterPlanetary File System), \u043e\u0431\u0440\u0430\u0437\u0443\u044e\u0449\u0435\u0439 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0435\u0440\u0441\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0444\u0430\u0439\u043b\u043e\u0432, \u0440\u0430\u0437\u0432\u0451\u0440\u043d\u0443\u0442\u043e\u0435 \u0432 \u0444\u043e\u0440\u043c\u0435 P2P-\u0441\u0435\u0442\u0438, \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0438\u0437 \u0441\u0438\u0441\u0442\u0435\u043c \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432. IPFS \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u0443\u0435\u0442 \u0438\u0434\u0435\u0438, \u0440\u0430\u043d\u0435\u0435 \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0432 \u0442\u0430\u043a\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445, \u043a\u0430\u043a Git, BitTorrent, Kademlia, SFS \u0438 Web, \u0438 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u0435\u0442 \u0435\u0434\u0438\u043d\u044b\u0439 &#171;\u0440\u043e\u0439&#187; BitTorrent (\u043f\u0438\u0440\u044b, \u0443\u0447\u0430\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0432 \u0440\u0430\u0437\u0434\u0430\u0447\u0435), \u043e\u0431\u043c\u0435\u043d\u0438\u0432\u0430\u044e\u0449\u0438\u0439\u0441\u044f Git-\u043e\u0431\u044a\u0435\u043a\u0442\u0430\u043c\u0438. \u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0439 \u0424\u0421 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":79721,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-79720","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0417\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0439 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS 0.5 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-04-29T17:42:33+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-04-29T17:42:33+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Significant update to the global decentralized file system IPFS 0.5 | ProHoster","description":"A new release of the decentralized file system IPFS has been presented.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0417\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0439 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS 0.5 | ProHoster","og:description":"\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b IPFS.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/znachitelnoe-obnovlenie-globalnoj-deczentralizovannoj-fajlovoj-sistemy-ipfs-0-5","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2020-04-29T17:42:33+00:00","article:modified_time":"2020-04-29T17:42:33+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"79720","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-02-28 16:32:23","updated":"2022-09-27 23:56:34","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/79720","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=79720"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/79720\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/79721"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=79720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=79720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=79720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}