Wikifunctions wikifunctionswiki https://www.wikifunctions.org/wiki/Wikifunctions:Main_Page MediaWiki 1.47.0-wmf.18 first-letter Media Special Talk User User talk Wikifunctions Wikifunctions talk File File talk MediaWiki MediaWiki talk Template Template talk Help Help talk Category Category talk TimedText TimedText talk Module Module talk Translations Translations talk Event Event talk Wikifunctions:Project chat 4 1184 309240 308791 2026-09-06T05:40:25Z Spider077 81580 /* i can create my own function? */ new section 309240 wikitext text/x-wiki {{shortcut|[[WF:CHAT]]|[[WF:PC]]|[[WF:VP]]}} __NEWSECTIONLINK__ [[Category:Help]] <!-- please do not remove this line --> Welcome to the Project chat, a place to discuss any and all aspects of Wikifunctions: the project itself, policy and proposals, individual data items, technical issues, etc. Other places to find help: * [[Wikifunctions:Administrators' noticeboard]] * [[Wikifunctions:Report a technical problem]] * [[Wikifunctions:FAQ]] {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |timeout=30 }} {{Archives|{{#tag:div|<br />{{Flatlist|{{Special:PrefixIndex/WF:Project chat/Archive/|stripprefix=1|hideredirects=1}} |class=mw-collapsible-content|style=font-size:92%;}}|class="mw-collapsible mw-collapsible-toggle mw-collapsed"}} |prefix=WF:Project chat/Archive/ }} == Contributing to language functions 1: Language Fragments == At Wikimania, @[[User:Dnshitobu|Dnshitobu]] recommended cloning a page like [[User:Dnshitobu/Dagbani Fragments]] and filling it with my own language. If I understand correctly, it's supposed to help to create functions for handling my language. I created [[User:Amire80/Hebrew Fragments]] and started filling it. There are a bunch of problems with it, but let's say that I can complete it. Is it actually useful? Once it's complete, what do I do with it? More broadly, if it is useful, is there a written guideline anywhere that recommends doing it? If I didn't visit Wikimania, I wouldn't know about it. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 22:10, 30 July 2026 (UTC) :From [[WF:Status_updates/2026-07-29#Abstract_Wikipedia_at_Wikimania|this week's newsletter]]: <q>[Dnshitobu's] main proposal is that editors can create simple wikitext tables of example fragments in their language so that others could later do the technical work of setting up the lexemes and NLG functions.</q> The next step is to correlate your example sentences to the top-level NLG functions, then add 1 or 2 test cases to each function from your table.<br>I don't believe {{noping|Dnshitobu}} wrote up the process anywhere on-wiki, but that would be worth doing. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:30, 30 July 2026 (UTC) ::OK, I can try to do it. ::However, I should mention that the examples work kind of well in English, and perhaps they work in Dagbani, but they don't translate easily into Hebrew. Different nouns need different prepositions some letters require morphology transformations and some don't, etc. It cannot really be solved with a few basic concatenations as it was probably done in English. ::The same is true for probably most other languages. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 23:49, 30 July 2026 (UTC) ::Also, who do I notify when it's ready? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:58, 31 July 2026 (UTC) :::[[WF:Requests for connection and disconnection]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 01:15, 31 July 2026 (UTC) ::::But these are not functions or implementations. These are just example strings. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 09:58, 31 July 2026 (UTC) :::::Right, you have to create test cases from them. For example, the "part of" sentences #7 and #8 correspond to [[Z34637]], so start by adding a test there. Then create a new function with the same shape as [[Z34867]] and add all your sentences to it as tests. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 17:49, 31 July 2026 (UTC) ::::::I think people should get help also if they can just write down how a fragment looks like for a specific language. So it should be not required to create a test case. So far I am not good in implementing functions in Wikifunctions. In the last days I have thinked about how to find a good way to define the fragments if the inputs are modified. This is difficult and I am not sure what is the best way. In the past I proposed [[User:Hogü-456/Decision table for Fragment experiments|decision tables]] for it. From my point of view more ideas and ways how to implement functions are needed as I expected more content in more languages in Abstract Wikipedia so far. It seems to me like it is too complicated to contribute to Wikifunctions at the moment. [[User:Hogü-456|Hogü-456]] ([[User talk:Hogü-456|talk]]) 21:31, 11 August 2026 (UTC) == On a set type == In [[WF:TP]], sets were refused as an independent type (and we are redirected towards using Typed lists). After adding many functions relative to hereditary sets and von Neumann ordinals, I believe a proper hereditary set type could be welcome on Wikifunctions. Here is the rationale behind this: * In its current state the Wikifunctions composition language lacks basic arithmetic operations. It is interesting to provide a set-based "fallback" for those, even if its performance makes it rarely used. One of Wikifunction's goals is to "Imagine a programming system that allows us to make the next big leap in knowledge representation"<ref group="set">[[Wikifunctions:About]]</ref>, having a proper representation of natural numbers is a good start. * Set operations are the basis of mathematics. Mathematically, natural numbers are typically defined with sets.<ref group="set">[[w:Set-theoretic definition of natural numbers]]</ref> Note that these mathematical sets are well defined ''hereditary sets'': sets that only contain other hereditary sets or are the empty set. * Currently Typed list(Object) is the best available representation of hereditary sets. They are however unclear (Object could be anything, while hereditary sets can't contain anything), and a pain to document: every function performing arithmetic using set representation needs to write "von Neumann ordinals represented as hereditary sets"; simply making the input type "Hereditary set" is a much cleaner and clear solution. * Hereditary sets can easily be defined as Typed list(Hereditary set). I am however unsure wether this kind of recursive type is possible in Wikifunctions. * Hereditary sets have all the characteristics of a normal type (a validator, an equality function<ref group="set">{{Z+|Z34273}}</ref>, and even type converters<ref group="set">{{Z|Z39064}}'s <code>to_set</code> function</ref>). Making a proper type for them avoids repetitive work and allow for better integration in the Wikisource ecosystem. Note that all these functions are different from their Typed list equivalents (equality ignores duplicates, type converters return set objects and not list objects). I would love to see a proper hereditary set type being discussed. If this isn't the right place, please tell me, I'm quite new to the type proposal process :) [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 20:30, 8 August 2026 (UTC) :Another use is to avoid confusion, such as between {{Z|Z34270}} and {{Z|Z34273}}, which has already caused issues before.<ref group="set">[[Talk:Z36677#Wrong set equality]]</ref> [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 20:32, 8 August 2026 (UTC) :IMO being "reliant" on code Implementations for arithmetic isn't a problem. Von Neumann ordinals are useful as a mathematical foundation but not as a computational one. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 05:18, 9 August 2026 (UTC) :After further work on von Neumann ordinals related functions, it appears Wikifunctions' builtin type converter from a Python list to a Typed list really struggles with deeply nested lists. I believe having a strong type converter for hereditary sets can really help with fast computations. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 00:06, 13 August 2026 (UTC) :I don't have the whole answer, but here's some information to start. :> Hereditary sets can easily be defined as Typed list(Hereditary set). I am however unsure wether this kind of recursive type is possible in Wikifunctions. :This is possible! All of the needed features exist in Wikifunctions. If you try to define this type and find it's not possible, then that should be filed as a bug in Wikifunctions (and one we will triage fix through the normal channels). :I also want to set some expectations. While Wikifunctions can (barring bugs?) absolutely represent a hereditary set type, operations on that type will not necessarily have the expected asymptotic performance characteristics. Generally, the ZObject language specification doesn't allow for an object to have an arbitrary number of members, so any container type will end up relying on some kind of recursively-defined structure like WF's own List type. Practically, this means that the composition language could never do something like an O(1) set lookup. :That said, I also want to point you to code converters, which would allow the hereditary set type to be converted to a more efficient representation inside of the JS and Python code executors. That's a secondary concern for after the type exists. :Happy to discuss further! [[User:CMassaro (WMF)|CMassaro (WMF)]] ([[User talk:CMassaro (WMF)|talk]]) 16:02, 13 August 2026 (UTC) ::Hi! I'm guessing the proper way to discuss this would be to make a draft type proposal? I still have some free time left on my holiday and I would love to develop that idea further :) ::I'm aware of performance limitations; my goal is to rely on composition only as some kind of ''theoretical fallback'' while all performance intensive computation is done with code implementations. That way what I make can be "well-defined" and fast at the same time (ideally...). [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:38, 13 August 2026 (UTC) :::Yes, that makes sense. Are you on IRC? #wikipedia-abstract is a very friendly and helpful group; if you're looking to make a new type, that would be a good place to get pointers. [[User:CMassaro (WMF)|CMassaro (WMF)]] ([[User talk:CMassaro (WMF)|talk]]) 09:36, 14 August 2026 (UTC) <references group="set" /> == Wikifunctions as a programming system == With [[Z38546|lambda]] and half<ref group="note">For it to be considered complete, shouldn't it take the environment in which to evaluate? Which reminds me, where's local variables in composition? Sure, it can be emulated via an [[w:Immediately invoked function expression|IIFE]], but how does that look like? So, macros as well. I look forward to how a generalized, multilingual Lisp interpreter function would look like..</ref>-of-an-[[Z38590|eval]], the runtime environment of Wikifunctions now resembles a somewhat less [[w:Greenspun's tenth rule|poor LISP]]. Whereas the runtime, as it stands now, is somewhat reminiscent of [[w:Smalltalk|Smalltalk]], [[w:Self (programming language)|Self]] and others, an [[w:object-oriented programming|object-oriented programming]] [https://arxiv.org/abs/2302.10003 ''system'']. <ref group="note">How I wish there was a Wikipedia article about programming systems in this sense... </ref> I wonder: how far/well the ''theory'' (in the sense of [[w:programming language theory|programming language theory]], [[w:semantics (programming languages)|semantics]] and such) behind Wikifunctions have been developed, whether that has been documented somewhere (beyond [[WF:Function model|Function model]]) or it still resides [[w:tacit knowledge|in the minds]] of the implementors for now, which direction<ref group="note">e.g. [[w:Metaobject#Metaobject protocol|Metaobject protocol]] (quite relevant, since it's object-oriented), higher-[[w:Kind (type theory)|kind]]ed types and so on</ref> you wish to develop this system and so on; where such discussions can take place. Among the [https://meta.wikimedia.org/wiki/Abstract_Wikipedia/Goals#Secondary_goals secondary goals] is: <q>Faster development of new programming languages due to accessing a wider standard library (or repository) of functions in a new dedicated wiki.</q> For which we should have categorized and isolated the portion of functions (and objects), to be made available seperately as self-contained/sufficient collections, that are most relevant to implementing programming languages/systems. Has (if so, how much) there already been any work in this direction? Since Wikifunctions aims to be natural-language- as well as programming-language-[[w:agnostic (data)|agnostic]], it should be agnostic of any particular representation as well. Thus it should work with different representations (whether it's the underlying (JSON) representation of the objects, the specific choice of numberings, type system or even ontology) and be convertible among equivalence classes of representations (and conceptualizations?). It's this level of generality I'm quite interested about, and wish to have some in-depth discussion (here, insofar relevant to this project and elsewhere). ---- <references group="note"/> [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 11:31, 12 August 2026 (UTC) :Hi @[[User:Smlckz|Smlckz]]! I am really interested in the viability of Wikifunctions as a programming system too, but I don't think you're in a for a great experience... While my experience here is quite limited, I worked a lot on a major issue that still bothers me: the composition language is incapable of basic arithmetic. If you look into [[Wikifunctions:Reserved ZIDs]], you'll notice that there isn't any built in implementation for addition, subtraction, and there isn't even a builtin type for Natural numbers. This leads to quite a few fundamental issues, like the fact that the built-in {{Z|80}} depends on the non-built-in {{Z|13518}}... :Strings aren't much better: the only core functions to manipulate them, {{Z|886}} and {{Z|888}} have been deprecated. :And while [[Wikifunctions:Function model]] is a great start it is out of date and is nowhere complete enough to be considered a proper specification. If you want any information as to how evaluation and the object model actually work you have to look into the Gitlab repos for the current implementation. :Last thing, the {{Z|823}} function is a total breach of purity, and allows functions to get information about there own implementation, the environment they run in, etc. This can even be used, I believe, as a source of randomness. :I have great hopes that Wikifunctions will become a strong programming system one day, but as of now, it's far behind any other functional programming languages. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 00:15, 13 August 2026 (UTC) ::I hope that folks who are interested, like you two, can help with moving in that direction. ::The development team is not focusing on that secondary goal currently. That shouldn't preclude anyone else from doing so. ::How does Z823 break purity? ::Honest question: do we need closure for anonymous functions, or is alpha conversion sufficient? --[[User:DVrandecic (WMF)|DVrandecic (WMF)]] ([[User talk:DVrandecic (WMF)|talk]]) 12:25, 13 August 2026 (UTC) :::Sorry for the use of the maybe unclear term purity, I stole it from the Nix language :) :::Purity would be the principle that the same inputs always return the same outputs, independently from the running environement. {{Z|823}} does the exact opposite by literally giving you information about the outside environment. This constitues a source of randomness that I really do not appreciate from a theoretical standpoint, as it potentially introduces painful runtime errors (race conditions even, albeit only in extreme cases) which no one likes to debug. :::I personally think that it is quite an useless function (4 uses in mainspace), but if people really want to keep it, I propose to restrict its usage to tests or make any function using it be marked as "impure" too. :::To answer your last question, I don't really understand it --- I'm sorry for showing my lack of computer science basics here :') If you wish to explain it further, I'd be happy to give you my opinion. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:44, 13 August 2026 (UTC) :::{{tq|Honest question: do we need closure for anonymous functions, or is alpha conversion sufficient?}} If we want to evolve towards a proper [[w:rewriting|rewriting]] system, conversion and reduction rules from lambda calculus might suffice. But, for now, if I have understood the current system correctly, we'd need to have closures, if only for reasons of efficiency. Imagine big, non-persistent, runtime objects, being referenced multiple times in anonymous functions, after beta reduction, to get represented with that many copies in their bodies.. (The evaluator might not be affected, but once these anonymous functions need to persist or even just pass through programming language boundaries, forcing normalization/serialization..) So, if we want to support anonymous functions as first-class objects of the kind of system we currently have, closures are essential. [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 03:09, 14 August 2026 (UTC) ::{{tq|I worked a lot on a major issue that still bothers me: the composition language is incapable of basic arithmetic.}} When anonymous functions work better, we should be able to implement [[w:Church encoding|Church numerals]] using them. Similarly, when we'll have support for sum types, we could use that to implement [[w:Peano axioms|Peano arithmetic]] (as linked list of unit type). While these are interesting for theoretical purposes, we can't rely on them in practice, due to the kind of runtime we have here; it'd be too inefficient for any non-trivial use. Like functions can have multiple implementations, types could do the same, giving rise to typeclasses.. <small>The aspiration towards purity gives rise to expectations of realization of [[w:Curry–Howard correspondence|program-proof equivalence]], in having proofs of theorems hosted alongside ordinary functions (and perhaps proofs of correctness of such ordinary functions), but that's too far in the future for us to consider.</small> We can then have performant implementations of types alongside theoretically interesting ones. {{tq|This leads to quite a few fundamental issues, like the fact that the built-in {{Z|80}} depends on the non-built-in {{Z|13518}}...}} Which does sound quite backwards. I'd've expected to see a built-in natural number type, with byte defined as a derived type out of it. (For comparison, here's what Common Lisp came up with: [https://metaspec.dev/t_integer.html] [https://metaspec.dev/t_unsigned-byte.html]) {{tq|Last thing, the {{Z|823}} function is a total breach of purity, and allows functions to get information about there own implementation, the environment they run in, etc.}} This information can also be used to choose more performant (or, for a particular environment, a better-suited) implementation amongst available. I don't expect this system to be able uphold the level of purity expected from a purely functional programming language, but only up to a certain degree: that most functions won't directly need to rely on such escape hatches. (Compare Rust's <code>unsafe</code>. Similarly, consider the caveats of [https://wiki.haskell.org/index.php?title=Hask '''Hask'''].) [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 17:41, 13 August 2026 (UTC) :::Church numerals are an idea I love, and Peano arithmetic too! My initial attempt with von Neumann ordinals quickly stopped because of speed concerns :') Typeclasses is an idea I had a while ago (although I phrased it as Single Type, Multiple Representations) and could further improve Wikifunctions' abstractness and maybe even performance. I agree the lack of a number type is a major flaw in the system. Last point, I think implementation choice should mostly be done by the system automatically; what you call <code>unsafe</code> is similar to the concept of impurity in Nix, where calling an impure function makes the function calling it impure too. I believe an automatic explicit visible marking of such impure functions could help prevent their abusive use. :::Given that some people seem interested in the ideas we discussed but it isn't a main focus at the moment, would you like us to discuss further ideas such as the writing of a formal Wikifunctions ''specification'', some new type proposals for an integer type, and maybe even develop the idea of typeclasses? :::If you'd like a more dynamic discussion I have Discord if needed (hope it's not illegal to say that!) [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:52, 13 August 2026 (UTC) ::::I'd like to discuss, along with participation from implementors, such that we don't build [[wikt:castle in the air|castle in the air]]. With how things are in flux, designing a specification now might not be a good idea. At least, we'd need multiple competing full-featured implementations such that the need for specification can naturally arise. We can certainly discuss existing implementations of various programming systems: what to pick, what to discard and what to innovate in our circumstances.. <small><small>I don't use Discord. You can talk with me on [[w:IRC|IRC]]: find me in the Libera.chat channel <code>#wikipedia-abstract</code>. If you don't have an IRC client set up, you can use Libera's [https://libera.chat/guides/clients web clients]. Mention the time (with timezone) you'll be available. We can discuss which (better or worse) protocol/platform to use for further communication there. </small></small> [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 04:16, 14 August 2026 (UTC) :::::I do have IRC! <code>virinas-code</code>, I use the Konversation client. You do seem to have a lot more experience than me with functional programming so I'll be happy to discuss ideas with you :) :::::I'm typically available from 2PM to 8PM and from 11PM to 2AM-4AM in the Europe/Paris timezone. I think one of the first thing we should do is fix the built-in lack of a number type. A specification can come much later, but we do need to reinforce existing documentation (e.g. by completing [[Wikifunctions:Function model]]). [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 12:48, 14 August 2026 (UTC) == A proposal on number types on the Wikifunctions project == Hi! We'd like to submit our proposal surrounding the status of numbers in the Wikifunctions ecosystem, '''[[Wikifunctions:Proposal for built-in number types]]'''! We're open to discussion, advice, ideas, and so on. What we propose, while important, is complex and requires proper approval before we begin thinking about implementing it. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 15:10, 17 August 2026 (UTC) == person lead sentence configuration == A newly-solved phabricator task now means that {{Z|Z38757}} can work well. I think it's well-defined and has enough arguments to work for most people. The exception is those with Julian dates for birth/death (we still don't have a Julian type, so can't import Julian WD values). Please configure {{Z|Z32826}} in your language! Wherever possible, follow the language wiki manual of style for this lead sentence. Please make noise if there's a conceptual/definitional problem for your language. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:13, 20 August 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #261: Mayors and the North == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-08-20|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we have an essay from Denny about accidental gaps in languages, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 09:41, 21 August 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30928401 --> :Coincidentally, I just made [[abstract:Q2262318|an abstract article]] for a different government gato... the initial idea was to write about [[d:Q379362|a racehorse]], but maybe I was subconsciously influenced by reading this when Denny posted it on the RfC earlier.<br>reː translatability of {{tq|San Francisco is the cultural centre of Northern California}}, it was always a stupid question. "Northern California" together is the toponym, and "cultural centre" together refer to a concept (not one in WD as far as I can tell, but the concepts of [[d:Q1066984|financial]] and [[d:Q676050|historic]] centres exist there). So there's no need for "North" as an absolute direction or "centre" as a relative position. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:40, 21 August 2026 (UTC) ::"Northern California" is not a stupid question. The preferred way of describing locations varies from culture to culture. For example, a riverine culture might consider the most important aspect of its location to be "at the mouth of the Sacramento River", while an island culture might describe it as "on the coast of North America". "Northern California" is the map-centric description of its location. ::Even within map-centric cultures, the borders vary. For example, when preparing a test case for Z26570, I discovered that Spanish places the United Arab Emirates in "Oriente Próximo", and "Oriente Medio" is seen as an Americanism to be avoided. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 21:52, 21 August 2026 (UTC) :::You've missed the pointː the labels for items, including {{Q|1066807}}, have no restrictions and don't have to be word-for-word translations of the {{P|1705}}. {{Q|956}} is not "Northern Capital" and {{Q|500453}} is not "Leeward Islands". ''Describing'' where a place is in relation to other places is a separate problem ({{P|47}} + {{P|654}} qual. seems to be how that's modelled, so that might be limiting for some languages). Choosing how to group countries/regions is a separate problem (there's a {{Q|48214}}, but {{Q|878}}:{{P|361}}={{Q|7204}} only). [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 06:39, 22 August 2026 (UTC) == Japanese is not suggested in the language selector when using uselang=ja == {{phab|T435712}} It seems that the language selector does not always suggest Japanese even when the interface language is Japanese (uselang=ja). For example, when most languages have already been added and the dropdown only shows a couple of suggested languages, Japanese may not be among them. If I type "日本語" manually, it appears and can be selected normally, so the language itself is available; it is only missing from the initial suggestions. As I understand it, the selector is supposed to prioritize the user's/interface language among the suggested languages. This may be related to [[phab:T391130]]. Is this expected behavior, or should Japanese be suggested when the UI language is Japanese? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 14:04, 22 August 2026 (UTC) :Are you referring to the autocomplete on [[Z60]]-typed reference selectors, for example on [[Z31676]]? It's the [[d:Q1065#P37|6 UN languages]], but including the current UI language is a good idea. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 14:42, 22 August 2026 (UTC) ::Yes, that's correct. Including the current UI language would make the translation work easier. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 14:45, 22 August 2026 (UTC) == Language-specific guideline pages == Is it possible to create guideline pages for each language, or do they already exist? Rather than translating a single English page using the Translate extension, it would be better to have standalone pages (subpages are acceptable). Naming conventions and similar rules in each language are almost always different from English rules. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 07:04, 23 August 2026 (UTC) :&rarr; [[WT:Naming conventions#Per-language pages]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 08:39, 23 August 2026 (UTC) ::Thank you (I didn't know that discussion exists). I'll write a draft for naming conventions for Japanese. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 08:48, 23 August 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #262: Wikifunctions Object Reference == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-08-28|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we discuss a new Type implemented after a community request, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 12:32, 28 August 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30951652 --> == Draft policy for language fallback strategies == [[Help:Language fallback]]<br>I'd appreciate any comments, but I'm particularly seeking approval for this planned mass edit: * '[[Z25065|limited]]' in all [[:Category:Display functions]] * '[[Z14310|none]]' in all [[:Category:Reading functions]] * '[[Z25065|limited]]' in all [[:Category:Abstract description functions]] * NEW STRATEGY '[[Z40583|insistent]]' in all [[:Category:Semantic fragment functions]] (including the ones I haven't categorised yet) * '[[Z40583|insistent]]' in all [[:Category:Hatnote functions]] * '[[Z40583|insistent]]' in all [[:Category:Multilingual captioned image functions]] * '[[Z14310|none]]' in all [[:Category:Conjugation tables]] * '[[Z14310|none]]' in all {{Z|36462}}-producing functions? {{ping|Denny|p=}} * '[[Z25065|limited]]' in everything else: punctuation helpers, lexeme and inflection helpers, partial sentence functions... [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:42, 30 August 2026 (UTC) :I am happy that see that you want to structure the language fallback strategies. I can't oversee the consequences, but I trust you in this plan. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:46, 30 August 2026 (UTC) ::At first read, the policy looks great (even if a person speaking fr-CA will probably be angry with that example, despite being largely true). I also approve the planned mass edit so far, it's good to test that. Thanks for the work! [[User:Ornithorynque liminaire|Ornithorynque liminaire (she/they)]] ([[User talk:Ornithorynque liminaire|talk]]) 16:20, 30 August 2026 (UTC) :::It would also be very great to have a schema and more examples so the policy could be more understandable for newcomers. [[User:Ornithorynque liminaire|Ornithorynque liminaire (she/they)]] ([[User talk:Ornithorynque liminaire|talk]]) 16:22, 30 August 2026 (UTC) :None for the Syntactic tables is a good idea, I think that one will go from experimental right to deprecated anyway. I am not sure yet about the Semantic fragment functions, and would like to see the effect once we have a few more. --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:48, 3 September 2026 (UTC) == New visualisation templates to help editors navigate {{Z|14294}} == I've got {{Z|40885}} mostly working and I hacked together a version of [[Z40902|a tree view]] that's usable: take a look at [[Talk:Z25091]] and [[Talk:Z39262]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 02:35, 3 September 2026 (UTC) == Native implementations reading Z12 labels broken after recent deploy == {{tracked|T436918}} Native (JS/Python) implementations that read labels from their argument now get an empty <code>Z12K1</code>, so they return 0 items. Composition implementations are unaffected. Example: {{Z|Z24116}} (JS impl of {{Z|Z24114}}) with Q1 + [en, mul] returns 0 items, while composition {{Z|Z26569}} returns <code>["universe"]</code>. Cause: orchestrator commit [https://gitlab.wikimedia.org/repos/abstract-wiki/wikifunctions/function-orchestrator/-/commit/beb111db6c "Strip Z12 labels when resolving WFObjects"] (Aug 26), deployed in the 2026-09-02 services deploy. <code>fullyRealize()</code> now strips <code>Z12K1</code>, and native implementation arguments go through it (<code>WFImplementation.js</code>). I've temporarily disconnected Z24116/Z24770 from Z24114 so the working composition Z26569 is used. Question: Is stripping labels from native arguments intentional? How should native code access labels going forward? (FYI: Z24114 tester {{Z|Z36529}} is separately failing; Q30 has no <code>no</code> label; it's under <code>nb</code>/<code>nn</code> now.) [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 08:49, 3 September 2026 (UTC) :{{Z|Z23769}} is also broken. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 09:46, 3 September 2026 (UTC) :It was intentional to remove some, but not intentional to remove all (or at least we didn't understand the effect). The development team are aware. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 09:58, 3 September 2026 (UTC) :Should now be fixed. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:20, 4 September 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #263: 5,000 Functions, passing Z40000 == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-09-03|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we mark the 5,000th function on Wikifunction, we explore a new Type for functions, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Also, we remind you that if you have questions or ideas to discuss, the next '''Volunteers' Corner''' will be held on '''[https://zonestamp.toolforge.org/1788802200 September 7, at 17:30 UTC]''' ([https://meet.google.com/xuy-njxh-rkw link to the meeting]). Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 11:00, 4 September 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30951652 --> == i can create my own function? == i need enable my implementation for my function Z38065 [[User:Spider077|Spider077]] ([[User talk:Spider077|talk]]) 05:40, 6 September 2026 (UTC) 5rregmpdafc74y80lyhrb98amgcg94t 309457 309240 2026-09-06T10:24:57Z GrounderUK 50 /* i can create my own function? */ Reply 309457 wikitext text/x-wiki {{shortcut|[[WF:CHAT]]|[[WF:PC]]|[[WF:VP]]}} __NEWSECTIONLINK__ [[Category:Help]] <!-- please do not remove this line --> Welcome to the Project chat, a place to discuss any and all aspects of Wikifunctions: the project itself, policy and proposals, individual data items, technical issues, etc. Other places to find help: * [[Wikifunctions:Administrators' noticeboard]] * [[Wikifunctions:Report a technical problem]] * [[Wikifunctions:FAQ]] {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |timeout=30 }} {{Archives|{{#tag:div|<br />{{Flatlist|{{Special:PrefixIndex/WF:Project chat/Archive/|stripprefix=1|hideredirects=1}} |class=mw-collapsible-content|style=font-size:92%;}}|class="mw-collapsible mw-collapsible-toggle mw-collapsed"}} |prefix=WF:Project chat/Archive/ }} == Contributing to language functions 1: Language Fragments == At Wikimania, @[[User:Dnshitobu|Dnshitobu]] recommended cloning a page like [[User:Dnshitobu/Dagbani Fragments]] and filling it with my own language. If I understand correctly, it's supposed to help to create functions for handling my language. I created [[User:Amire80/Hebrew Fragments]] and started filling it. There are a bunch of problems with it, but let's say that I can complete it. Is it actually useful? Once it's complete, what do I do with it? More broadly, if it is useful, is there a written guideline anywhere that recommends doing it? If I didn't visit Wikimania, I wouldn't know about it. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 22:10, 30 July 2026 (UTC) :From [[WF:Status_updates/2026-07-29#Abstract_Wikipedia_at_Wikimania|this week's newsletter]]: <q>[Dnshitobu's] main proposal is that editors can create simple wikitext tables of example fragments in their language so that others could later do the technical work of setting up the lexemes and NLG functions.</q> The next step is to correlate your example sentences to the top-level NLG functions, then add 1 or 2 test cases to each function from your table.<br>I don't believe {{noping|Dnshitobu}} wrote up the process anywhere on-wiki, but that would be worth doing. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 22:30, 30 July 2026 (UTC) ::OK, I can try to do it. ::However, I should mention that the examples work kind of well in English, and perhaps they work in Dagbani, but they don't translate easily into Hebrew. Different nouns need different prepositions some letters require morphology transformations and some don't, etc. It cannot really be solved with a few basic concatenations as it was probably done in English. ::The same is true for probably most other languages. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 23:49, 30 July 2026 (UTC) ::Also, who do I notify when it's ready? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:58, 31 July 2026 (UTC) :::[[WF:Requests for connection and disconnection]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 01:15, 31 July 2026 (UTC) ::::But these are not functions or implementations. These are just example strings. [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 09:58, 31 July 2026 (UTC) :::::Right, you have to create test cases from them. For example, the "part of" sentences #7 and #8 correspond to [[Z34637]], so start by adding a test there. Then create a new function with the same shape as [[Z34867]] and add all your sentences to it as tests. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 17:49, 31 July 2026 (UTC) ::::::I think people should get help also if they can just write down how a fragment looks like for a specific language. So it should be not required to create a test case. So far I am not good in implementing functions in Wikifunctions. In the last days I have thinked about how to find a good way to define the fragments if the inputs are modified. This is difficult and I am not sure what is the best way. In the past I proposed [[User:Hogü-456/Decision table for Fragment experiments|decision tables]] for it. From my point of view more ideas and ways how to implement functions are needed as I expected more content in more languages in Abstract Wikipedia so far. It seems to me like it is too complicated to contribute to Wikifunctions at the moment. [[User:Hogü-456|Hogü-456]] ([[User talk:Hogü-456|talk]]) 21:31, 11 August 2026 (UTC) == On a set type == In [[WF:TP]], sets were refused as an independent type (and we are redirected towards using Typed lists). After adding many functions relative to hereditary sets and von Neumann ordinals, I believe a proper hereditary set type could be welcome on Wikifunctions. Here is the rationale behind this: * In its current state the Wikifunctions composition language lacks basic arithmetic operations. It is interesting to provide a set-based "fallback" for those, even if its performance makes it rarely used. One of Wikifunction's goals is to "Imagine a programming system that allows us to make the next big leap in knowledge representation"<ref group="set">[[Wikifunctions:About]]</ref>, having a proper representation of natural numbers is a good start. * Set operations are the basis of mathematics. Mathematically, natural numbers are typically defined with sets.<ref group="set">[[w:Set-theoretic definition of natural numbers]]</ref> Note that these mathematical sets are well defined ''hereditary sets'': sets that only contain other hereditary sets or are the empty set. * Currently Typed list(Object) is the best available representation of hereditary sets. They are however unclear (Object could be anything, while hereditary sets can't contain anything), and a pain to document: every function performing arithmetic using set representation needs to write "von Neumann ordinals represented as hereditary sets"; simply making the input type "Hereditary set" is a much cleaner and clear solution. * Hereditary sets can easily be defined as Typed list(Hereditary set). I am however unsure wether this kind of recursive type is possible in Wikifunctions. * Hereditary sets have all the characteristics of a normal type (a validator, an equality function<ref group="set">{{Z+|Z34273}}</ref>, and even type converters<ref group="set">{{Z|Z39064}}'s <code>to_set</code> function</ref>). Making a proper type for them avoids repetitive work and allow for better integration in the Wikisource ecosystem. Note that all these functions are different from their Typed list equivalents (equality ignores duplicates, type converters return set objects and not list objects). I would love to see a proper hereditary set type being discussed. If this isn't the right place, please tell me, I'm quite new to the type proposal process :) [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 20:30, 8 August 2026 (UTC) :Another use is to avoid confusion, such as between {{Z|Z34270}} and {{Z|Z34273}}, which has already caused issues before.<ref group="set">[[Talk:Z36677#Wrong set equality]]</ref> [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 20:32, 8 August 2026 (UTC) :IMO being "reliant" on code Implementations for arithmetic isn't a problem. Von Neumann ordinals are useful as a mathematical foundation but not as a computational one. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 05:18, 9 August 2026 (UTC) :After further work on von Neumann ordinals related functions, it appears Wikifunctions' builtin type converter from a Python list to a Typed list really struggles with deeply nested lists. I believe having a strong type converter for hereditary sets can really help with fast computations. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 00:06, 13 August 2026 (UTC) :I don't have the whole answer, but here's some information to start. :> Hereditary sets can easily be defined as Typed list(Hereditary set). I am however unsure wether this kind of recursive type is possible in Wikifunctions. :This is possible! All of the needed features exist in Wikifunctions. If you try to define this type and find it's not possible, then that should be filed as a bug in Wikifunctions (and one we will triage fix through the normal channels). :I also want to set some expectations. While Wikifunctions can (barring bugs?) absolutely represent a hereditary set type, operations on that type will not necessarily have the expected asymptotic performance characteristics. Generally, the ZObject language specification doesn't allow for an object to have an arbitrary number of members, so any container type will end up relying on some kind of recursively-defined structure like WF's own List type. Practically, this means that the composition language could never do something like an O(1) set lookup. :That said, I also want to point you to code converters, which would allow the hereditary set type to be converted to a more efficient representation inside of the JS and Python code executors. That's a secondary concern for after the type exists. :Happy to discuss further! [[User:CMassaro (WMF)|CMassaro (WMF)]] ([[User talk:CMassaro (WMF)|talk]]) 16:02, 13 August 2026 (UTC) ::Hi! I'm guessing the proper way to discuss this would be to make a draft type proposal? I still have some free time left on my holiday and I would love to develop that idea further :) ::I'm aware of performance limitations; my goal is to rely on composition only as some kind of ''theoretical fallback'' while all performance intensive computation is done with code implementations. That way what I make can be "well-defined" and fast at the same time (ideally...). [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:38, 13 August 2026 (UTC) :::Yes, that makes sense. Are you on IRC? #wikipedia-abstract is a very friendly and helpful group; if you're looking to make a new type, that would be a good place to get pointers. [[User:CMassaro (WMF)|CMassaro (WMF)]] ([[User talk:CMassaro (WMF)|talk]]) 09:36, 14 August 2026 (UTC) <references group="set" /> == Wikifunctions as a programming system == With [[Z38546|lambda]] and half<ref group="note">For it to be considered complete, shouldn't it take the environment in which to evaluate? Which reminds me, where's local variables in composition? Sure, it can be emulated via an [[w:Immediately invoked function expression|IIFE]], but how does that look like? So, macros as well. I look forward to how a generalized, multilingual Lisp interpreter function would look like..</ref>-of-an-[[Z38590|eval]], the runtime environment of Wikifunctions now resembles a somewhat less [[w:Greenspun's tenth rule|poor LISP]]. Whereas the runtime, as it stands now, is somewhat reminiscent of [[w:Smalltalk|Smalltalk]], [[w:Self (programming language)|Self]] and others, an [[w:object-oriented programming|object-oriented programming]] [https://arxiv.org/abs/2302.10003 ''system'']. <ref group="note">How I wish there was a Wikipedia article about programming systems in this sense... </ref> I wonder: how far/well the ''theory'' (in the sense of [[w:programming language theory|programming language theory]], [[w:semantics (programming languages)|semantics]] and such) behind Wikifunctions have been developed, whether that has been documented somewhere (beyond [[WF:Function model|Function model]]) or it still resides [[w:tacit knowledge|in the minds]] of the implementors for now, which direction<ref group="note">e.g. [[w:Metaobject#Metaobject protocol|Metaobject protocol]] (quite relevant, since it's object-oriented), higher-[[w:Kind (type theory)|kind]]ed types and so on</ref> you wish to develop this system and so on; where such discussions can take place. Among the [https://meta.wikimedia.org/wiki/Abstract_Wikipedia/Goals#Secondary_goals secondary goals] is: <q>Faster development of new programming languages due to accessing a wider standard library (or repository) of functions in a new dedicated wiki.</q> For which we should have categorized and isolated the portion of functions (and objects), to be made available seperately as self-contained/sufficient collections, that are most relevant to implementing programming languages/systems. Has (if so, how much) there already been any work in this direction? Since Wikifunctions aims to be natural-language- as well as programming-language-[[w:agnostic (data)|agnostic]], it should be agnostic of any particular representation as well. Thus it should work with different representations (whether it's the underlying (JSON) representation of the objects, the specific choice of numberings, type system or even ontology) and be convertible among equivalence classes of representations (and conceptualizations?). It's this level of generality I'm quite interested about, and wish to have some in-depth discussion (here, insofar relevant to this project and elsewhere). ---- <references group="note"/> [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 11:31, 12 August 2026 (UTC) :Hi @[[User:Smlckz|Smlckz]]! I am really interested in the viability of Wikifunctions as a programming system too, but I don't think you're in a for a great experience... While my experience here is quite limited, I worked a lot on a major issue that still bothers me: the composition language is incapable of basic arithmetic. If you look into [[Wikifunctions:Reserved ZIDs]], you'll notice that there isn't any built in implementation for addition, subtraction, and there isn't even a builtin type for Natural numbers. This leads to quite a few fundamental issues, like the fact that the built-in {{Z|80}} depends on the non-built-in {{Z|13518}}... :Strings aren't much better: the only core functions to manipulate them, {{Z|886}} and {{Z|888}} have been deprecated. :And while [[Wikifunctions:Function model]] is a great start it is out of date and is nowhere complete enough to be considered a proper specification. If you want any information as to how evaluation and the object model actually work you have to look into the Gitlab repos for the current implementation. :Last thing, the {{Z|823}} function is a total breach of purity, and allows functions to get information about there own implementation, the environment they run in, etc. This can even be used, I believe, as a source of randomness. :I have great hopes that Wikifunctions will become a strong programming system one day, but as of now, it's far behind any other functional programming languages. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 00:15, 13 August 2026 (UTC) ::I hope that folks who are interested, like you two, can help with moving in that direction. ::The development team is not focusing on that secondary goal currently. That shouldn't preclude anyone else from doing so. ::How does Z823 break purity? ::Honest question: do we need closure for anonymous functions, or is alpha conversion sufficient? --[[User:DVrandecic (WMF)|DVrandecic (WMF)]] ([[User talk:DVrandecic (WMF)|talk]]) 12:25, 13 August 2026 (UTC) :::Sorry for the use of the maybe unclear term purity, I stole it from the Nix language :) :::Purity would be the principle that the same inputs always return the same outputs, independently from the running environement. {{Z|823}} does the exact opposite by literally giving you information about the outside environment. This constitues a source of randomness that I really do not appreciate from a theoretical standpoint, as it potentially introduces painful runtime errors (race conditions even, albeit only in extreme cases) which no one likes to debug. :::I personally think that it is quite an useless function (4 uses in mainspace), but if people really want to keep it, I propose to restrict its usage to tests or make any function using it be marked as "impure" too. :::To answer your last question, I don't really understand it --- I'm sorry for showing my lack of computer science basics here :') If you wish to explain it further, I'd be happy to give you my opinion. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:44, 13 August 2026 (UTC) :::{{tq|Honest question: do we need closure for anonymous functions, or is alpha conversion sufficient?}} If we want to evolve towards a proper [[w:rewriting|rewriting]] system, conversion and reduction rules from lambda calculus might suffice. But, for now, if I have understood the current system correctly, we'd need to have closures, if only for reasons of efficiency. Imagine big, non-persistent, runtime objects, being referenced multiple times in anonymous functions, after beta reduction, to get represented with that many copies in their bodies.. (The evaluator might not be affected, but once these anonymous functions need to persist or even just pass through programming language boundaries, forcing normalization/serialization..) So, if we want to support anonymous functions as first-class objects of the kind of system we currently have, closures are essential. [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 03:09, 14 August 2026 (UTC) ::{{tq|I worked a lot on a major issue that still bothers me: the composition language is incapable of basic arithmetic.}} When anonymous functions work better, we should be able to implement [[w:Church encoding|Church numerals]] using them. Similarly, when we'll have support for sum types, we could use that to implement [[w:Peano axioms|Peano arithmetic]] (as linked list of unit type). While these are interesting for theoretical purposes, we can't rely on them in practice, due to the kind of runtime we have here; it'd be too inefficient for any non-trivial use. Like functions can have multiple implementations, types could do the same, giving rise to typeclasses.. <small>The aspiration towards purity gives rise to expectations of realization of [[w:Curry–Howard correspondence|program-proof equivalence]], in having proofs of theorems hosted alongside ordinary functions (and perhaps proofs of correctness of such ordinary functions), but that's too far in the future for us to consider.</small> We can then have performant implementations of types alongside theoretically interesting ones. {{tq|This leads to quite a few fundamental issues, like the fact that the built-in {{Z|80}} depends on the non-built-in {{Z|13518}}...}} Which does sound quite backwards. I'd've expected to see a built-in natural number type, with byte defined as a derived type out of it. (For comparison, here's what Common Lisp came up with: [https://metaspec.dev/t_integer.html] [https://metaspec.dev/t_unsigned-byte.html]) {{tq|Last thing, the {{Z|823}} function is a total breach of purity, and allows functions to get information about there own implementation, the environment they run in, etc.}} This information can also be used to choose more performant (or, for a particular environment, a better-suited) implementation amongst available. I don't expect this system to be able uphold the level of purity expected from a purely functional programming language, but only up to a certain degree: that most functions won't directly need to rely on such escape hatches. (Compare Rust's <code>unsafe</code>. Similarly, consider the caveats of [https://wiki.haskell.org/index.php?title=Hask '''Hask'''].) [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 17:41, 13 August 2026 (UTC) :::Church numerals are an idea I love, and Peano arithmetic too! My initial attempt with von Neumann ordinals quickly stopped because of speed concerns :') Typeclasses is an idea I had a while ago (although I phrased it as Single Type, Multiple Representations) and could further improve Wikifunctions' abstractness and maybe even performance. I agree the lack of a number type is a major flaw in the system. Last point, I think implementation choice should mostly be done by the system automatically; what you call <code>unsafe</code> is similar to the concept of impurity in Nix, where calling an impure function makes the function calling it impure too. I believe an automatic explicit visible marking of such impure functions could help prevent their abusive use. :::Given that some people seem interested in the ideas we discussed but it isn't a main focus at the moment, would you like us to discuss further ideas such as the writing of a formal Wikifunctions ''specification'', some new type proposals for an integer type, and maybe even develop the idea of typeclasses? :::If you'd like a more dynamic discussion I have Discord if needed (hope it's not illegal to say that!) [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 21:52, 13 August 2026 (UTC) ::::I'd like to discuss, along with participation from implementors, such that we don't build [[wikt:castle in the air|castle in the air]]. With how things are in flux, designing a specification now might not be a good idea. At least, we'd need multiple competing full-featured implementations such that the need for specification can naturally arise. We can certainly discuss existing implementations of various programming systems: what to pick, what to discard and what to innovate in our circumstances.. <small><small>I don't use Discord. You can talk with me on [[w:IRC|IRC]]: find me in the Libera.chat channel <code>#wikipedia-abstract</code>. If you don't have an IRC client set up, you can use Libera's [https://libera.chat/guides/clients web clients]. Mention the time (with timezone) you'll be available. We can discuss which (better or worse) protocol/platform to use for further communication there. </small></small> [[User:Smlckz|Smlckz]] ([[User talk:Smlckz|talk]]) 04:16, 14 August 2026 (UTC) :::::I do have IRC! <code>virinas-code</code>, I use the Konversation client. You do seem to have a lot more experience than me with functional programming so I'll be happy to discuss ideas with you :) :::::I'm typically available from 2PM to 8PM and from 11PM to 2AM-4AM in the Europe/Paris timezone. I think one of the first thing we should do is fix the built-in lack of a number type. A specification can come much later, but we do need to reinforce existing documentation (e.g. by completing [[Wikifunctions:Function model]]). [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 12:48, 14 August 2026 (UTC) == A proposal on number types on the Wikifunctions project == Hi! We'd like to submit our proposal surrounding the status of numbers in the Wikifunctions ecosystem, '''[[Wikifunctions:Proposal for built-in number types]]'''! We're open to discussion, advice, ideas, and so on. What we propose, while important, is complex and requires proper approval before we begin thinking about implementing it. [[User:Virinas-code|Virinas-code]] ([[User talk:Virinas-code|talk]]) 15:10, 17 August 2026 (UTC) == person lead sentence configuration == A newly-solved phabricator task now means that {{Z|Z38757}} can work well. I think it's well-defined and has enough arguments to work for most people. The exception is those with Julian dates for birth/death (we still don't have a Julian type, so can't import Julian WD values). Please configure {{Z|Z32826}} in your language! Wherever possible, follow the language wiki manual of style for this lead sentence. Please make noise if there's a conceptual/definitional problem for your language. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 05:13, 20 August 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #261: Mayors and the North == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-08-20|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we have an essay from Denny about accidental gaps in languages, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 09:41, 21 August 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30928401 --> :Coincidentally, I just made [[abstract:Q2262318|an abstract article]] for a different government gato... the initial idea was to write about [[d:Q379362|a racehorse]], but maybe I was subconsciously influenced by reading this when Denny posted it on the RfC earlier.<br>reː translatability of {{tq|San Francisco is the cultural centre of Northern California}}, it was always a stupid question. "Northern California" together is the toponym, and "cultural centre" together refer to a concept (not one in WD as far as I can tell, but the concepts of [[d:Q1066984|financial]] and [[d:Q676050|historic]] centres exist there). So there's no need for "North" as an absolute direction or "centre" as a relative position. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 13:40, 21 August 2026 (UTC) ::"Northern California" is not a stupid question. The preferred way of describing locations varies from culture to culture. For example, a riverine culture might consider the most important aspect of its location to be "at the mouth of the Sacramento River", while an island culture might describe it as "on the coast of North America". "Northern California" is the map-centric description of its location. ::Even within map-centric cultures, the borders vary. For example, when preparing a test case for Z26570, I discovered that Spanish places the United Arab Emirates in "Oriente Próximo", and "Oriente Medio" is seen as an Americanism to be avoided. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 21:52, 21 August 2026 (UTC) :::You've missed the pointː the labels for items, including {{Q|1066807}}, have no restrictions and don't have to be word-for-word translations of the {{P|1705}}. {{Q|956}} is not "Northern Capital" and {{Q|500453}} is not "Leeward Islands". ''Describing'' where a place is in relation to other places is a separate problem ({{P|47}} + {{P|654}} qual. seems to be how that's modelled, so that might be limiting for some languages). Choosing how to group countries/regions is a separate problem (there's a {{Q|48214}}, but {{Q|878}}:{{P|361}}={{Q|7204}} only). [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 06:39, 22 August 2026 (UTC) == Japanese is not suggested in the language selector when using uselang=ja == {{phab|T435712}} It seems that the language selector does not always suggest Japanese even when the interface language is Japanese (uselang=ja). For example, when most languages have already been added and the dropdown only shows a couple of suggested languages, Japanese may not be among them. If I type "日本語" manually, it appears and can be selected normally, so the language itself is available; it is only missing from the initial suggestions. As I understand it, the selector is supposed to prioritize the user's/interface language among the suggested languages. This may be related to [[phab:T391130]]. Is this expected behavior, or should Japanese be suggested when the UI language is Japanese? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 14:04, 22 August 2026 (UTC) :Are you referring to the autocomplete on [[Z60]]-typed reference selectors, for example on [[Z31676]]? It's the [[d:Q1065#P37|6 UN languages]], but including the current UI language is a good idea. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 14:42, 22 August 2026 (UTC) ::Yes, that's correct. Including the current UI language would make the translation work easier. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 14:45, 22 August 2026 (UTC) == Language-specific guideline pages == Is it possible to create guideline pages for each language, or do they already exist? Rather than translating a single English page using the Translate extension, it would be better to have standalone pages (subpages are acceptable). Naming conventions and similar rules in each language are almost always different from English rules. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 07:04, 23 August 2026 (UTC) :&rarr; [[WT:Naming conventions#Per-language pages]] [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 08:39, 23 August 2026 (UTC) ::Thank you (I didn't know that discussion exists). I'll write a draft for naming conventions for Japanese. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 08:48, 23 August 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #262: Wikifunctions Object Reference == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-08-28|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we discuss a new Type implemented after a community request, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 12:32, 28 August 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30951652 --> == Draft policy for language fallback strategies == [[Help:Language fallback]]<br>I'd appreciate any comments, but I'm particularly seeking approval for this planned mass edit: * '[[Z25065|limited]]' in all [[:Category:Display functions]] * '[[Z14310|none]]' in all [[:Category:Reading functions]] * '[[Z25065|limited]]' in all [[:Category:Abstract description functions]] * NEW STRATEGY '[[Z40583|insistent]]' in all [[:Category:Semantic fragment functions]] (including the ones I haven't categorised yet) * '[[Z40583|insistent]]' in all [[:Category:Hatnote functions]] * '[[Z40583|insistent]]' in all [[:Category:Multilingual captioned image functions]] * '[[Z14310|none]]' in all [[:Category:Conjugation tables]] * '[[Z14310|none]]' in all {{Z|36462}}-producing functions? {{ping|Denny|p=}} * '[[Z25065|limited]]' in everything else: punctuation helpers, lexeme and inflection helpers, partial sentence functions... [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:42, 30 August 2026 (UTC) :I am happy that see that you want to structure the language fallback strategies. I can't oversee the consequences, but I trust you in this plan. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:46, 30 August 2026 (UTC) ::At first read, the policy looks great (even if a person speaking fr-CA will probably be angry with that example, despite being largely true). I also approve the planned mass edit so far, it's good to test that. Thanks for the work! [[User:Ornithorynque liminaire|Ornithorynque liminaire (she/they)]] ([[User talk:Ornithorynque liminaire|talk]]) 16:20, 30 August 2026 (UTC) :::It would also be very great to have a schema and more examples so the policy could be more understandable for newcomers. [[User:Ornithorynque liminaire|Ornithorynque liminaire (she/they)]] ([[User talk:Ornithorynque liminaire|talk]]) 16:22, 30 August 2026 (UTC) :None for the Syntactic tables is a good idea, I think that one will go from experimental right to deprecated anyway. I am not sure yet about the Semantic fragment functions, and would like to see the effect once we have a few more. --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:48, 3 September 2026 (UTC) == New visualisation templates to help editors navigate {{Z|14294}} == I've got {{Z|40885}} mostly working and I hacked together a version of [[Z40902|a tree view]] that's usable: take a look at [[Talk:Z25091]] and [[Talk:Z39262]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 02:35, 3 September 2026 (UTC) == Native implementations reading Z12 labels broken after recent deploy == {{tracked|T436918}} Native (JS/Python) implementations that read labels from their argument now get an empty <code>Z12K1</code>, so they return 0 items. Composition implementations are unaffected. Example: {{Z|Z24116}} (JS impl of {{Z|Z24114}}) with Q1 + [en, mul] returns 0 items, while composition {{Z|Z26569}} returns <code>["universe"]</code>. Cause: orchestrator commit [https://gitlab.wikimedia.org/repos/abstract-wiki/wikifunctions/function-orchestrator/-/commit/beb111db6c "Strip Z12 labels when resolving WFObjects"] (Aug 26), deployed in the 2026-09-02 services deploy. <code>fullyRealize()</code> now strips <code>Z12K1</code>, and native implementation arguments go through it (<code>WFImplementation.js</code>). I've temporarily disconnected Z24116/Z24770 from Z24114 so the working composition Z26569 is used. Question: Is stripping labels from native arguments intentional? How should native code access labels going forward? (FYI: Z24114 tester {{Z|Z36529}} is separately failing; Q30 has no <code>no</code> label; it's under <code>nb</code>/<code>nn</code> now.) [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 08:49, 3 September 2026 (UTC) :{{Z|Z23769}} is also broken. [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 09:46, 3 September 2026 (UTC) :It was intentional to remove some, but not intentional to remove all (or at least we didn't understand the effect). The development team are aware. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 09:58, 3 September 2026 (UTC) :Should now be fixed. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 11:20, 4 September 2026 (UTC) == Wikifunctions & Abstract Wikipedia Newsletter #263: 5,000 Functions, passing Z40000 == There is [[:f:Special:MyLanguage/Wikifunctions:Status updates/2026-09-03|a new update]] for Abstract Wikipedia and Wikifunctions. Please, come and read it! In this issue, we mark the 5,000th function on Wikifunction, we explore a new Type for functions, and we take a look at the latest software developments. Want to catch up with the previous updates? Check [[:f:Special:MyLanguage/Wikifunctions:Status updates|our archive]]! Also, we remind you that if you have questions or ideas to discuss, the next '''Volunteers' Corner''' will be held on '''[https://zonestamp.toolforge.org/1788802200 September 7, at 17:30 UTC]''' ([https://meet.google.com/xuy-njxh-rkw link to the meeting]). Enjoy the reading! -- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 11:00, 4 September 2026 (UTC) <!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/Wikifunctions_%26_Abstract_Wikipedia&oldid=30951652 --> == i can create my own function? == i need enable my implementation for my function Z38065 [[User:Spider077|Spider077]] ([[User talk:Spider077|talk]]) 05:40, 6 September 2026 (UTC) :Please request connections at [[Wikifunctions:Requests for connection and disconnection]]. :I do not think this particular implementation should be connected. :# The function has no test cases, so its intended purpose is not entirely clear. :# The function appears to be a duplicate of {{Z|Z11602}}. :# The implementation will return an error because <code>Text</code> is undefined. :# In any event, <code>print()</code> returns the value <code>None</code>, so the implementation would end up returning {{Z|Z24}}. :Please feel free to reply here if you need any help. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:24, 6 September 2026 (UTC) 27en1q54ursvz4fi4uhyu7glluzocwy Wikifunctions:Requests for deletions 4 1696 308911 308291 2026-09-05T13:10:22Z 鈴音雨 101019 /* Z41180 */ new section 308911 wikitext text/x-wiki <noinclude>__NEWSECTIONLINK__ __FORCETOC__</noinclude> Functions or implementations or tests which do not work properly, do not meet notability criteria or are duplicates of another object can be deleted. Please nominate items for deletions under the "Requests for deletion" section below. If it is obvious vandalism, just report it in [[Wikifunctions:Report vandalism]], or ping an [[Special:ListAdmins|administrator]]. Contact can also be made with an administrator on [https://t.me/Wikifunctions Telegram] or IRC [irc://irc.libera.chat/wikipedia-abstract #wikipedia-abstract]. If it is a predefined object (its ZID is less than 10000), please see [[Wikifunctions:Report a technical problem]]. {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |level = 2 }} {{Archives|{{Special:PrefixIndex/Wikifunctions:Requests for deletions/Archive/|stripprefix=1}}}} = Requests for deletion = == [[Z13148]] == Can we delete this one, now that we have [[Z19460]]? --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 19:52, 26 July 2026 (UTC) :@[[User:Ameisenigel|Ameisenigel]]: They're for different Types, and the latter is collared. @[[User:FenrisAureus|FenrisAureus]] created it, and @[[User:99of9|99of9]] [https://www.wikifunctions.org/wiki/Z13148?diff=prev&oldid=108053 added "(!)"] presumably to tell people not to use it, both in 2024; perhaps they might have views. [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 08:40, 27 July 2026 (UTC) ::the implementation of [[Z19460]] is (i believe) of xorshift128 while [[Z13148]] is of xorshift32 and xorshift64. I suggest merging and renaming [[Z19460]]'s current implementation to eliminate confusion. — [[User:FenrisAureus|<span style="color:#f18">'''''FenrisAureus '''''▲ <span style="font-size:75%">'''''(she/they)'''''</span></span>]] ([[User talk:FenrisAureus|<span style="color:#060">talk</span>]]) 10:04, 2 August 2026 (UTC) == [[Z37707]] and [[Z37708]] == Empty function, without title and meaningless test, also without title. These are the only contributions of [[User:Mmov9287]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 09:17, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z31286]] and [[Z31287]] == Function without title and disconected implementation, also without title. Concatenating Name, "How Are You", "Hello,". These are the only contributions of [[User:Script7921]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:08, 4 September 2026 (UTC) :Yes, I would recommend you delete these. :[[User:Script7921|Script7921]] ([[User talk:Script7921|talk]]) 11:09, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z41180]] == Duplicate of {{Z|Z29036}} [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 13:10, 5 September 2026 (UTC) 4c4x6na7o2mowhoevdll0dsqtcq44n1 308993 308911 2026-09-05T15:29:21Z Bunnypranav 9976 Mark section resolved ([[User:Bunnypranav/sectionResolved.js|sectionResolved]]) 308993 wikitext text/x-wiki <noinclude>__NEWSECTIONLINK__ __FORCETOC__</noinclude> Functions or implementations or tests which do not work properly, do not meet notability criteria or are duplicates of another object can be deleted. Please nominate items for deletions under the "Requests for deletion" section below. If it is obvious vandalism, just report it in [[Wikifunctions:Report vandalism]], or ping an [[Special:ListAdmins|administrator]]. Contact can also be made with an administrator on [https://t.me/Wikifunctions Telegram] or IRC [irc://irc.libera.chat/wikipedia-abstract #wikipedia-abstract]. If it is a predefined object (its ZID is less than 10000), please see [[Wikifunctions:Report a technical problem]]. {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |level = 2 }} {{Archives|{{Special:PrefixIndex/Wikifunctions:Requests for deletions/Archive/|stripprefix=1}}}} = Requests for deletion = == [[Z13148]] == Can we delete this one, now that we have [[Z19460]]? --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 19:52, 26 July 2026 (UTC) :@[[User:Ameisenigel|Ameisenigel]]: They're for different Types, and the latter is collared. @[[User:FenrisAureus|FenrisAureus]] created it, and @[[User:99of9|99of9]] [https://www.wikifunctions.org/wiki/Z13148?diff=prev&oldid=108053 added "(!)"] presumably to tell people not to use it, both in 2024; perhaps they might have views. [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 08:40, 27 July 2026 (UTC) ::the implementation of [[Z19460]] is (i believe) of xorshift128 while [[Z13148]] is of xorshift32 and xorshift64. I suggest merging and renaming [[Z19460]]'s current implementation to eliminate confusion. — [[User:FenrisAureus|<span style="color:#f18">'''''FenrisAureus '''''▲ <span style="font-size:75%">'''''(she/they)'''''</span></span>]] ([[User talk:FenrisAureus|<span style="color:#060">talk</span>]]) 10:04, 2 August 2026 (UTC) == [[Z37707]] and [[Z37708]] == Empty function, without title and meaningless test, also without title. These are the only contributions of [[User:Mmov9287]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 09:17, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z31286]] and [[Z31287]] == Function without title and disconected implementation, also without title. Concatenating Name, "How Are You", "Hello,". These are the only contributions of [[User:Script7921]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:08, 4 September 2026 (UTC) :Yes, I would recommend you delete these. :[[User:Script7921|Script7921]] ([[User talk:Script7921|talk]]) 11:09, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z41180]] == Duplicate of {{Z|Z29036}} [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 13:10, 5 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC)}} dmomzoxxs9ymnzb2hk0mwftz8akk4r3 309099 308993 2026-09-05T18:13:41Z HenkvD 1290 /* Z41140 */ 309099 wikitext text/x-wiki <noinclude>__NEWSECTIONLINK__ __FORCETOC__</noinclude> Functions or implementations or tests which do not work properly, do not meet notability criteria or are duplicates of another object can be deleted. Please nominate items for deletions under the "Requests for deletion" section below. If it is obvious vandalism, just report it in [[Wikifunctions:Report vandalism]], or ping an [[Special:ListAdmins|administrator]]. Contact can also be made with an administrator on [https://t.me/Wikifunctions Telegram] or IRC [irc://irc.libera.chat/wikipedia-abstract #wikipedia-abstract]. If it is a predefined object (its ZID is less than 10000), please see [[Wikifunctions:Report a technical problem]]. {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |level = 2 }} {{Archives|{{Special:PrefixIndex/Wikifunctions:Requests for deletions/Archive/|stripprefix=1}}}} = Requests for deletion = == [[Z13148]] == Can we delete this one, now that we have [[Z19460]]? --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 19:52, 26 July 2026 (UTC) :@[[User:Ameisenigel|Ameisenigel]]: They're for different Types, and the latter is collared. @[[User:FenrisAureus|FenrisAureus]] created it, and @[[User:99of9|99of9]] [https://www.wikifunctions.org/wiki/Z13148?diff=prev&oldid=108053 added "(!)"] presumably to tell people not to use it, both in 2024; perhaps they might have views. [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 08:40, 27 July 2026 (UTC) ::the implementation of [[Z19460]] is (i believe) of xorshift128 while [[Z13148]] is of xorshift32 and xorshift64. I suggest merging and renaming [[Z19460]]'s current implementation to eliminate confusion. — [[User:FenrisAureus|<span style="color:#f18">'''''FenrisAureus '''''▲ <span style="font-size:75%">'''''(she/they)'''''</span></span>]] ([[User talk:FenrisAureus|<span style="color:#060">talk</span>]]) 10:04, 2 August 2026 (UTC) == [[Z37707]] and [[Z37708]] == Empty function, without title and meaningless test, also without title. These are the only contributions of [[User:Mmov9287]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 09:17, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z41140]] == Testcase I wrote, but one of the the imput paramters of the fuction was forgotten. Please delete. == [[Z31286]] and [[Z31287]] == Function without title and disconected implementation, also without title. Concatenating Name, "How Are You", "Hello,". These are the only contributions of [[User:Script7921]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:08, 4 September 2026 (UTC) :Yes, I would recommend you delete these. :[[User:Script7921|Script7921]] ([[User talk:Script7921|talk]]) 11:09, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)}} == [[Z41180]] == Duplicate of {{Z|Z29036}} [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 13:10, 5 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC)}} 13cdmxbvpf1x1oo0j1tc6i945o1kdf9 309223 309099 2026-09-06T03:08:07Z SpBot 978 archive 2 sections: 2 to [[Wikifunctions:Requests for deletions/Archive/2026/09]] (after section [[Wikifunctions:Requests for deletions/Archive/2026/09#Z37707_and_Z37708|Z37707_and_Z37708]]) - previous edit: [[:User:HenkvD|HenkvD]], 2026-09-05 18:13 309223 wikitext text/x-wiki <noinclude>__NEWSECTIONLINK__ __FORCETOC__</noinclude> Functions or implementations or tests which do not work properly, do not meet notability criteria or are duplicates of another object can be deleted. Please nominate items for deletions under the "Requests for deletion" section below. If it is obvious vandalism, just report it in [[Wikifunctions:Report vandalism]], or ping an [[Special:ListAdmins|administrator]]. Contact can also be made with an administrator on [https://t.me/Wikifunctions Telegram] or IRC [irc://irc.libera.chat/wikipedia-abstract #wikipedia-abstract]. If it is a predefined object (its ZID is less than 10000), please see [[Wikifunctions:Report a technical problem]]. {{Autoarchive resolved section |age = 1 |archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) |level = 2 }} {{Archives|{{Special:PrefixIndex/Wikifunctions:Requests for deletions/Archive/|stripprefix=1}}}} = Requests for deletion = == [[Z13148]] == Can we delete this one, now that we have [[Z19460]]? --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 19:52, 26 July 2026 (UTC) :@[[User:Ameisenigel|Ameisenigel]]: They're for different Types, and the latter is collared. @[[User:FenrisAureus|FenrisAureus]] created it, and @[[User:99of9|99of9]] [https://www.wikifunctions.org/wiki/Z13148?diff=prev&oldid=108053 added "(!)"] presumably to tell people not to use it, both in 2024; perhaps they might have views. [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 08:40, 27 July 2026 (UTC) ::the implementation of [[Z19460]] is (i believe) of xorshift128 while [[Z13148]] is of xorshift32 and xorshift64. I suggest merging and renaming [[Z19460]]'s current implementation to eliminate confusion. — [[User:FenrisAureus|<span style="color:#f18">'''''FenrisAureus '''''▲ <span style="font-size:75%">'''''(she/they)'''''</span></span>]] ([[User talk:FenrisAureus|<span style="color:#060">talk</span>]]) 10:04, 2 August 2026 (UTC) == [[Z41140]] == Testcase I wrote, but one of the the imput paramters of the fuction was forgotten. Please delete. == [[Z41180]] == Duplicate of {{Z|Z29036}} [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 13:10, 5 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC) {{Section resolved|1=<span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 15:29, 5 September 2026 (UTC)}} aqf9odk6whq1dou7one89uzrjjkjkmh Wikifunctions:Requests for user groups 4 3790 309224 308080 2026-09-06T03:35:54Z EJPPhilippines 9359 /* EJPPhilippines */ Reply 309224 wikitext text/x-wiki {{shortcut|[[WF:RFG]]|[[WF:PERM]]|[[WF:RFUG]]}} This is the place to request specific user groups: {{ombox | image = [[File:Echo user-rights icon.svg|60x60px|alt=|link=]] | text = '''How to make a request''' # Edit the section for the user group you wish to request # Copy the following and ''append'' it to the text-area: ## Requests without required discussion: <code><nowiki>{{subst:rfg|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> ## Functioneer requests (required 48-hour discussion): <code><nowiki>{{subst:rfg|3=1|length=2 days|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> ## Requests with required 1-week discussion: <code><nowiki>{{subst:rfg|3=1|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> # Replace <code>reason</code> with a rationale based on the guidelines specified for the user group }} : ''Archived requests can be found at [[Wikifunctions:Requests for user groups/Archive]]'' {{Autoarchive resolved section | age = 1 | archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) | level = 3 }} == Functioneer == {{see also|Wikifunctions:Functioneers}} === Armin hpj === :{{UL2.0|1=Armin hpj|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}} :''Discussion open until: 15:03, 27 August 2026 (UTC)'' :I have experienceed the Wikifunctions since 19th July. As of now, I want to become an functioneer because I am creating functions within the implementation and sometimes the test cases. and if I become one of the functioneer, I would connect the implementation to the functions if the function is useful. [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 15:03, 25 August 2026 (UTC) ::Please can you add test cases on the functions you have created already. It is important for every function to have tests. You'll find that some are not working, so you might want to try to fix those implementations too. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:05, 26 August 2026 (UTC) ::{{ping|Armin hpj}} Please see above --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:23, 2 September 2026 (UTC) :::I understand. [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 18:56, 2 September 2026 (UTC) === EJPPhilippines === :{{UL2.0|1=EJPPhilippines|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}} :''Discussion open until: 12:45, 4 September 2026 (UTC)'' :I started editing here in 2024 but only began semi-regular editing in 2026. My goal is to create NLG functions for Tagalog/Filipino, one of my native languages, in order to expand Tagalog/Filipino language coverage on Abstract Wikipedia. Some Tagalog/Filipino NLG functions that I have created include [[Z32193]], [[Z32985]], [[Z40161]], and [[Z40836]]. [[User:EJPPhilippines|EJPPhilippines]] ([[User talk:EJPPhilippines|talk]]) 12:45, 2 September 2026 (UTC) ::The discussion period is over, is there anything else that I have to do? [[User:EJPPhilippines|EJPPhilippines]] ([[User talk:EJPPhilippines|talk]]) 03:35, 6 September 2026 (UTC) == Autopatroller == {{See also|Wikifunctions:Autopatrollers}} == Administrator == {{see also|Wikifunctions:Administrators}} == Interface administrator == {{see also|Wikifunctions:Interface administrators}} == Translation administrator == {{see also|Wikifunctions:Translation administrators}} == Bureaucrat == {{see also|Wikifunctions:Bureaucrats}} == Miscellaneous requests == == See also == * [[Wikifunctions:User groups]] ** [[mw:Help:Wikifunctions/User rights]] for additional context about functioneers, maintainers, sysops, and bureaucrats [[Category:User groups|*]] 683vfjnn9zod8uoyxv5s7wvin0fuz8w 309234 309224 2026-09-06T04:47:22Z 99of9 1622 /* EJPPhilippines */ 309234 wikitext text/x-wiki {{shortcut|[[WF:RFG]]|[[WF:PERM]]|[[WF:RFUG]]}} This is the place to request specific user groups: {{ombox | image = [[File:Echo user-rights icon.svg|60x60px|alt=|link=]] | text = '''How to make a request''' # Edit the section for the user group you wish to request # Copy the following and ''append'' it to the text-area: ## Requests without required discussion: <code><nowiki>{{subst:rfg|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> ## Functioneer requests (required 48-hour discussion): <code><nowiki>{{subst:rfg|3=1|length=2 days|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> ## Requests with required 1-week discussion: <code><nowiki>{{subst:rfg|3=1|1={{subst:REVISIONUSER}}|2=reason ~~~~}}</nowiki></code> # Replace <code>reason</code> with a rationale based on the guidelines specified for the user group }} : ''Archived requests can be found at [[Wikifunctions:Requests for user groups/Archive]]'' {{Autoarchive resolved section | age = 1 | archive = ((FULLPAGENAME))/Archive/((year))/((month:##)) | level = 3 }} == Functioneer == {{see also|Wikifunctions:Functioneers}} === Armin hpj === :{{UL2.0|1=Armin hpj|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}} :''Discussion open until: 15:03, 27 August 2026 (UTC)'' :I have experienceed the Wikifunctions since 19th July. As of now, I want to become an functioneer because I am creating functions within the implementation and sometimes the test cases. and if I become one of the functioneer, I would connect the implementation to the functions if the function is useful. [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 15:03, 25 August 2026 (UTC) ::Please can you add test cases on the functions you have created already. It is important for every function to have tests. You'll find that some are not working, so you might want to try to fix those implementations too. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:05, 26 August 2026 (UTC) ::{{ping|Armin hpj}} Please see above --[[User:Ameisenigel|Ameisenigel]] ([[User talk:Ameisenigel|talk]]) 18:23, 2 September 2026 (UTC) :::I understand. [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 18:56, 2 September 2026 (UTC) === EJPPhilippines === :{{UL2.0|1=EJPPhilippines|contributions=1|deletedcontributions=1|editcount=1|blocklog=1|rightslog=1|crosswiki=1}} :''Discussion open until: 12:45, 4 September 2026 (UTC)'' :I started editing here in 2024 but only began semi-regular editing in 2026. My goal is to create NLG functions for Tagalog/Filipino, one of my native languages, in order to expand Tagalog/Filipino language coverage on Abstract Wikipedia. Some Tagalog/Filipino NLG functions that I have created include [[Z32193]], [[Z32985]], [[Z40161]], and [[Z40836]]. [[User:EJPPhilippines|EJPPhilippines]] ([[User talk:EJPPhilippines|talk]]) 12:45, 2 September 2026 (UTC) ::The discussion period is over, is there anything else that I have to do? [[User:EJPPhilippines|EJPPhilippines]] ([[User talk:EJPPhilippines|talk]]) 03:35, 6 September 2026 (UTC) ::{{done}} welcome aboard. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 04:47, 6 September 2026 (UTC) == Autopatroller == {{See also|Wikifunctions:Autopatrollers}} == Administrator == {{see also|Wikifunctions:Administrators}} == Interface administrator == {{see also|Wikifunctions:Interface administrators}} == Translation administrator == {{see also|Wikifunctions:Translation administrators}} == Bureaucrat == {{see also|Wikifunctions:Bureaucrats}} == Miscellaneous requests == == See also == * [[Wikifunctions:User groups]] ** [[mw:Help:Wikifunctions/User rights]] for additional context about functioneers, maintainers, sysops, and bureaucrats [[Category:User groups|*]] cdazon0c0y6v4kasxt9cuf6ocurjul2 User talk:99of9 3 14805 308976 302251 2026-09-05T14:34:10Z ReXLer 39813 /* Z41189 */ new section 308976 wikitext text/x-wiki {{Welcome/lang|user=99of9|welcominguser=Koavf|1=}} ―[[User:Koavf|Justin (<span style="color:grey">ko'''a'''vf</span>)]]<span style="color:red">❤[[User talk:Koavf|T]]☮[[Special:Contributions/Koavf|C]]☺[[Special:Emailuser/Koavf|M]]☯</span> 06:47, 13 September 2023 (UTC) == Split endswith ? == Hi, First thanks a lot for your help on [[Z11550]] (especially my stupid mistake of copy-paste). But I'm wondering, why split the endswith() ? (it look better and more effective with a tuple, no?) Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 11:55, 21 October 2023 (UTC) :{{ping|VIGNERON}} It wasn't evaluating, so I tried to fix it. I'm no expert, but it looks like the Python function [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith endswith] can only take one string argument (and another to optionally set the end position). I'm glad you're having a go, it will be interesting to see if we can get lots of activity in lots of languages. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:59, 21 October 2023 (UTC) ::{{ping|99of9}} ah! of course! thanks a lot for your comment, I made an obvious mistake (it wasn't really a tuple, so not one argument, now it's fixed). ::I'll try te create more functions for French and Breton in the coming days/weeks. ::Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 12:16, 21 October 2023 (UTC) :::OK! Well now I'm learning too! Thanks. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:20, 21 October 2023 (UTC) == Review == Hi, As I said before, I created a couple of wikifunctions for Breton. They are listed here: Wikifunctions:Catalogue#Breton_String_operations Feel free to look at them and tell me what you think (I see you already added labels and description in English, thanks!). Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 11:11, 1 November 2023 (UTC) :Hi {{ping|VIGNERON}} yes, I saw these. I think you're doing well. I'm afraid I don't know the language, so I can't be much help, but I'll try to keep adding English labels. For consistency, I suggest that all morphemes associated with a language should have the language at the start of their label, so "English plural", "Breton plural", "Breton ***". --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:28, 1 November 2023 (UTC) ::Ah, good point, thanks. I'll harmonize that for English labels right now. Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 13:19, 1 November 2023 (UTC) == [[Z12828]] == Hi, I was using this as a presumably simple test case to familiarize myself better with the workflows on this wiki, and I got lost in multiple ways, so thanks for chiming in. I will drop off now but will check back in tomorrow to see what you made out of it. [[User:Daniel Mietchen|Daniel Mietchen]] ([[User talk:Daniel Mietchen|talk]]) 00:28, 23 January 2024 (UTC) :{{re|Daniel Mietchen}} I've overhauled it a bit. Denny suggested using plain strings as often as possible at first (let me know if you want me to find a link to the discussion). Apart from types, the other main thing that was stopping the python was the whitespace(!). It requires tabbed indents not single spaces. Now that it runs, have a think about what you want the output to be for the test cases I added. I put in my suggestions (which the composition implementation [[Z12834]] conforms to), but am happy to switch them if you prefer different outputs. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:56, 23 January 2024 (UTC) ::Oops, I didn't see your comment on capitalisation when it came up [https://www.wikifunctions.org/w/index.php?title=Z12833&diff=76274&oldid=76268]. The reason I think it should just preserve whatever the incoming capitalisation is, is so that it still works at the start of a sentence, or in a database, etc. It's also safe enough, because I imagine that the users of this function will format their input to ensure they get what they want as output. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:05, 23 January 2024 (UTC) :::Thanks, this gives me some things to chew on. --[[User:Daniel Mietchen|Daniel Mietchen]] ([[User talk:Daniel Mietchen|talk]]) 23:30, 23 January 2024 (UTC) == Comments on Type proposals == Hey, admin(?). You added a Comments section to the Natural number type proposal and it included a subscription widget. The blankish template at [[Wikifunctions:Type proposals/(unnamed – new)]] lost that feature and I can’t see how you did it in the first place. Maybe you can fix this for all the proposals (or share your wizardry)? [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 08:57, 13 March 2024 (UTC) :I just tested and it appears when you sign a signature! (And disappears when you delete your signature.) So I've left a "support as proposer" in the template to prompt the creator to sign. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:17, 14 March 2024 (UTC) ::{{Done}} thank you. And congratulations on your elevation! [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 01:58, 14 March 2024 (UTC) == [[Z14597]] == Hi 99of9,<br> Thanks for all the wonderful work.<br> Regarding [[Z14597]], sorry, my mistake, can the string be deleted? I created it by mistake and I don't expect it to be used.<br> Thank you, · <b dir="ltr">[[User:מקף|<sup>מקף </sup>Hyphen]]<sub>[[User talk:מקף| &#3572;]]</sub></b> · 03:00, 31 March 2024 (UTC) :Sure. Done. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 04:01, 31 March 2024 (UTC) == English labels == Hi, please don’t mangle our language when labelling 😎 “English suffix word” is practically incomprehensible and “English natural number to ordinal” is positively misleading (it is the ordinal that is in English, not the Natural number). As you no doubt have a plan, perhaps you should articulate it at [[Wikifunctions:Naming conventions]] or [[Wikifunctions talk:Best practices#Wikifunctions:Naming conventions]]. Cheers! [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 07:54, 3 April 2024 (UTC) :I see what you mean. The idea/"plan" is that with the expected proliferation of language-related functions, that the language they apply to should be ultra-prominent (i.e. first word IMO, so that searches with the language only give you a comprehensive list). Once categories are up and working, this may not matter so much. In the meantime, would colons be sufficient to achieve both goals? "English: suffix word" and "English: natural number to ordinal"? --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:48, 4 April 2024 (UTC) ::Yeah, I guessed 😎 It’s hard to prove the negative, but I believe that searches already return a comprehensive list if just the language is specified. My personal preference is for function names (in particular) to have a label that is as close as possible to an idiomatic phrase in the language in which it is expressed. If the natural language prefix is decided upon, I would favour “English: suffix English word” and “English: Natural number to English ordinal”. If we move further away from idiomatic names, I might prefer “English String ordinal from Natural number” and “English String from word and suffix”. This puts the function’s return type in the more prominent position that it deserves (and, yes, I would prefer a Monolingual string return type). The implication there, though, is that the function that turns 23rd to 23 should be called “Natural number from numeric ordinal with English suffix” (unlucky guess: [[Z14542]]😏). That said, “Natural number sum of two Natural numbers” does lack a degree of panache 🤷‍♂️ [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 21:14, 4 April 2024 (UTC) :::Ok, I've restored them at least for now. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:59, 5 April 2024 (UTC) ::::Feel free to march boldly on. Your contributions are much appreciated (99% of the time) 🙏 [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 03:39, 5 April 2024 (UTC) == Spambot block == Can I ask why [[Special:Redirect/logid/63908]] was only 2 hours? I was going to block them indefinitely until I saw your prior block and figured there was probably a reason. I also reported them to [[:m:SRG]] for a global lock. --[[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 19:41, 9 April 2024 (UTC) :Since I caught them in the act, I was just trying to interrupt the next post, so they would move along. I expect they will not come back no matter how long the block. But I have no concern if you want to make it indefinite. I'm not particularly experienced with blocking. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:01, 10 April 2024 (UTC) ::My rule of thumb is that spam-only accounts get indefinitely blocked, but with talk page access enabled in case it turns out that they were not intending to spam or something like that (had that happen to me once I think - blocked someone who just didn't understand that it wasn't allowed and wanted to contribute positively). Anyway, the account is now globally locked so it doesn't really matter --[[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 03:46, 10 April 2024 (UTC) == Can you have a look == Hi {{BASEPAGENAME}} hope you fine, I'm just working on a function called "area of a circle" that uses rational numbers. I was having problems doing arithmetic with this type of number and, since there's no documentation I can refer to, I was trying it here and there until I got to this final [[Special:PermanentLink/161945|formula]] that uses pi as input. Can you take a look and give me some suggestions? Or do it if you want. Regards --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 22:19, 31 January 2025 (UTC) :Hi Mohanad. Is there a reason you want to use rational numbers as input and output? It seems a bit strange to me, because pi is an irrational number. So, at least for the output, I would suggest using float64. But anyway, I'll take a look now at what you have tried already. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:32, 31 January 2025 (UTC) ::I also wouldn't have a function input for pi. Since it is a constant, it doesn't make much sense for the user of the function to feed in their own personal value. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:42, 31 January 2025 (UTC) :::I know, I tried to use it directly many times (22*num) & (7*dem) but didn't work for me -[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 22:46, 31 January 2025 (UTC) ::::Ah, I see. That might be because 22 and 7 are not Bigint types. You would need 22n and 7n. But I think we should go for something more accurate than 22/7 anyway. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:49, 31 January 2025 (UTC) :::::I've changed it a bit so that everything now passes. But it sounds like you're happy if I remove the pi parameter? [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:55, 31 January 2025 (UTC) :::::To be honest, I didn't use float64. Will it work fine with js if the input type has changed? or Or need special work around too, if 22n & 7n work arithmetically fine, then there will be no need for pi input. --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 23:01, 31 January 2025 (UTC) ::::::I've made [[Z22039]] which doesn't use the pi parameter, and uses 22n/7n as it's approximation for pi. But even if we stick with rational numbers, we could use a much better approximation. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:12, 31 January 2025 (UTC) ::::::Changing either input or output types will mean that we need to rewrite the implementations. Since we have almost completed this rational version, I suggest making a new function with float64 types instead. But yes, let's remove the pi parameter on this one too. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:16, 31 January 2025 (UTC) ::::::Thx for help, if there is any documentation for advanced js implementation it will be helpful, thx again --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 23:23, 31 January 2025 (UTC) :The [[wf:Community portal]] is a better place to put things like this to open more participation and to not ping randomly. [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 22:34, 31 January 2025 (UTC) == Kleenean label == Hi {{BASEPAGENAME}}, is [[special:diff/162900|it]] wrong? --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 10:06, 5 February 2025 (UTC) :Oh, sorry, I think we might have both tried to edit at the same time. I was just trying to edit the English labels. Feel free to undo my edit, or redo yours. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 10:09, 5 February 2025 (UTC) == [[Z21949]] == Hey @[[User:99of9|99of9]], quick question - How is this different from just using [[Z20844]] or [[Z21939]]? Currently the above just works like the python version (only impl. is a composition referencing the python func)? Thanks! <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 14:13, 23 February 2025 (UTC) :Sorry, my previous answer was a phone, and I didn't understand your question. I'll try again now. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:04, 23 February 2025 (UTC) :[[Z21949]] is where we choose what Wikifunctions should displays by default (without language configuration). At the moment it simply copies what Python would display. But if we ever want to deviate from Python, we can code it there. In particular, I think we may want different notation for qnan and snan, since they are different special values, but show up the same in the python output. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:07, 23 February 2025 (UTC) ::I see, thanks for this explanation! <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 01:13, 24 February 2025 (UTC) == Wikidata search examples == : [[wikidata:Special:Search/:haswbstatement:P31=Q11344|Chemical elements (P31=Q11344)]] : [[wikidata:Special:Search/:haswbstatement:P1086 17|Items with atomic number property and 17]] It is supposed to be possible to combine properties and their values but I didn’t get to to work here. It should be possible (and straightforward) to include something like this in the WD item selector, given prior selection of the relevant Type. (But this is also true for WF objects in the object selector, and it’s anybody’s guess why we don’t do this.) [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:36, 7 March 2025 (UTC) == Trig functions suggestions == Thanks.. I'd put the constraint (or range in) based on what I'd ecnountered in typical usage, but agree with you.. It's a shame I can't use <nowiki><math></nowiki> tags, as for other functions it would make it easer to give more formalised defnitions for some functions. a Tan function would be an infinite or (Nan) at specific input values for example.. basic trig functions are something that should exist, but I am wondering if there are other trig functions that should also be supported as well.. [[User:ShakespeareFan00|ShakespeareFan00]] ([[User talk:ShakespeareFan00|talk]]) 18:41, 27 March 2025 (UTC) :Yes, it would be good to get the math markup working. I think most of the trig functions do already exist. Here are [[Z12473]] and [[Z16463]]. There are plenty of others in [[Wikifunctions:Catalogue/Number_operations]]. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:56, 28 March 2025 (UTC) == Day of roman year format for English == Hi. What is the best format for {{Z|Z20342}} in {{Z|Z1002}} and {{Z|Z1124}}? For {{Z|Z20420}}, the dmy format is used both for reading and for display functions, but I see that in {{Z|Z22940}} you print a {{Z|Z20342}} in the md format. Isn't it a bit inconsistent, or it follows an English convention that I am not aware of? What is the best format for {{Z|Z24990}}? (In other terms: how should {{Z|Z24990}} interpret the input "2/3" with {{Z|Z1002}} as the input language?) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 09:12, 9 June 2025 (UTC) :Yes, there is inconsistency here. It's hard because different variants of English use different formats, so "en" will never suit everyone. I'd say we should usually default to whatever the en-wiki style is. Then let the variants choose their own most appropriate format. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:56, 9 June 2025 (UTC) ::What is the en-wiki style for day-month display? [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 15:04, 9 June 2025 (UTC) :::It looks like both are equally permitted by the Manual of Style [[:w:Wikipedia:Manual_of_Style/Dates_and_numbers#Dates,_months,_and_years]], and the templates appear to localise according to the citizenship of biographies. I'm not sure which is more frequent overall. So maybe this is not giving us much guidance actually. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:15, 10 June 2025 (UTC) ::::Perhaps it's better to extend the discussion to the wider community [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:12, 10 June 2025 (UTC) == Checking in about presentation == Hi there! I am aware of your upcoming presentation at WikiCon Australia! Thank you, and I am excited about it! Given everything is a bit afloat again, right now, I wanted to check in if there is something that isn't working and it should. I was aware of the problems with [[Z25785]] and hope that these are resolved. I am also aware that embedded functions are currently not working, as well as issues on Abstract Wikipedia -- but I wanted to check if there is any specific function that used to work and doesn't right now? Cheers --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:09, 7 April 2026 (UTC) :Hi {{ping|Denny}}. Thanks for the check in. I was hoping to show an embedded function. I picked a fairly ambitious one, but would be happy to scale back to a simpler one if some of them can work within time limits. Here is a function list: :* [[Z28509]], relies heavily on [[Z25785]] but also on language configuration for good output display :** status: working :** risk: currently relying on a temporary measure described in [https://phabricator.wikimedia.org/T419789 T419789] :** possible improvements: another language label and description would help, so I can show it without (en) everywhere :* [[Z28005]], specifically [https://www.wikifunctions.org/view/en/Z28005?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z28005%22%2C%22Z28005K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q2565882%22%7D%2C%22Z28005K2%22%3A%7B%22Z1K1%22%3A%22Z20420%22%2C%22Z20420K1%22%3A%7B%22Z1K1%22%3A%22Z20159%22%2C%22Z20159K1%22%3A%7B%22Z1K1%22%3A%22Z17813%22%2C%22Z17813K1%22%3A%22Z17814%22%7D%2C%22Z20159K2%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%222025%22%7D%7D%2C%22Z20420K2%22%3A%7B%22Z1K1%22%3A%22Z20342%22%2C%22Z20342K1%22%3A%7B%22Z1K1%22%3A%22Z16098%22%2C%22Z16098K1%22%3A%22Z16104%22%7D%2C%22Z20342K2%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%2210%22%7D%7D%7D%7D this query] and I was hoping to show it as an embedded function provisionally at [[User:99of9/sandbox3]] :** status: function working, but embedding not per [https://phabricator.wikimedia.org/T422299 T422299] :* [[Z32919]], called from Abstract Wikipedia at [[:abstract:Q55771891]], but also I'll create another similar suburb with a population on the spot. :** status: needs "retry" on AW. Even works in German - danke! :** possible improvement: the other (instantiating) sentence on that AW page doesn't work in German, because I picked {{Q|Q7632426}} as its category item which doesn't have an associated lexeme. But I don't mind showing this as a pointer to future work, because the error message is relatively clear. :Overall I'm relatively comfortable with the current state, so I hope nothing breaks before the weekend! --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:35, 7 April 2026 (UTC) :{{ping|Denny}} Another high priority for live demonstrations would be [https://phabricator.wikimedia.org/T406784 T406784]. It is likely to trip me up if someone asks to see how to make an implementation (if I don't get it right first time). But I imagine this is a much harder one to solve quickly. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:33, 8 April 2026 (UTC) == You may be an eligible candidate for the U4C election == <div lang="en" dir="ltr" class="mw-content-ltr"> Greetings, The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] seeks candidates for the 2026 election. The U4C is the global committee responsible for overseeing enforcement of the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]]. Elections are held annually, if elected a committee member serves for two years. This year the U4C requires candidates to hold administrator rights on at least one wiki, which is why you are being contacted as you appear to hold this right. There are other requirements, such as candidates must be at least 18 years old and may not be employed by the Wikimedia Foundation or other related chapters and affiliates. You can find more information in the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026#Call_for_Candidates|call for candidates on Meta-wiki]]. Additionally, the committee's working language is English; some ability to communicate in English is required. The election opens on 18 May, if you are eligible and interested you have until 10 May to submit your candidacy. There will be a week in between for candidates to answer questions from the community. Voting takes place privately in [[m:Special:MyLanguage/SecurePoll|SecurePoll]], successful candidates must receive at least 60% support. More information is available on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|the 2026 Elections page]], including timelines and other candidacy information. If you read over the material and consider yourself qualified, please consider submitting your name to run for the committee. If you think someone else in your community might be interested and qualified, please encourage them to run. In partnership with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 20:10, 29 April 2026 (UTC) </div> <!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/test&oldid=30477306 --> == Sentences in past tense == 99of9 sentences in past tense result in sovm very strange results. for instance [https://www.wikifunctions.org/view/en/Z38757?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z38757%22%2C%22Z38757K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q7243%22%7D%2C%22Z38757K2%22%3A%5B%22Z6091%22%5D%2C%22Z38757K3%22%3A%5B%22Z6091%22%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q214917%22%7D%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4964182%22%7D%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q845653%22%7D%5D%2C%22Z38757K4%22%3A%22Z1430%22%7D this past tsens in German] results ❌≪Lew Nikolajewitsch Tolst (9. September 1828 – 20. November 1910)oi ist ein Dramatiker, Philosoph, et cetera.≫❌🔧 where the name of Tolstoi is split into "Tolst" and "oi" and the text "(9. September 1828 – 20. November 1910)" is inserted in the middle. I think the {{Z|Z38989}} is indeed too hacky. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 13:53, 10 August 2026 (UTC) :The example you've given is from another function? Can you add a test on [[Z38987]] that shows it's too hacky? (BTW I don't think the Dutch test should be wrapped with default tags, because it is in fact drawing on a Dutch function. By adding more here you were double wrapping the [dz] - which actually is coming from a default, and was already tagged as such.) --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:05, 10 August 2026 (UTC) :Oh, maybe you meant [[Z38977]]? If so, I agree there's an issue, add the test there. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:09, 10 August 2026 (UTC) ::The Dutch is function is indeed called, but the tense is NOT changed. "is" is the present tense. it should be "was", in fact just like English. As the function only changes French and English all other languages stay in the present tense. Therefore I added a wrapper for default tags. I also noticed the double wrapping on [dz], but decided that the the extra wrapper was needed. If you want to continue on this route (using the present tense and replacing substrings) you better add a function per language and leave the default with wrapping. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 15:46, 10 August 2026 (UTC) :::As for {{Z|Z38987}} the Dutch example also gives present tense for [https://www.wikifunctions.org/wiki/Z38987?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z38987%22%2C%22Z38987K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q7243%22%7D%2C%22Z38987K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q36180%22%7D%2C%22Z38987K3%22%3A%22Z1157%22%7D Tolstoy] or Pompei in Dutch ("is" instead of "was") [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 15:51, 10 August 2026 (UTC) :::Thanks, sorry I didn't look at the Dutch properly. I've changed that test so that it will accept either a correct past tense or a wrapped present tense. I'm confident that I don't want double wrapping of [dz], because then it ends up in the HTML. Maybe I'll end up double wrapping then collapsing it back to single here. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 10:32, 11 August 2026 (UTC) ::::I replaced the {{Z|Z38989}} to use only default function on {{Z|Z33420}} that makes it no longer valid for English and French. For English there is already a seperate function. For French not. That has to be written as well as for other languages. I think this is the best future-proof solution. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 12:49, 21 August 2026 (UTC) :::::Yes, I think that seems okay. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:55, 21 August 2026 (UTC) == Can you please say what I do with this function? == I have created the [[Z39739]] function yesterday. but in the same day, it had no implementations, but I have created the [[Z39797]] implementation. but in the function, it says "Disconnected". but what I do with the implementation then say "Connected" on the function? [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 13:49, 21 August 2026 (UTC) :I've connected it for you. When you are a bit more experienced you can apply to be a "functioneer" and do this yourself. Until then the best place to ask is at [[Wikifunctions:Community_portal]] --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:56, 21 August 2026 (UTC) ::Thank you! [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 08:27, 22 August 2026 (UTC) == [[Z41189]] == Can you implement this function? [[User:ReXLer|ReXLer]] ([[User talk:ReXLer|talk]]) 14:34, 5 September 2026 (UTC) 3apgtizp8p0tp74wxlp5m2fj72obe0b 308981 308976 2026-09-05T14:46:10Z ReXLer 39813 /* Z41189 */ 308981 wikitext text/x-wiki {{Welcome/lang|user=99of9|welcominguser=Koavf|1=}} ―[[User:Koavf|Justin (<span style="color:grey">ko'''a'''vf</span>)]]<span style="color:red">❤[[User talk:Koavf|T]]☮[[Special:Contributions/Koavf|C]]☺[[Special:Emailuser/Koavf|M]]☯</span> 06:47, 13 September 2023 (UTC) == Split endswith ? == Hi, First thanks a lot for your help on [[Z11550]] (especially my stupid mistake of copy-paste). But I'm wondering, why split the endswith() ? (it look better and more effective with a tuple, no?) Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 11:55, 21 October 2023 (UTC) :{{ping|VIGNERON}} It wasn't evaluating, so I tried to fix it. I'm no expert, but it looks like the Python function [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith endswith] can only take one string argument (and another to optionally set the end position). I'm glad you're having a go, it will be interesting to see if we can get lots of activity in lots of languages. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:59, 21 October 2023 (UTC) ::{{ping|99of9}} ah! of course! thanks a lot for your comment, I made an obvious mistake (it wasn't really a tuple, so not one argument, now it's fixed). ::I'll try te create more functions for French and Breton in the coming days/weeks. ::Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 12:16, 21 October 2023 (UTC) :::OK! Well now I'm learning too! Thanks. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:20, 21 October 2023 (UTC) == Review == Hi, As I said before, I created a couple of wikifunctions for Breton. They are listed here: Wikifunctions:Catalogue#Breton_String_operations Feel free to look at them and tell me what you think (I see you already added labels and description in English, thanks!). Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 11:11, 1 November 2023 (UTC) :Hi {{ping|VIGNERON}} yes, I saw these. I think you're doing well. I'm afraid I don't know the language, so I can't be much help, but I'll try to keep adding English labels. For consistency, I suggest that all morphemes associated with a language should have the language at the start of their label, so "English plural", "Breton plural", "Breton ***". --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 11:28, 1 November 2023 (UTC) ::Ah, good point, thanks. I'll harmonize that for English labels right now. Cheers, [[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 13:19, 1 November 2023 (UTC) == [[Z12828]] == Hi, I was using this as a presumably simple test case to familiarize myself better with the workflows on this wiki, and I got lost in multiple ways, so thanks for chiming in. I will drop off now but will check back in tomorrow to see what you made out of it. [[User:Daniel Mietchen|Daniel Mietchen]] ([[User talk:Daniel Mietchen|talk]]) 00:28, 23 January 2024 (UTC) :{{re|Daniel Mietchen}} I've overhauled it a bit. Denny suggested using plain strings as often as possible at first (let me know if you want me to find a link to the discussion). Apart from types, the other main thing that was stopping the python was the whitespace(!). It requires tabbed indents not single spaces. Now that it runs, have a think about what you want the output to be for the test cases I added. I put in my suggestions (which the composition implementation [[Z12834]] conforms to), but am happy to switch them if you prefer different outputs. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:56, 23 January 2024 (UTC) ::Oops, I didn't see your comment on capitalisation when it came up [https://www.wikifunctions.org/w/index.php?title=Z12833&diff=76274&oldid=76268]. The reason I think it should just preserve whatever the incoming capitalisation is, is so that it still works at the start of a sentence, or in a database, etc. It's also safe enough, because I imagine that the users of this function will format their input to ensure they get what they want as output. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:05, 23 January 2024 (UTC) :::Thanks, this gives me some things to chew on. --[[User:Daniel Mietchen|Daniel Mietchen]] ([[User talk:Daniel Mietchen|talk]]) 23:30, 23 January 2024 (UTC) == Comments on Type proposals == Hey, admin(?). You added a Comments section to the Natural number type proposal and it included a subscription widget. The blankish template at [[Wikifunctions:Type proposals/(unnamed – new)]] lost that feature and I can’t see how you did it in the first place. Maybe you can fix this for all the proposals (or share your wizardry)? [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 08:57, 13 March 2024 (UTC) :I just tested and it appears when you sign a signature! (And disappears when you delete your signature.) So I've left a "support as proposer" in the template to prompt the creator to sign. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:17, 14 March 2024 (UTC) ::{{Done}} thank you. And congratulations on your elevation! [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 01:58, 14 March 2024 (UTC) == [[Z14597]] == Hi 99of9,<br> Thanks for all the wonderful work.<br> Regarding [[Z14597]], sorry, my mistake, can the string be deleted? I created it by mistake and I don't expect it to be used.<br> Thank you, · <b dir="ltr">[[User:מקף|<sup>מקף </sup>Hyphen]]<sub>[[User talk:מקף| &#3572;]]</sub></b> · 03:00, 31 March 2024 (UTC) :Sure. Done. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 04:01, 31 March 2024 (UTC) == English labels == Hi, please don’t mangle our language when labelling 😎 “English suffix word” is practically incomprehensible and “English natural number to ordinal” is positively misleading (it is the ordinal that is in English, not the Natural number). As you no doubt have a plan, perhaps you should articulate it at [[Wikifunctions:Naming conventions]] or [[Wikifunctions talk:Best practices#Wikifunctions:Naming conventions]]. Cheers! [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 07:54, 3 April 2024 (UTC) :I see what you mean. The idea/"plan" is that with the expected proliferation of language-related functions, that the language they apply to should be ultra-prominent (i.e. first word IMO, so that searches with the language only give you a comprehensive list). Once categories are up and working, this may not matter so much. In the meantime, would colons be sufficient to achieve both goals? "English: suffix word" and "English: natural number to ordinal"? --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 00:48, 4 April 2024 (UTC) ::Yeah, I guessed 😎 It’s hard to prove the negative, but I believe that searches already return a comprehensive list if just the language is specified. My personal preference is for function names (in particular) to have a label that is as close as possible to an idiomatic phrase in the language in which it is expressed. If the natural language prefix is decided upon, I would favour “English: suffix English word” and “English: Natural number to English ordinal”. If we move further away from idiomatic names, I might prefer “English String ordinal from Natural number” and “English String from word and suffix”. This puts the function’s return type in the more prominent position that it deserves (and, yes, I would prefer a Monolingual string return type). The implication there, though, is that the function that turns 23rd to 23 should be called “Natural number from numeric ordinal with English suffix” (unlucky guess: [[Z14542]]😏). That said, “Natural number sum of two Natural numbers” does lack a degree of panache 🤷‍♂️ [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 21:14, 4 April 2024 (UTC) :::Ok, I've restored them at least for now. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:59, 5 April 2024 (UTC) ::::Feel free to march boldly on. Your contributions are much appreciated (99% of the time) 🙏 [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 03:39, 5 April 2024 (UTC) == Spambot block == Can I ask why [[Special:Redirect/logid/63908]] was only 2 hours? I was going to block them indefinitely until I saw your prior block and figured there was probably a reason. I also reported them to [[:m:SRG]] for a global lock. --[[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 19:41, 9 April 2024 (UTC) :Since I caught them in the act, I was just trying to interrupt the next post, so they would move along. I expect they will not come back no matter how long the block. But I have no concern if you want to make it indefinite. I'm not particularly experienced with blocking. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:01, 10 April 2024 (UTC) ::My rule of thumb is that spam-only accounts get indefinitely blocked, but with talk page access enabled in case it turns out that they were not intending to spam or something like that (had that happen to me once I think - blocked someone who just didn't understand that it wasn't allowed and wanted to contribute positively). Anyway, the account is now globally locked so it doesn't really matter --[[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 03:46, 10 April 2024 (UTC) == Can you have a look == Hi {{BASEPAGENAME}} hope you fine, I'm just working on a function called "area of a circle" that uses rational numbers. I was having problems doing arithmetic with this type of number and, since there's no documentation I can refer to, I was trying it here and there until I got to this final [[Special:PermanentLink/161945|formula]] that uses pi as input. Can you take a look and give me some suggestions? Or do it if you want. Regards --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 22:19, 31 January 2025 (UTC) :Hi Mohanad. Is there a reason you want to use rational numbers as input and output? It seems a bit strange to me, because pi is an irrational number. So, at least for the output, I would suggest using float64. But anyway, I'll take a look now at what you have tried already. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:32, 31 January 2025 (UTC) ::I also wouldn't have a function input for pi. Since it is a constant, it doesn't make much sense for the user of the function to feed in their own personal value. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:42, 31 January 2025 (UTC) :::I know, I tried to use it directly many times (22*num) & (7*dem) but didn't work for me -[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 22:46, 31 January 2025 (UTC) ::::Ah, I see. That might be because 22 and 7 are not Bigint types. You would need 22n and 7n. But I think we should go for something more accurate than 22/7 anyway. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:49, 31 January 2025 (UTC) :::::I've changed it a bit so that everything now passes. But it sounds like you're happy if I remove the pi parameter? [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:55, 31 January 2025 (UTC) :::::To be honest, I didn't use float64. Will it work fine with js if the input type has changed? or Or need special work around too, if 22n & 7n work arithmetically fine, then there will be no need for pi input. --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 23:01, 31 January 2025 (UTC) ::::::I've made [[Z22039]] which doesn't use the pi parameter, and uses 22n/7n as it's approximation for pi. But even if we stick with rational numbers, we could use a much better approximation. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:12, 31 January 2025 (UTC) ::::::Changing either input or output types will mean that we need to rewrite the implementations. Since we have almost completed this rational version, I suggest making a new function with float64 types instead. But yes, let's remove the pi parameter on this one too. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:16, 31 January 2025 (UTC) ::::::Thx for help, if there is any documentation for advanced js implementation it will be helpful, thx again --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 23:23, 31 January 2025 (UTC) :The [[wf:Community portal]] is a better place to put things like this to open more participation and to not ping randomly. [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 22:34, 31 January 2025 (UTC) == Kleenean label == Hi {{BASEPAGENAME}}, is [[special:diff/162900|it]] wrong? --[[User:Mohanad|Mohanad]] ([[User talk:Mohanad|talk]]) 10:06, 5 February 2025 (UTC) :Oh, sorry, I think we might have both tried to edit at the same time. I was just trying to edit the English labels. Feel free to undo my edit, or redo yours. [[User:99of9|99of9]] ([[User talk:99of9|talk]]) 10:09, 5 February 2025 (UTC) == [[Z21949]] == Hey @[[User:99of9|99of9]], quick question - How is this different from just using [[Z20844]] or [[Z21939]]? Currently the above just works like the python version (only impl. is a composition referencing the python func)? Thanks! <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 14:13, 23 February 2025 (UTC) :Sorry, my previous answer was a phone, and I didn't understand your question. I'll try again now. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:04, 23 February 2025 (UTC) :[[Z21949]] is where we choose what Wikifunctions should displays by default (without language configuration). At the moment it simply copies what Python would display. But if we ever want to deviate from Python, we can code it there. In particular, I think we may want different notation for qnan and snan, since they are different special values, but show up the same in the python output. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 23:07, 23 February 2025 (UTC) ::I see, thanks for this explanation! <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 01:13, 24 February 2025 (UTC) == Wikidata search examples == : [[wikidata:Special:Search/:haswbstatement:P31=Q11344|Chemical elements (P31=Q11344)]] : [[wikidata:Special:Search/:haswbstatement:P1086 17|Items with atomic number property and 17]] It is supposed to be possible to combine properties and their values but I didn’t get to to work here. It should be possible (and straightforward) to include something like this in the WD item selector, given prior selection of the relevant Type. (But this is also true for WF objects in the object selector, and it’s anybody’s guess why we don’t do this.) [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 10:36, 7 March 2025 (UTC) == Trig functions suggestions == Thanks.. I'd put the constraint (or range in) based on what I'd ecnountered in typical usage, but agree with you.. It's a shame I can't use <nowiki><math></nowiki> tags, as for other functions it would make it easer to give more formalised defnitions for some functions. a Tan function would be an infinite or (Nan) at specific input values for example.. basic trig functions are something that should exist, but I am wondering if there are other trig functions that should also be supported as well.. [[User:ShakespeareFan00|ShakespeareFan00]] ([[User talk:ShakespeareFan00|talk]]) 18:41, 27 March 2025 (UTC) :Yes, it would be good to get the math markup working. I think most of the trig functions do already exist. Here are [[Z12473]] and [[Z16463]]. There are plenty of others in [[Wikifunctions:Catalogue/Number_operations]]. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 01:56, 28 March 2025 (UTC) == Day of roman year format for English == Hi. What is the best format for {{Z|Z20342}} in {{Z|Z1002}} and {{Z|Z1124}}? For {{Z|Z20420}}, the dmy format is used both for reading and for display functions, but I see that in {{Z|Z22940}} you print a {{Z|Z20342}} in the md format. Isn't it a bit inconsistent, or it follows an English convention that I am not aware of? What is the best format for {{Z|Z24990}}? (In other terms: how should {{Z|Z24990}} interpret the input "2/3" with {{Z|Z1002}} as the input language?) [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 09:12, 9 June 2025 (UTC) :Yes, there is inconsistency here. It's hard because different variants of English use different formats, so "en" will never suit everyone. I'd say we should usually default to whatever the en-wiki style is. Then let the variants choose their own most appropriate format. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:56, 9 June 2025 (UTC) ::What is the en-wiki style for day-month display? [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 15:04, 9 June 2025 (UTC) :::It looks like both are equally permitted by the Manual of Style [[:w:Wikipedia:Manual_of_Style/Dates_and_numbers#Dates,_months,_and_years]], and the templates appear to localise according to the citizenship of biographies. I'm not sure which is more frequent overall. So maybe this is not giving us much guidance actually. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:15, 10 June 2025 (UTC) ::::Perhaps it's better to extend the discussion to the wider community [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 07:12, 10 June 2025 (UTC) == Checking in about presentation == Hi there! I am aware of your upcoming presentation at WikiCon Australia! Thank you, and I am excited about it! Given everything is a bit afloat again, right now, I wanted to check in if there is something that isn't working and it should. I was aware of the problems with [[Z25785]] and hope that these are resolved. I am also aware that embedded functions are currently not working, as well as issues on Abstract Wikipedia -- but I wanted to check if there is any specific function that used to work and doesn't right now? Cheers --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:09, 7 April 2026 (UTC) :Hi {{ping|Denny}}. Thanks for the check in. I was hoping to show an embedded function. I picked a fairly ambitious one, but would be happy to scale back to a simpler one if some of them can work within time limits. Here is a function list: :* [[Z28509]], relies heavily on [[Z25785]] but also on language configuration for good output display :** status: working :** risk: currently relying on a temporary measure described in [https://phabricator.wikimedia.org/T419789 T419789] :** possible improvements: another language label and description would help, so I can show it without (en) everywhere :* [[Z28005]], specifically [https://www.wikifunctions.org/view/en/Z28005?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z28005%22%2C%22Z28005K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q2565882%22%7D%2C%22Z28005K2%22%3A%7B%22Z1K1%22%3A%22Z20420%22%2C%22Z20420K1%22%3A%7B%22Z1K1%22%3A%22Z20159%22%2C%22Z20159K1%22%3A%7B%22Z1K1%22%3A%22Z17813%22%2C%22Z17813K1%22%3A%22Z17814%22%7D%2C%22Z20159K2%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%222025%22%7D%7D%2C%22Z20420K2%22%3A%7B%22Z1K1%22%3A%22Z20342%22%2C%22Z20342K1%22%3A%7B%22Z1K1%22%3A%22Z16098%22%2C%22Z16098K1%22%3A%22Z16104%22%7D%2C%22Z20342K2%22%3A%7B%22Z1K1%22%3A%22Z13518%22%2C%22Z13518K1%22%3A%2210%22%7D%7D%7D%7D this query] and I was hoping to show it as an embedded function provisionally at [[User:99of9/sandbox3]] :** status: function working, but embedding not per [https://phabricator.wikimedia.org/T422299 T422299] :* [[Z32919]], called from Abstract Wikipedia at [[:abstract:Q55771891]], but also I'll create another similar suburb with a population on the spot. :** status: needs "retry" on AW. Even works in German - danke! :** possible improvement: the other (instantiating) sentence on that AW page doesn't work in German, because I picked {{Q|Q7632426}} as its category item which doesn't have an associated lexeme. But I don't mind showing this as a pointer to future work, because the error message is relatively clear. :Overall I'm relatively comfortable with the current state, so I hope nothing breaks before the weekend! --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:35, 7 April 2026 (UTC) :{{ping|Denny}} Another high priority for live demonstrations would be [https://phabricator.wikimedia.org/T406784 T406784]. It is likely to trip me up if someone asks to see how to make an implementation (if I don't get it right first time). But I imagine this is a much harder one to solve quickly. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 02:33, 8 April 2026 (UTC) == You may be an eligible candidate for the U4C election == <div lang="en" dir="ltr" class="mw-content-ltr"> Greetings, The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] seeks candidates for the 2026 election. The U4C is the global committee responsible for overseeing enforcement of the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]]. Elections are held annually, if elected a committee member serves for two years. This year the U4C requires candidates to hold administrator rights on at least one wiki, which is why you are being contacted as you appear to hold this right. There are other requirements, such as candidates must be at least 18 years old and may not be employed by the Wikimedia Foundation or other related chapters and affiliates. You can find more information in the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026#Call_for_Candidates|call for candidates on Meta-wiki]]. Additionally, the committee's working language is English; some ability to communicate in English is required. The election opens on 18 May, if you are eligible and interested you have until 10 May to submit your candidacy. There will be a week in between for candidates to answer questions from the community. Voting takes place privately in [[m:Special:MyLanguage/SecurePoll|SecurePoll]], successful candidates must receive at least 60% support. More information is available on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|the 2026 Elections page]], including timelines and other candidacy information. If you read over the material and consider yourself qualified, please consider submitting your name to run for the committee. If you think someone else in your community might be interested and qualified, please encourage them to run. In partnership with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 20:10, 29 April 2026 (UTC) </div> <!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/test&oldid=30477306 --> == Sentences in past tense == 99of9 sentences in past tense result in sovm very strange results. for instance [https://www.wikifunctions.org/view/en/Z38757?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z38757%22%2C%22Z38757K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q7243%22%7D%2C%22Z38757K2%22%3A%5B%22Z6091%22%5D%2C%22Z38757K3%22%3A%5B%22Z6091%22%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q214917%22%7D%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4964182%22%7D%2C%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q845653%22%7D%5D%2C%22Z38757K4%22%3A%22Z1430%22%7D this past tsens in German] results ❌≪Lew Nikolajewitsch Tolst (9. September 1828 – 20. November 1910)oi ist ein Dramatiker, Philosoph, et cetera.≫❌🔧 where the name of Tolstoi is split into "Tolst" and "oi" and the text "(9. September 1828 – 20. November 1910)" is inserted in the middle. I think the {{Z|Z38989}} is indeed too hacky. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 13:53, 10 August 2026 (UTC) :The example you've given is from another function? Can you add a test on [[Z38987]] that shows it's too hacky? (BTW I don't think the Dutch test should be wrapped with default tags, because it is in fact drawing on a Dutch function. By adding more here you were double wrapping the [dz] - which actually is coming from a default, and was already tagged as such.) --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:05, 10 August 2026 (UTC) :Oh, maybe you meant [[Z38977]]? If so, I agree there's an issue, add the test there. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 14:09, 10 August 2026 (UTC) ::The Dutch is function is indeed called, but the tense is NOT changed. "is" is the present tense. it should be "was", in fact just like English. As the function only changes French and English all other languages stay in the present tense. Therefore I added a wrapper for default tags. I also noticed the double wrapping on [dz], but decided that the the extra wrapper was needed. If you want to continue on this route (using the present tense and replacing substrings) you better add a function per language and leave the default with wrapping. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 15:46, 10 August 2026 (UTC) :::As for {{Z|Z38987}} the Dutch example also gives present tense for [https://www.wikifunctions.org/wiki/Z38987?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z38987%22%2C%22Z38987K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q7243%22%7D%2C%22Z38987K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q36180%22%7D%2C%22Z38987K3%22%3A%22Z1157%22%7D Tolstoy] or Pompei in Dutch ("is" instead of "was") [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 15:51, 10 August 2026 (UTC) :::Thanks, sorry I didn't look at the Dutch properly. I've changed that test so that it will accept either a correct past tense or a wrapped present tense. I'm confident that I don't want double wrapping of [dz], because then it ends up in the HTML. Maybe I'll end up double wrapping then collapsing it back to single here. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 10:32, 11 August 2026 (UTC) ::::I replaced the {{Z|Z38989}} to use only default function on {{Z|Z33420}} that makes it no longer valid for English and French. For English there is already a seperate function. For French not. That has to be written as well as for other languages. I think this is the best future-proof solution. [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 12:49, 21 August 2026 (UTC) :::::Yes, I think that seems okay. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 12:55, 21 August 2026 (UTC) == Can you please say what I do with this function? == I have created the [[Z39739]] function yesterday. but in the same day, it had no implementations, but I have created the [[Z39797]] implementation. but in the function, it says "Disconnected". but what I do with the implementation then say "Connected" on the function? [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 13:49, 21 August 2026 (UTC) :I've connected it for you. When you are a bit more experienced you can apply to be a "functioneer" and do this yourself. Until then the best place to ask is at [[Wikifunctions:Community_portal]] --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 22:56, 21 August 2026 (UTC) ::Thank you! [[User:Armin hpj|Armin hpj]] ([[User talk:Armin hpj|talk]]) 08:27, 22 August 2026 (UTC) == [[Z41189]] == Can you implement this function? (Also can you connect the test cases?) [[User:ReXLer|ReXLer]] ([[User talk:ReXLer|talk]]) 14:34, 5 September 2026 (UTC) e6aayrtsewn9lgipovtlt1okkl9piga Z11853 0 17544 309382 210344 2026-09-06T09:26:25Z 鈴音雨 101019 japanese 309382 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z11853" }, "Z2K2": "", "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "empty string" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "leere Zeichenkette" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "chaîne vide" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "stringa vuota" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "празна ниска" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "空の文字列" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "null string", "blank string", "zero code point string" ] }, { "Z1K1": "Z31", "Z31K1": "Z1181", "Z31K2": [ "Z6", "празан стринг" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "空文字列" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The string containing no characters" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zeichenkette ohne Inhalt" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "la chaîne ne contient pas de caractères" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Stringa che non contiene alcun carattere" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "Ниска која не садржи ниједан знак" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "1文字も入っていない文字列" } ] } } 1ot35aafaj0ytqcl7vbcg17exsiokl7 Z15717 0 29021 308937 257209 2026-09-05T14:04:41Z 鈴音雨 101019 308937 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z15717" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z15717K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "argument" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "আর্গুমেন্ট" }, { "Z1K1": "Z11", "Z11K1": "Z1381", "Z11K2": "argumento" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "argument" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Argument" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "引数" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z15719", "Z15720", "Z15721", "Z15724", "Z15725", "Z15792", "Z15807", "Z17064", "Z19062", "Z19098" ], "Z8K4": [ "Z14", "Z32016", "Z15773", "Z15722", "Z17062", "Z17080", "Z15806", "Z19061" ], "Z8K5": "Z15717" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is Boolean" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "bụ Boolean" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "এটি কি বুলিয়ান" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "è Booleano" }, { "Z1K1": "Z11", "Z11K1": "Z1381", "Z11K2": "é Booleano" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "est-ce un booléen ?" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "ist boolesch" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "真偽値型判定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "has type Boolean" ] }, { "Z1K1": "Z31", "Z31K1": "Z1011", "Z31K2": [ "Z6", "কী বুলিয়ান" ] }, { "Z1K1": "Z31", "Z31K1": "Z1381", "Z31K2": [ "Z6", "tem tipo Booleano" ] }, { "Z1K1": "Z31", "Z31K1": "Z1004", "Z31K2": [ "Z6", "a le type Booléen", "est de type Booléen", "est Booléen" ] }, { "Z1K1": "Z31", "Z31K1": "Z1360", "Z31K2": [ "Z6", "\"Z1K1\": \"Z40\"" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "ブール型判定", "ブーリアン型判定" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns True if the argument is Boolean" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "laghachi Ezi ma ọ bụrụ na arụmụka bụ Boolean" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "ফলাফল হবে সত্য যদি ইনপুটের ধরণ বুলিয়ান তথা সত্য-মিথ্যা হয়" }, { "Z1K1": "Z11", "Z11K1": "Z1381", "Z11K2": "retorna Verdadeiro se o argumento for Booleano" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "renvoie \"vrai\" si l'argument est un booléen, sinon \"faux\"" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt wahr aus, wenn das Argument ein boolescher Wert ist" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "引数がブーリアン型の場合、真を返す" } ] } } pn99ezh4bn1pok1w0v2toqcote33n34 Z16101 0 30082 308891 300046 2026-09-05T12:49:32Z 鈴音雨 101019 japanese 308891 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16101" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16101" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "January" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "januari" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Ιανουάριος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "styczeń" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "জানুয়ারি" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "janvier" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Genver" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Januar" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "ינואר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "gennaio" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "janeiro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Январь" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "يناير" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "tammikuu" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "јануар" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "januar" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "जनवरी" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Ocak" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "leden" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "januari" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "1月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Γενάρης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "jan" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "jan", "jan." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "睦月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "pierwszy miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির প্রথম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Monat im Gregorianischen und Julianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } eib2p30i8unk0o34nks1q427yr2iq3k Z16102 0 30083 308892 300047 2026-09-05T12:49:52Z 鈴音雨 101019 japanese 308892 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16102" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16102" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "February" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "februari" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Φεβρουάριος " }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "luty" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "ফেব্রুয়ারি" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "février" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "C'hwevrer" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Februar" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "פברואר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "febbraio" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "fevereiro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Февраль" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "فبراير" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "helmikuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "februar" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "фебруар" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "फरवरी" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Şubat" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "únor" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "februari" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "2月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Φλεβάρης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "fev" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "feb", "feb." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "如月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "drugi miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির দ্বিতীয় মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweiter Monat des Gregorianischen Kalenders" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } r2xuxfvzg3142gs2xzybr42s4vgfmdv Z16103 0 30084 308893 300048 2026-09-05T12:50:07Z 鈴音雨 101019 japanese 308893 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16103" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16103" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "March" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "mars" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Μάρτιος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "marzec" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "মার্চ" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "mars" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Meurzh" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "März" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מרץ" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "marzo" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "março" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Март" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "مارس" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "maaliskuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "mart" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "март" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "मार्च" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Mart" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "březen" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "maart" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "3月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Μάρτης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "mar" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "mrt", "mrt." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "弥生" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "trzeci miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির তৃতীয় মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "dritter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } 9mwivwfey1xyx40x7k2kudtf66o34st Z16104 0 30085 308894 300049 2026-09-05T12:50:22Z 鈴音雨 101019 japanese 308894 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16104" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16104" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "April" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "april" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Απρίλιος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "kwiecień" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "এপ্রিল" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "avril" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Ebrel" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "April" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "אפריל" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "aprile" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "abril" }, { "Z1K1": "Z11", "Z11K1": "Z1541", "Z11K2": "ապրիլ" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Апрель" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "أبريل" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "huhtikuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "april" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "април" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "अप्रैल" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Nisan" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "duben" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "april" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "4月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Απρίλης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "abr" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "apr", "apr." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "卯月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "czwarty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির চতুর্থ মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "vierter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } f1qptiw1fnswz6k6voz8y9k6ftppf1z Z16105 0 30086 308895 300050 2026-09-05T12:50:41Z 鈴音雨 101019 japanese 308895 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16105" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16105" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "May" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "maj" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Μάϊος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "maj" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "মে" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "mai" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Mae" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Mai" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מאי" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "maggio" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "maio" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Май" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "مايو" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "toukokuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "maj" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "мај" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "मई" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Mayıs" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "květen" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "mei" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "5月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "mai" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "皐月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "piąty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির পঞ্চম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "fünfter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } 7f82jlmjyaknn51yvvzdnmmfmlg6do4 Z16106 0 30087 308896 300051 2026-09-05T12:50:54Z 鈴音雨 101019 japanese 308896 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16106" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16106" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "June" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "juni" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Ιούνιος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "czerwiec" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "জুন" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "juin" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Even" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Juni" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "יוני" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "giugno" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "junho" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Июнь" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "يونيو" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "kesäkuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "jun" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "јун" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "June" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "जून" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Haziran" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "červen" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "juni" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "6月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Ιούνης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1282", "Z31K2": [ "Z6", "Mezheven" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "jun" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "jun", "jun." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "水無月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "szósty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির ষষ্ঠ মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "sechster Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "sixth month of de year" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } fq5mb1ar6pw8cq1tk14c7qtb085wxyb Z16107 0 30088 308897 300052 2026-09-05T12:51:22Z 鈴音雨 101019 japanese 308897 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16107" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16107" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "July" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "juli" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Ιούλιος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "lipiec" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "জুলাই" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "juillet" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Gouere" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Juli" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "יולי" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "luglio" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "julho" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Июль" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "يوليو" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "heinäkuu" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "јул" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "jul" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "जुलाई" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Temmuz" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "červenec" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "juli" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "7月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Ιούλης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "jul" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "jul", "jul." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "文月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "siódmy miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির সপ্তম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "siebter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } injo2or5dzqtnklhfoztatsmsdm6ebz Z16108 0 30089 308898 300053 2026-09-05T12:51:42Z 鈴音雨 101019 japanese 308898 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16108" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16108" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "August" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "augusti" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Αύγουστος " }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "sierpień" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "আগস্ট" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "août" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Eost" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "August" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "אוגוסט" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "agosto" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "agosto" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Август" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "أغسطس" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "elokuu" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "август" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "avgust" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "अगस्त" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Ağustos" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "srpen" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "augustus" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "8月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1004", "Z31K2": [ "Z6", "aout" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "ago" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "aug", "aug." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "葉月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "ósmy miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির অষ্টম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "achter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } b58yqyq9j641nmjv2degu0j1gb4y1it Z16109 0 30090 308899 300054 2026-09-05T12:52:02Z 鈴音雨 101019 japanese 308899 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16109" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16109" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "September" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "september" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Σεπτέμβριος " }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "wrzesień" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "সেপ্টেম্বর" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "septembre" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Gwengolo" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "September" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "ספטמבר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "settembre" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "setembro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Сентябрь" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "سبتمبر" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "September" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "syyskuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "septembar" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "септембар" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "सितंबर" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Eylül" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "září" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "september" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "9月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Σεπτέμβρης " ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "set" ] }, { "Z1K1": "Z31", "Z31K1": "Z1877", "Z31K2": [ "Z6", "Sept" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Sept" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "sept", "sept." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "長月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "dziewiąty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির নবম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "neunter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "ninth month insyd de Julian den Gregorian calendars" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "ninth month in the Julian and Gregorian calendars" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "deveti mesec julijanskog i gregorijanskog kalendara" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "девети месец јулијанског и грегоријанског календара" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } pwsh6skids1xyq4lj13vdxhb70gdoba Z16110 0 30091 308900 300055 2026-09-05T12:52:20Z 鈴音雨 101019 japanese 308900 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16110" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16110" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "October" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "oktober" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Οκτώβριος " }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "październik" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "অক্টোবর" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "octobre" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Here" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Oktober" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "אוקטובר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "ottobre" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "outubro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Октябрь" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "October" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "أكتوبر" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "lokakuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "oktobar" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "октобар" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "अक्टूबर" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Ekim" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "říjen" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "oktober" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "10月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Οκτώβρης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "out" ] }, { "Z1K1": "Z31", "Z31K1": "Z1877", "Z31K2": [ "Z6", "10. month" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "okt", "okt." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "神無月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "dziesiąty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির দশম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zehnter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1877", "Z11K2": "Oct" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } ase629jcd9cvkxds6o2surum3d0jj8q Z16111 0 30092 308901 300056 2026-09-05T12:52:39Z 鈴音雨 101019 japanese 308901 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16111" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16111" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "November" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "november" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Νοέμβριος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "listopad" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "নভেম্বর" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "novembre" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Du" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "November" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "נובמבר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "novembre" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "novembro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Ноябрь" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "نوفمبر" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "marraskuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "novembar" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "новембар" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "नवंबर" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Kasım" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "listopad" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "november" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "11月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Νοέμβρης " ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "nov" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "nov", "nov." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "霜月" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "jedenasty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির একাদশতম মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "elfter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } j72i2owctyap4gigpzpwu6sdk2vyk3b Z16112 0 30093 308902 300061 2026-09-05T12:52:56Z 鈴音雨 101019 japanese 308902 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16112" }, "Z2K2": { "Z1K1": "Z16098", "Z16098K1": "Z16112" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "December" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "december" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "Δεκέμβριος" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "grudzień" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "ডিসেম্বর" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "décembre" }, { "Z1K1": "Z11", "Z11K1": "Z1282", "Z11K2": "Kerzu" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Dezember" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "דצמבר" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "dicembre" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "dezembro" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Декабрь" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "ديسمبر" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "joulukuu" }, { "Z1K1": "Z11", "Z11K1": "Z1394", "Z11K2": "decembar" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "децембар" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "दिसंबर" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "Aralık" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "prosinec" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "december" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "12月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1827", "Z31K2": [ "Z6", "Δεκέμβρης" ] }, { "Z1K1": "Z31", "Z31K1": "Z1037", "Z31K2": [ "Z6", "dez" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "dec", "dec." ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "師走" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "månad i den gregorianska kalendern" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "μήνας στο Γρηγοριανό ημερολόγιο" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "dwunasty miesiąc w kalendarzu gregoriańskim" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "গ্রেগরীয় বর্ষপঞ্জির দ্বাদশ মাস" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zwölfter Monat des Jahres im gregorianischen Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "měsíc gregoriánského kalendáře" } ] } } q9ob3tfd9kinf3hixe74fbyn7xn8ubb Z16659 0 31382 309437 282420 2026-09-06T10:00:39Z 鈴音雨 101019 japanese 309437 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16659" }, "Z2K2": { "Z1K1": "Z4", "Z4K1": "Z16659", "Z4K2": [ "Z3", { "Z1K1": "Z3", "Z3K1": "Z16659", "Z3K2": "Z16659K1", "Z3K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "identity" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Identität" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "identité" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "identità" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "पहचान" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "識別子" } ] }, "Z3K4": { "Z1K1": "Z40", "Z40K1": "Z41" } } ], "Z4K3": "Z101", "Z4K4": "Z16667", "Z4K7": [ "Z46", "Z16663", "Z16664" ], "Z4K8": [ "Z64", "Z16665", "Z16666" ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Sign" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "akara (Ejila banye )" }, { "Z1K1": "Z11", "Z11K1": "Z1332", "Z11K2": "Знак" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Vorzeichen" }, { "Z1K1": "Z11", "Z11K1": "Z1099", "Z11K2": "Virzeechen" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "চিহ্ন" }, { "Z1K1": "Z11", "Z11K1": "Z1061", "Z11K2": "fortegn" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "Znaménko" }, { "Z1K1": "Z11", "Z11K1": "Z1272", "Z11K2": "predznak" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "סימן" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "πρόσημο " }, { "Z1K1": "Z11", "Z11K1": "Z1381", "Z11K2": "Sinal" }, { "Z1K1": "Z11", "Z11K1": "Z1709", "Z11K2": "Zīme" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Tanda" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "signe" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "Semn" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "إشارة" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Segno" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "etumerkki" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "Знак" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "चिह्न" }, { "Z1K1": "Z11", "Z11K1": "Z1237", "Z11K2": "işaret" }, { "Z1K1": "Z11", "Z11K1": "Z1645", "Z11K2": "数符" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "符号" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "charge sign" ] }, { "Z1K1": "Z31", "Z31K1": "Z1186", "Z31K2": [ "Z6", "כיווניות מספר" ] }, { "Z1K1": "Z31", "Z31K1": "Z1381", "Z31K2": [ "Z6", "sinal de carga" ] }, { "Z1K1": "Z31", "Z31K1": "Z1181", "Z31K2": [ "Z6", "знак наелектрисања" ] }, { "Z1K1": "Z31", "Z31K1": "Z1645", "Z31K2": [ "Z6", "正\u0026负号", "符号" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The sign of a number" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "কোনো সংখ্যার চিহ্ন" }, { "Z1K1": "Z11", "Z11K1": "Z1061", "Z11K2": "fortegnet af et tal" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "znaménko čísla" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "סימן של מספר מכוון" }, { "Z1K1": "Z11", "Z11K1": "Z1827", "Z11K2": "το πρόσημο ενός αριθμού (θετικό, αρνητικό ουδέτερο)" }, { "Z1K1": "Z11", "Z11K1": "Z1381", "Z11K2": "O sinal de um número" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Tanda dari sebuah angka." }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "signe d'un nombre" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "Semnul unui număr " }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "إشارة العدد" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Il segno di un numero" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "Знак броја" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "किसी संख्या का चिह्न" }, { "Z1K1": "Z11", "Z11K1": "Z1645", "Z11K2": "数字的符号" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数字の符号" } ] } } 1x3a6kud4dhycin6mfrbc12gd9q7iit Z16688 0 31411 309375 296293 2026-09-06T09:22:30Z 鈴音雨 101019 japanese 309375 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16688" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z16688K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "this" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "একটি পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "premier entier" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "primo intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "erste Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "هذا" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "ini" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "1番目の整数" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z16688K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "that" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "আরেকটি পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "second entier" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "secondo intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweite Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "ذاك" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "itu" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "2番目の整数" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z16689", "Z16691", "Z17261", "Z17461" ], "Z8K4": [ "Z14", "Z16692", "Z17350", "Z17260", "Z17463", "Z16690" ], "Z8K5": "Z16688" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "same Integer" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "একই পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "est-ce le même nombre entier ?" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "stesso Intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gleiche Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "نفس العدد الصحيح" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bilangan bulat yang sama" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数の一致" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "integer equality", "equality of integers", "equal integers", "integers equal", "=" ] }, { "Z1K1": "Z31", "Z31K1": "Z1011", "Z31K2": [ "Z6", "সমান পূর্ণসংখ্যা", "সম সংখ্যা", "পূর্ণ সংখ্যার সমতা" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "uguaglianza tra interi", "interi uguali" ] }, { "Z1K1": "Z31", "Z31K1": "Z1078", "Z31K2": [ "Z6", "kesamaan bilangan bulat", "bilangan bulat yang sama", "=" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "自然数の一致" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "যদি উভয় পূর্ণ সংখ্যা একই হয় তাহলে সত্য, অন্যথায় মিথ্যা প্রদান করবে" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns true if the integers are identical" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "renvoie \"vrai\" si les entiers sont identiques" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Ritorna Vero se i due interi sono identici" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt wahr aus, wenn die beiden Ganzzahlen identisch sind" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Mengembalikan nilai true jika bilangan bulatnya identik" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数が同一であれば真を返します。" } ] } } 3xzdq2eimoqu6gxo39hfpvm1koywafv 309376 309375 2026-09-06T09:22:54Z 鈴音雨 101019 fix 309376 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z16688" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z16688K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "this" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "একটি পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "premier entier" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "primo intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "erste Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "هذا" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "ini" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "1番目の整数" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z16688K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "that" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "আরেকটি পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "second entier" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "secondo intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweite Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "ذاك" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "itu" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "2番目の整数" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z16689", "Z16691", "Z17261", "Z17461" ], "Z8K4": [ "Z14", "Z16692", "Z17350", "Z17260", "Z17463", "Z16690" ], "Z8K5": "Z16688" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "same Integer" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "একই পূর্ণসংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "est-ce le même nombre entier ?" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "stesso Intero" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gleiche Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "نفس العدد الصحيح" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bilangan bulat yang sama" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数の一致" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "integer equality", "equality of integers", "equal integers", "integers equal", "=" ] }, { "Z1K1": "Z31", "Z31K1": "Z1011", "Z31K2": [ "Z6", "সমান পূর্ণসংখ্যা", "সম সংখ্যা", "পূর্ণ সংখ্যার সমতা" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "uguaglianza tra interi", "interi uguali" ] }, { "Z1K1": "Z31", "Z31K1": "Z1078", "Z31K2": [ "Z6", "kesamaan bilangan bulat", "bilangan bulat yang sama", "=" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "যদি উভয় পূর্ণ সংখ্যা একই হয় তাহলে সত্য, অন্যথায় মিথ্যা প্রদান করবে" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns true if the integers are identical" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "renvoie \"vrai\" si les entiers sont identiques" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Ritorna Vero se i due interi sono identici" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt wahr aus, wenn die beiden Ganzzahlen identisch sind" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Mengembalikan nilai true jika bilangan bulatnya identik" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数が同一であれば真を返します。" } ] } } 7nnfw8e3lrk7seed7v2e9oolkquozi1 Z17144 0 32510 309389 253790 2026-09-06T09:31:36Z 鈴音雨 101019 japanese 309389 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z17144" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z17144K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "integer" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "পূর্ণ সংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "ọnụọgụgụ: Ọnụọgụ" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "entier" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "intero" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bilangan bulat" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Ganzzahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "عدد صحيح" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数" } ] } } ], "Z8K2": "Z13518", "Z8K3": [ "Z20", "Z17148", "Z17198", "Z17199" ], "Z8K4": [ "Z14", "Z17212", "Z17196", "Z17146" ], "Z8K5": "Z17144" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "absolute value of integer as natural number" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "স্বাভাবিক সংখ্যা হিসেবে পূর্ণ সংখ্যার পরম মান" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "uru zuru oke nke ọnụọgụ dị ka ọnụọgụ eke" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "valeur absolue d'un entier naturel" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "valore assoluto di intero come numero naturale" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "nilai mutlak bilangan bulat -\u003E bilangan alami" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Absoluter Betrag von Ganzzahl als natürliche Zahl" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "القيمة المطلقة لعدد صحيح كعدد طبيعي" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数の絶対値を自然数として返す" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "abs", "absolute value", "absolute value of integer to natural number", "integer to natural number", "int to natural number" ] }, { "Z1K1": "Z31", "Z31K1": "Z1011", "Z31K2": [ "Z6", "পরম মান" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "絶対値", "整数から自然数" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "চিহ্ন ছাড়া শুধুমাত্র সংখ্যাটি প্রদান করবে, স্বাভাবিক সংখ্যার রূপে। " }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns the absolute value of the input as a natural number" }, { "Z1K1": "Z11", "Z11K1": "Z1014", "Z11K2": "Weghachite uru ntinye zuru oke dị ka ọnụọgụ eke" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Mengembalikan nilai mutlak yang dimasukkan dalam bilangan alami" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt den absoluten Betrag der Eingabe als natürliche Zahl aus" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "入力された整数の絶対値を自然数として返します" } ] } } atmib9p6mc3minlyk4dre34ks6zv9uz User:Jsamwrites 2 39114 309367 308737 2026-09-06T09:15:49Z Jsamwrites 938 /* HTML fragement */ 309367 wikitext text/x-wiki == Introduction == This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]]. [[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]] These are the topics that I have been working on: == Sentences == ====== HTML fragement ====== {| class="wikitable" |+ !No. !Function !Example !Type |- |1. |{{Z|Z39170}} |Avicii worked in the fields of.... |Person |- |2. |{{Z|Z39173}} |André Gide was a.... |Person |- |3. |{{Z|Z39177}} |Bird is a ... |All |- |4. |{{Z|Z39181}} |The notable works of Charles Darwin include.... |Person |- |5. |{{Z|Z39185}} |C supports [paradigms] |Programming language |- |7. |{{Z|Z39191}} |Lyon shares border with... |Geography |- |8. |{{Z|Z39194}} |Paris is named after.... |All |- |9. |{{Z|Z39197}} |Φ/φ symbolizes golden ratio |All (characters,..) |- |10. |{{Z|Z39200}} |The colors of ruby include... |All (colored objects) |- |11. |{{Z|Z39203}} |Firefox depends on... |Software |- |12. |{{Z|Z39229}} |Brain assymmetry is characteristic of... |All |- |13. |{{Z|Z39232}} |MySQL is available on... |Software |- |14. |{{Z|Z39235}} |The characteristics of .... |All |- |15. |{{Z|Z39238}} |The uses of ... |All |- |16. |{{Z|Z39241}} |MySQL uses... |All |- |17. |{{Z|Z39247}} |Pizza is made from |All |- |18. |{{Z|Z39250}} |September is depicted by... |All (creative works) |- |19. |{{Z|Z39253}} |Inkscape is developed by.. |Software |- |20. |{{Z|Z39256}} |Thunderbird is an... |All |- |21. |{{Z|Z39259}} |Mona Lisa is an oil painting.... |Creative works |- |22. |{{Z|Z39262}} |Weekend is part of... |All |- |23. |{{Z|Z39265}} |Space Needle was built in.. |Creative works |- |24. |{{Z|Z39268}} |Eiffel Tower was built... |Creative work |- |25. |{{Z|Z39271}} |Weekend consists of... |All |- |26. |{{Z|Z39274}} |The main subjects of.. |Creative works |- |27. |{{Z|Z39277}} |Mona Lisa depicts... |Creatie works |- |28. |{{Z|Z39280}} |C is influenced by |Programming language, Software |- |29. |{{Z|Z39283}} |GCC is programmed in... |Software |- |30. |{{Z|Z39286}} |Sistine Chapel was created by... |Creative works, buildings |- |31. |{{Z|Z39289}} |Property values... |All |- |32. |{{Z|Z39339}} |C++ was designed by.. |Creative works |- |33. |{{Z|Z40059}} |Abstract wikilinks of different from |All |- |34. |{{Z|Z40069}} |Abstract wikilinks of sources |All (Bibliography) |- |35. |{{Z|Z40582}} |The typing discipline of .... |Programming languages |- |36. |{{Z|Z40710}} |The file extension of... |Software, programming languages |- |37. |{{Z|Z40813}} |The language of work of... |Literary works |- |38. |{{Z|Z41302}} |The OS of ... |Software |} ====== Monolingual text ====== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z34282}} |{{Z|Z34281}} |Lyon is a commune of France |- |2. |{{Z|Z32581}} |{{Z|Z32534}} |Mona Lisa is a painting by Leonardo da Vinci |- |3. |{{Z|Z34637}} |{{Z|Z34682}} |Sunday is part of the weekend |- |4. |{{Z|Z36141}} |{{Z|Z36148}} |Space Needle was built in 1961. |- |5. |{{Z|Z36151}} |{{Z|Z36155}} |Eiffel Tower was built between 1887 and 1889. |- |6. |{{Z|Z37005}} |{{Z|Z37017}} |Earth-Moon system consists of Earth and Moon. |- |7. |{{Z|Z38515}} |{{Z|Z38416}} |The main subject(s) of a painting is/are. |- |8. |{{Z|Z37761}} |{{Z|Z37760}} |Abel depicts Abel, death, and landscape. |- |9. |{{Z|Z37777}} |{{Z|Z37776}} |BCPL is influenced by CPL. |- |10. |{{Z|Z37873}} |{{Z|Z37874}} |Inkscaped was programmed in C++ and C. |- |11. |{{Z|Z37870}} |{{Z|Z37869}} |C++, C, and Java |- |12. |{{Z|Z37951}} |{{Z|Z37945}} |Software/It is developed by |- |13. |{{Z|Z37963}} |{{Z|Z37962}} |Creative work is created by |- |14. |{{Z|Z38458}} |{{Z|Z38415}} |Topic is depicted by |- |15. |{{Z|Z37890}} |{{Z|Z37889}} |Object was made from. |- |16. |{{Z|Z38453}} |{{Z|Z38417}} |It uses. |- |17. |{{Z|Z38488}} |{{Z|Z38418}} |The uses of the subject include.. |- |18. |{{Z|Z38508}} |{{Z|Z38419}} |The characteristics of..include. |- |19. |{{Z|Z38448}} |{{Z|Z38420}} |It is available on |- |20. |{{Z|Z38440}} |{{Z|Z38421}} |It is characteristic of |- |21. |{{Z|Z38435}} |{{Z|Z38422}} |It is dependent on |- |22. |{{Z|Z38503}} |{{Z|Z38505}} |The colors include.. |- |23. |{{Z|Z38428}} |{{Z|Z38423}} |It symbolizes |- |24. |{{Z|Z38443}} |{{Z|Z38414}} |It is named after |- |25. |{{Z|Z38425}} |{{Z|Z38424}} |It shares border with |- |26. | {{z|Z38388}} | {{z|Z38392}} |Programming language/It supports paradigm(s). |- |27. |{{Z|Z38520}} |{{Z|Z38523}} |Saturday is a day. |- |28. |{{Z|Z38804}} |{{Z|Z38803}} |The notable works of .. include .. |- |29. |{{Z|Z38520}} |{{Z|Z38523}} |Reptilia is a Tetrapoda |- |30. |{{Z|Z38833}} |{{Z|Z38832}} |Alan Turing is a computer scientist,... |- |31. |{{Z|Z38916}} |{{Z|Z38917}} |Alan Turing worked in the fields of |- |32. |{{Z|Z39335}} |{{Z|Z39338}} |C++ was designed by... |- |33. |{{Z|Z40570}} |{{Z|Z40579}} |programming language |- |34. |{{Z|Z40701}} |{{Z|Z40704}} |Software, programming language |- |35. |based on | |Creative works |- |36. |Inception | |Creative works |- |37. |has edition or translation | |Creative works |- |38. |described by source | |Creative works |- |39. |File extension | |Creative works |- |40. |standards body | |Creative works |- |41. |creator | |Creative works |- |42. |publication date | |Creative works |- |43. |distributed by | |Software |- |44. |mascot | |All |- |45. |readable file format | |Software |- |46. |writable file format | |Software |- |47. |Package management system | |Software |- |48. |software engine | |Software |- |49. |GUI toolkit or framework | |Software |- |50. |Official app | |Software |- |51. |history of topic | |All |- |52. |implementation of | |Software |- |53. |build system | |Software |- |54. |has command line option | |Software |- |55. |used by | |All |- |56. |founder | |Institutions, associations |- |57. |motto text | |Institutions, associations |- |58. |member of | |Institutions, associations |- |59. |follows | |All |- |60. |followed by | |All |- |61. |replaces | |All |- |62. |{{Z|Z40811}} |{{Z|Z40810}} |Creative works |- |63. |collection | |Creative works |- |64. |software quality assurance | |Software |- |65. |Copyright licence | |Creative works |- |66. |Copyright status | |Creative works |- |67. |Logo image | |Creative works |- |68. |Icon (image) | |Creative works |- |69. |game mode | |Video games |- |70. |distribution format | |Software |- |71. |award received | |Creative works |- |72. |maintained by | |Software |- |73. |Funding scheme | |Creative works |- |74. |child organization or unit | |Organizations |- |75. |product or material produced | |Organizations |- |76. |represented by | |Organizations |- |77. |movement | |Organizations |- |78. |member of | |All |- |79. |typeface/font used | |Creative works |- |80. |update method | |Software |- |81. |small logo or icon | |Creative works |- |82. |official name | |All |- |83. |part of the series | |Creative works |- |84. |edition or translation of | |Creative works |- |85. |manufacturer | |Works |- |86. |brand | |Organizations |- |87. |related image | |All |- |88. |significant event | |All |- |89. |announcement date | |All |- |90. |working title | |All |- |91. |different from | |All |- |92. |genre | |All |- |93. |operating system | |Software, programming language |- |94. |original language of work or name | |Creative works |- |95. |studied by | |Academics |- |96. |area | |Geography |- |97. |located in time zone | |Geography |- |98. |elevation above sea level | |Geography |- |99. |economy of topic | |Geography |- |100. |history of topic | |Geography, History |- |101. |demographics of topic | |Geography |- |102. |native label | |All |} ===== Supplementary functions for sentences ===== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z38729}} |{{Z|Z38786}} | |- |2. |{{Z|Z38782}} |{{Z|Z38781}} | |- | | | | |} == Infoboxes == Check [[User:Jsamwrites/Infoboxes]] == Navbox (External links not yet enabled on Abstract Wikidata) == * {{Z|Z39101}} == Useful functions == * {{Z|Z36303}} * {{Z|Z34943}} * {{Z|Z36083}} * {{Z|Z36218}} * {{Z|Z32962}} * {{Z|Z32179}} * {{Z|Z32428}} * {{Z|Z27243}} * {{Z|Z31917}} * {{Z|Z33690}} * {{Z|Z28016}} * {{Z|Z36193}} * {{Z|Z29749}} * {{Z|Z36038}} * {{Z|Z36993}} === References === * {{Z|Z31921}} == Catalogue == * [[Wikifunctions:Catalogue|Catalogue of important functions]] * [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]] == Phrases == List of objects: * {{Z|Z18928}} * {{Z|Z18929}} * {{Z|Z18979}} == Function application == * {{Z|Z873}} == Configuration == * {{Z|Z14294}} == Types == * [[Special:ListObjectsByType|All supported types]] == Wikidata == * {{Z|Z22220}} * {{Z|Z22222}} == Documentation == * [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]] rv2tkpyek6tqn0mu320i9o0wkyos6qj 309377 309367 2026-09-06T09:24:41Z Jsamwrites 938 /* HTML fragement */ 309377 wikitext text/x-wiki == Introduction == This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]]. [[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]] These are the topics that I have been working on: == Sentences == ====== HTML fragement ====== {| class="wikitable" |+ !No. !Function !Example !Type |- |1. |{{Z|Z39170}} |Avicii worked in the fields of.... |Person |- |2. |{{Z|Z39173}} |André Gide was a.... |Person |- |3. |{{Z|Z39177}} |Bird is a ... |All |- |4. |{{Z|Z39181}} |The notable works of Charles Darwin include.... |Person |- |5. |{{Z|Z39185}} |C supports [paradigms] |Programming language |- |7. |{{Z|Z39191}} |Lyon shares border with... |Geography |- |8. |{{Z|Z39194}} |Paris is named after.... |All |- |9. |{{Z|Z39197}} |Φ/φ symbolizes golden ratio |All (characters,..) |- |10. |{{Z|Z39200}} |The colors of ruby include... |All (colored objects) |- |11. |{{Z|Z39203}} |Firefox depends on... |Software |- |12. |{{Z|Z39229}} |Brain assymmetry is characteristic of... |All |- |13. |{{Z|Z39232}} |MySQL is available on... |Software |- |14. |{{Z|Z39235}} |The characteristics of .... |All |- |15. |{{Z|Z39238}} |The uses of ... |All |- |16. |{{Z|Z39241}} |MySQL uses... |All |- |17. |{{Z|Z39247}} |Pizza is made from |All |- |18. |{{Z|Z39250}} |September is depicted by... |All (creative works) |- |19. |{{Z|Z39253}} |Inkscape is developed by.. |Software |- |20. |{{Z|Z39256}} |Thunderbird is an... |All |- |21. |{{Z|Z39259}} |Mona Lisa is an oil painting.... |Creative works |- |22. |{{Z|Z39262}} |Weekend is part of... |All |- |23. |{{Z|Z39265}} |Space Needle was built in.. |Creative works |- |24. |{{Z|Z39268}} |Eiffel Tower was built... |Creative work |- |25. |{{Z|Z39271}} |Weekend consists of... |All |- |26. |{{Z|Z39274}} |The main subjects of.. |Creative works |- |27. |{{Z|Z39277}} |Mona Lisa depicts... |Creatie works |- |28. |{{Z|Z39280}} |C is influenced by |Programming language, Software |- |29. |{{Z|Z39283}} |GCC is programmed in... |Software |- |30. |{{Z|Z39286}} |Sistine Chapel was created by... |Creative works, buildings |- |31. |{{Z|Z39289}} |Property values... |All |- |32. |{{Z|Z39339}} |C++ was designed by.. |Creative works |- |33. |{{Z|Z40059}} |Abstract wikilinks of different from |All |- |34. |{{Z|Z40069}} |Abstract wikilinks of sources |All (Bibliography) |- |35. |{{Z|Z40582}} |The typing discipline of .... |Programming languages |- |36. |{{Z|Z40710}} |The file extension of... |Software, programming languages |- |37. |{{Z|Z40813}} |The language of work of... |Literary works |- |38. |{{Z|Z41302}} |The OS of ... |Software |- |39. |{{Z|Z41294}} |The area of... |Geography |} ====== Monolingual text ====== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z34282}} |{{Z|Z34281}} |Lyon is a commune of France |- |2. |{{Z|Z32581}} |{{Z|Z32534}} |Mona Lisa is a painting by Leonardo da Vinci |- |3. |{{Z|Z34637}} |{{Z|Z34682}} |Sunday is part of the weekend |- |4. |{{Z|Z36141}} |{{Z|Z36148}} |Space Needle was built in 1961. |- |5. |{{Z|Z36151}} |{{Z|Z36155}} |Eiffel Tower was built between 1887 and 1889. |- |6. |{{Z|Z37005}} |{{Z|Z37017}} |Earth-Moon system consists of Earth and Moon. |- |7. |{{Z|Z38515}} |{{Z|Z38416}} |The main subject(s) of a painting is/are. |- |8. |{{Z|Z37761}} |{{Z|Z37760}} |Abel depicts Abel, death, and landscape. |- |9. |{{Z|Z37777}} |{{Z|Z37776}} |BCPL is influenced by CPL. |- |10. |{{Z|Z37873}} |{{Z|Z37874}} |Inkscaped was programmed in C++ and C. |- |11. |{{Z|Z37870}} |{{Z|Z37869}} |C++, C, and Java |- |12. |{{Z|Z37951}} |{{Z|Z37945}} |Software/It is developed by |- |13. |{{Z|Z37963}} |{{Z|Z37962}} |Creative work is created by |- |14. |{{Z|Z38458}} |{{Z|Z38415}} |Topic is depicted by |- |15. |{{Z|Z37890}} |{{Z|Z37889}} |Object was made from. |- |16. |{{Z|Z38453}} |{{Z|Z38417}} |It uses. |- |17. |{{Z|Z38488}} |{{Z|Z38418}} |The uses of the subject include.. |- |18. |{{Z|Z38508}} |{{Z|Z38419}} |The characteristics of..include. |- |19. |{{Z|Z38448}} |{{Z|Z38420}} |It is available on |- |20. |{{Z|Z38440}} |{{Z|Z38421}} |It is characteristic of |- |21. |{{Z|Z38435}} |{{Z|Z38422}} |It is dependent on |- |22. |{{Z|Z38503}} |{{Z|Z38505}} |The colors include.. |- |23. |{{Z|Z38428}} |{{Z|Z38423}} |It symbolizes |- |24. |{{Z|Z38443}} |{{Z|Z38414}} |It is named after |- |25. |{{Z|Z38425}} |{{Z|Z38424}} |It shares border with |- |26. | {{z|Z38388}} | {{z|Z38392}} |Programming language/It supports paradigm(s). |- |27. |{{Z|Z38520}} |{{Z|Z38523}} |Saturday is a day. |- |28. |{{Z|Z38804}} |{{Z|Z38803}} |The notable works of .. include .. |- |29. |{{Z|Z38520}} |{{Z|Z38523}} |Reptilia is a Tetrapoda |- |30. |{{Z|Z38833}} |{{Z|Z38832}} |Alan Turing is a computer scientist,... |- |31. |{{Z|Z38916}} |{{Z|Z38917}} |Alan Turing worked in the fields of |- |32. |{{Z|Z39335}} |{{Z|Z39338}} |C++ was designed by... |- |33. |{{Z|Z40570}} |{{Z|Z40579}} |programming language |- |34. |{{Z|Z40701}} |{{Z|Z40704}} |Software, programming language |- |35. |based on | |Creative works |- |36. |Inception | |Creative works |- |37. |has edition or translation | |Creative works |- |38. |described by source | |Creative works |- |39. |File extension | |Creative works |- |40. |standards body | |Creative works |- |41. |creator | |Creative works |- |42. |publication date | |Creative works |- |43. |distributed by | |Software |- |44. |mascot | |All |- |45. |readable file format | |Software |- |46. |writable file format | |Software |- |47. |Package management system | |Software |- |48. |software engine | |Software |- |49. |GUI toolkit or framework | |Software |- |50. |Official app | |Software |- |51. |history of topic | |All |- |52. |implementation of | |Software |- |53. |build system | |Software |- |54. |has command line option | |Software |- |55. |used by | |All |- |56. |founder | |Institutions, associations |- |57. |motto text | |Institutions, associations |- |58. |member of | |Institutions, associations |- |59. |follows | |All |- |60. |followed by | |All |- |61. |replaces | |All |- |62. |{{Z|Z40811}} |{{Z|Z40810}} |Creative works |- |63. |collection | |Creative works |- |64. |software quality assurance | |Software |- |65. |Copyright licence | |Creative works |- |66. |Copyright status | |Creative works |- |67. |Logo image | |Creative works |- |68. |Icon (image) | |Creative works |- |69. |game mode | |Video games |- |70. |distribution format | |Software |- |71. |award received | |Creative works |- |72. |maintained by | |Software |- |73. |Funding scheme | |Creative works |- |74. |child organization or unit | |Organizations |- |75. |product or material produced | |Organizations |- |76. |represented by | |Organizations |- |77. |movement | |Organizations |- |78. |member of | |All |- |79. |typeface/font used | |Creative works |- |80. |update method | |Software |- |81. |small logo or icon | |Creative works |- |82. |official name | |All |- |83. |part of the series | |Creative works |- |84. |edition or translation of | |Creative works |- |85. |manufacturer | |Works |- |86. |brand | |Organizations |- |87. |related image | |All |- |88. |significant event | |All |- |89. |announcement date | |All |- |90. |working title | |All |- |91. |different from | |All |- |92. |genre | |All |- |93. |operating system | |Software, programming language |- |94. |original language of work or name | |Creative works |- |95. |studied by | |Academics |- |96. |area | |Geography |- |97. |located in time zone | |Geography |- |98. |elevation above sea level | |Geography |- |99. |economy of topic | |Geography |- |100. |history of topic | |Geography, History |- |101. |demographics of topic | |Geography |- |102. |native label | |All |} ===== Supplementary functions for sentences ===== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z38729}} |{{Z|Z38786}} | |- |2. |{{Z|Z38782}} |{{Z|Z38781}} | |- | | | | |} == Infoboxes == Check [[User:Jsamwrites/Infoboxes]] == Navbox (External links not yet enabled on Abstract Wikidata) == * {{Z|Z39101}} == Useful functions == * {{Z|Z36303}} * {{Z|Z34943}} * {{Z|Z36083}} * {{Z|Z36218}} * {{Z|Z32962}} * {{Z|Z32179}} * {{Z|Z32428}} * {{Z|Z27243}} * {{Z|Z31917}} * {{Z|Z33690}} * {{Z|Z28016}} * {{Z|Z36193}} * {{Z|Z29749}} * {{Z|Z36038}} * {{Z|Z36993}} === References === * {{Z|Z31921}} == Catalogue == * [[Wikifunctions:Catalogue|Catalogue of important functions]] * [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]] == Phrases == List of objects: * {{Z|Z18928}} * {{Z|Z18929}} * {{Z|Z18979}} == Function application == * {{Z|Z873}} == Configuration == * {{Z|Z14294}} == Types == * [[Special:ListObjectsByType|All supported types]] == Wikidata == * {{Z|Z22220}} * {{Z|Z22222}} == Documentation == * [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]] h9hiak01e0kt45tkz02s519vk4syyo1 309388 309377 2026-09-06T09:31:09Z Jsamwrites 938 /* HTML fragement */ 309388 wikitext text/x-wiki == Introduction == This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]]. [[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]] These are the topics that I have been working on: == Sentences == ====== HTML fragement ====== {| class="wikitable" |+ !No. !Function !Example !Type |- |1. |{{Z|Z39170}} |Avicii worked in the fields of.... |Person |- |2. |{{Z|Z39173}} |André Gide was a.... |Person |- |3. |{{Z|Z39177}} |Bird is a ... |All |- |4. |{{Z|Z39181}} |The notable works of Charles Darwin include.... |Person |- |5. |{{Z|Z39185}} |C supports [paradigms] |Programming language |- |7. |{{Z|Z39191}} |Lyon shares border with... |Geography |- |8. |{{Z|Z39194}} |Paris is named after.... |All |- |9. |{{Z|Z39197}} |Φ/φ symbolizes golden ratio |All (characters,..) |- |10. |{{Z|Z39200}} |The colors of ruby include... |All (colored objects) |- |11. |{{Z|Z39203}} |Firefox depends on... |Software |- |12. |{{Z|Z39229}} |Brain assymmetry is characteristic of... |All |- |13. |{{Z|Z39232}} |MySQL is available on... |Software |- |14. |{{Z|Z39235}} |The characteristics of .... |All |- |15. |{{Z|Z39238}} |The uses of ... |All |- |16. |{{Z|Z39241}} |MySQL uses... |All |- |17. |{{Z|Z39247}} |Pizza is made from |All |- |18. |{{Z|Z39250}} |September is depicted by... |All (creative works) |- |19. |{{Z|Z39253}} |Inkscape is developed by.. |Software |- |20. |{{Z|Z39256}} |Thunderbird is an... |All |- |21. |{{Z|Z39259}} |Mona Lisa is an oil painting.... |Creative works |- |22. |{{Z|Z39262}} |Weekend is part of... |All |- |23. |{{Z|Z39265}} |Space Needle was built in.. |Creative works |- |24. |{{Z|Z39268}} |Eiffel Tower was built... |Creative work |- |25. |{{Z|Z39271}} |Weekend consists of... |All |- |26. |{{Z|Z39274}} |The main subjects of.. |Creative works |- |27. |{{Z|Z39277}} |Mona Lisa depicts... |Creatie works |- |28. |{{Z|Z39280}} |C is influenced by |Programming language, Software |- |29. |{{Z|Z39283}} |GCC is programmed in... |Software |- |30. |{{Z|Z39286}} |Sistine Chapel was created by... |Creative works, buildings |- |31. |{{Z|Z39289}} |Property values... |All |- |32. |{{Z|Z39339}} |C++ was designed by.. |Creative works |- |33. |{{Z|Z40059}} |Abstract wikilinks of different from |All |- |34. |{{Z|Z40069}} |Abstract wikilinks of sources |All (Bibliography) |- |35. |{{Z|Z40582}} |The typing discipline of .... |Programming languages |- |36. |{{Z|Z40710}} |The file extension of... |Software, programming languages |- |37. |{{Z|Z40813}} |The language of work of... |Literary works |- |38. |{{Z|Z41302}} |The OS of ... |Software |- |39. |{{Z|Z41294}} |The area of... |Geography |- |40. |{{Z|Z41300}} |The genre of .. |Creative works |} ====== Monolingual text ====== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z34282}} |{{Z|Z34281}} |Lyon is a commune of France |- |2. |{{Z|Z32581}} |{{Z|Z32534}} |Mona Lisa is a painting by Leonardo da Vinci |- |3. |{{Z|Z34637}} |{{Z|Z34682}} |Sunday is part of the weekend |- |4. |{{Z|Z36141}} |{{Z|Z36148}} |Space Needle was built in 1961. |- |5. |{{Z|Z36151}} |{{Z|Z36155}} |Eiffel Tower was built between 1887 and 1889. |- |6. |{{Z|Z37005}} |{{Z|Z37017}} |Earth-Moon system consists of Earth and Moon. |- |7. |{{Z|Z38515}} |{{Z|Z38416}} |The main subject(s) of a painting is/are. |- |8. |{{Z|Z37761}} |{{Z|Z37760}} |Abel depicts Abel, death, and landscape. |- |9. |{{Z|Z37777}} |{{Z|Z37776}} |BCPL is influenced by CPL. |- |10. |{{Z|Z37873}} |{{Z|Z37874}} |Inkscaped was programmed in C++ and C. |- |11. |{{Z|Z37870}} |{{Z|Z37869}} |C++, C, and Java |- |12. |{{Z|Z37951}} |{{Z|Z37945}} |Software/It is developed by |- |13. |{{Z|Z37963}} |{{Z|Z37962}} |Creative work is created by |- |14. |{{Z|Z38458}} |{{Z|Z38415}} |Topic is depicted by |- |15. |{{Z|Z37890}} |{{Z|Z37889}} |Object was made from. |- |16. |{{Z|Z38453}} |{{Z|Z38417}} |It uses. |- |17. |{{Z|Z38488}} |{{Z|Z38418}} |The uses of the subject include.. |- |18. |{{Z|Z38508}} |{{Z|Z38419}} |The characteristics of..include. |- |19. |{{Z|Z38448}} |{{Z|Z38420}} |It is available on |- |20. |{{Z|Z38440}} |{{Z|Z38421}} |It is characteristic of |- |21. |{{Z|Z38435}} |{{Z|Z38422}} |It is dependent on |- |22. |{{Z|Z38503}} |{{Z|Z38505}} |The colors include.. |- |23. |{{Z|Z38428}} |{{Z|Z38423}} |It symbolizes |- |24. |{{Z|Z38443}} |{{Z|Z38414}} |It is named after |- |25. |{{Z|Z38425}} |{{Z|Z38424}} |It shares border with |- |26. | {{z|Z38388}} | {{z|Z38392}} |Programming language/It supports paradigm(s). |- |27. |{{Z|Z38520}} |{{Z|Z38523}} |Saturday is a day. |- |28. |{{Z|Z38804}} |{{Z|Z38803}} |The notable works of .. include .. |- |29. |{{Z|Z38520}} |{{Z|Z38523}} |Reptilia is a Tetrapoda |- |30. |{{Z|Z38833}} |{{Z|Z38832}} |Alan Turing is a computer scientist,... |- |31. |{{Z|Z38916}} |{{Z|Z38917}} |Alan Turing worked in the fields of |- |32. |{{Z|Z39335}} |{{Z|Z39338}} |C++ was designed by... |- |33. |{{Z|Z40570}} |{{Z|Z40579}} |programming language |- |34. |{{Z|Z40701}} |{{Z|Z40704}} |Software, programming language |- |35. |based on | |Creative works |- |36. |Inception | |Creative works |- |37. |has edition or translation | |Creative works |- |38. |described by source | |Creative works |- |39. |File extension | |Creative works |- |40. |standards body | |Creative works |- |41. |creator | |Creative works |- |42. |publication date | |Creative works |- |43. |distributed by | |Software |- |44. |mascot | |All |- |45. |readable file format | |Software |- |46. |writable file format | |Software |- |47. |Package management system | |Software |- |48. |software engine | |Software |- |49. |GUI toolkit or framework | |Software |- |50. |Official app | |Software |- |51. |history of topic | |All |- |52. |implementation of | |Software |- |53. |build system | |Software |- |54. |has command line option | |Software |- |55. |used by | |All |- |56. |founder | |Institutions, associations |- |57. |motto text | |Institutions, associations |- |58. |member of | |Institutions, associations |- |59. |follows | |All |- |60. |followed by | |All |- |61. |replaces | |All |- |62. |{{Z|Z40811}} |{{Z|Z40810}} |Creative works |- |63. |collection | |Creative works |- |64. |software quality assurance | |Software |- |65. |Copyright licence | |Creative works |- |66. |Copyright status | |Creative works |- |67. |Logo image | |Creative works |- |68. |Icon (image) | |Creative works |- |69. |game mode | |Video games |- |70. |distribution format | |Software |- |71. |award received | |Creative works |- |72. |maintained by | |Software |- |73. |Funding scheme | |Creative works |- |74. |child organization or unit | |Organizations |- |75. |product or material produced | |Organizations |- |76. |represented by | |Organizations |- |77. |movement | |Organizations |- |78. |member of | |All |- |79. |typeface/font used | |Creative works |- |80. |update method | |Software |- |81. |small logo or icon | |Creative works |- |82. |official name | |All |- |83. |part of the series | |Creative works |- |84. |edition or translation of | |Creative works |- |85. |manufacturer | |Works |- |86. |brand | |Organizations |- |87. |related image | |All |- |88. |significant event | |All |- |89. |announcement date | |All |- |90. |working title | |All |- |91. |different from | |All |- |92. |genre | |All |- |93. |operating system | |Software, programming language |- |94. |original language of work or name | |Creative works |- |95. |studied by | |Academics |- |96. |area | |Geography |- |97. |located in time zone | |Geography |- |98. |elevation above sea level | |Geography |- |99. |economy of topic | |Geography |- |100. |history of topic | |Geography, History |- |101. |demographics of topic | |Geography |- |102. |native label | |All |} ===== Supplementary functions for sentences ===== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z38729}} |{{Z|Z38786}} | |- |2. |{{Z|Z38782}} |{{Z|Z38781}} | |- | | | | |} == Infoboxes == Check [[User:Jsamwrites/Infoboxes]] == Navbox (External links not yet enabled on Abstract Wikidata) == * {{Z|Z39101}} == Useful functions == * {{Z|Z36303}} * {{Z|Z34943}} * {{Z|Z36083}} * {{Z|Z36218}} * {{Z|Z32962}} * {{Z|Z32179}} * {{Z|Z32428}} * {{Z|Z27243}} * {{Z|Z31917}} * {{Z|Z33690}} * {{Z|Z28016}} * {{Z|Z36193}} * {{Z|Z29749}} * {{Z|Z36038}} * {{Z|Z36993}} === References === * {{Z|Z31921}} == Catalogue == * [[Wikifunctions:Catalogue|Catalogue of important functions]] * [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]] == Phrases == List of objects: * {{Z|Z18928}} * {{Z|Z18929}} * {{Z|Z18979}} == Function application == * {{Z|Z873}} == Configuration == * {{Z|Z14294}} == Types == * [[Special:ListObjectsByType|All supported types]] == Wikidata == * {{Z|Z22220}} * {{Z|Z22222}} == Documentation == * [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]] 81wilznyegx15jyfw96kq1v5ye3z34v 309394 309388 2026-09-06T09:35:08Z Jsamwrites 938 /* HTML fragement */ 309394 wikitext text/x-wiki == Introduction == This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]]. [[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]] These are the topics that I have been working on: == Sentences == ====== HTML fragement ====== {| class="wikitable" |+ !No. !Function !Example !Type |- |1. |{{Z|Z39170}} |Avicii worked in the fields of.... |Person |- |2. |{{Z|Z39173}} |André Gide was a.... |Person |- |3. |{{Z|Z39177}} |Bird is a ... |All |- |4. |{{Z|Z39181}} |The notable works of Charles Darwin include.... |Person |- |5. |{{Z|Z39185}} |C supports [paradigms] |Programming language |- |7. |{{Z|Z39191}} |Lyon shares border with... |Geography |- |8. |{{Z|Z39194}} |Paris is named after.... |All |- |9. |{{Z|Z39197}} |Φ/φ symbolizes golden ratio |All (characters,..) |- |10. |{{Z|Z39200}} |The colors of ruby include... |All (colored objects) |- |11. |{{Z|Z39203}} |Firefox depends on... |Software |- |12. |{{Z|Z39229}} |Brain assymmetry is characteristic of... |All |- |13. |{{Z|Z39232}} |MySQL is available on... |Software |- |14. |{{Z|Z39235}} |The characteristics of .... |All |- |15. |{{Z|Z39238}} |The uses of ... |All |- |16. |{{Z|Z39241}} |MySQL uses... |All |- |17. |{{Z|Z39247}} |Pizza is made from |All |- |18. |{{Z|Z39250}} |September is depicted by... |All (creative works) |- |19. |{{Z|Z39253}} |Inkscape is developed by.. |Software |- |20. |{{Z|Z39256}} |Thunderbird is an... |All |- |21. |{{Z|Z39259}} |Mona Lisa is an oil painting.... |Creative works |- |22. |{{Z|Z39262}} |Weekend is part of... |All |- |23. |{{Z|Z39265}} |Space Needle was built in.. |Creative works |- |24. |{{Z|Z39268}} |Eiffel Tower was built... |Creative work |- |25. |{{Z|Z39271}} |Weekend consists of... |All |- |26. |{{Z|Z39274}} |The main subjects of.. |Creative works |- |27. |{{Z|Z39277}} |Mona Lisa depicts... |Creatie works |- |28. |{{Z|Z39280}} |C is influenced by |Programming language, Software |- |29. |{{Z|Z39283}} |GCC is programmed in... |Software |- |30. |{{Z|Z39286}} |Sistine Chapel was created by... |Creative works, buildings |- |31. |{{Z|Z39289}} |Property values... |All |- |32. |{{Z|Z39339}} |C++ was designed by.. |Creative works |- |33. |{{Z|Z40059}} |Abstract wikilinks of different from |All |- |34. |{{Z|Z40069}} |Abstract wikilinks of sources |All (Bibliography) |- |35. |{{Z|Z40582}} |The typing discipline of .... |Programming languages |- |36. |{{Z|Z40710}} |The file extension of... |Software, programming languages |- |37. |{{Z|Z40813}} |The language of work of... |Literary works |- |38. |{{Z|Z41302}} |The OS of ... |Software |- |39. |{{Z|Z41294}} |The area of... |Geography |- |40. |{{Z|Z41300}} |The genre of .. |Creative works |- |41. |{{Z|Z41299}} |The brand of ... |Institutions, Persons |} ====== Monolingual text ====== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z34282}} |{{Z|Z34281}} |Lyon is a commune of France |- |2. |{{Z|Z32581}} |{{Z|Z32534}} |Mona Lisa is a painting by Leonardo da Vinci |- |3. |{{Z|Z34637}} |{{Z|Z34682}} |Sunday is part of the weekend |- |4. |{{Z|Z36141}} |{{Z|Z36148}} |Space Needle was built in 1961. |- |5. |{{Z|Z36151}} |{{Z|Z36155}} |Eiffel Tower was built between 1887 and 1889. |- |6. |{{Z|Z37005}} |{{Z|Z37017}} |Earth-Moon system consists of Earth and Moon. |- |7. |{{Z|Z38515}} |{{Z|Z38416}} |The main subject(s) of a painting is/are. |- |8. |{{Z|Z37761}} |{{Z|Z37760}} |Abel depicts Abel, death, and landscape. |- |9. |{{Z|Z37777}} |{{Z|Z37776}} |BCPL is influenced by CPL. |- |10. |{{Z|Z37873}} |{{Z|Z37874}} |Inkscaped was programmed in C++ and C. |- |11. |{{Z|Z37870}} |{{Z|Z37869}} |C++, C, and Java |- |12. |{{Z|Z37951}} |{{Z|Z37945}} |Software/It is developed by |- |13. |{{Z|Z37963}} |{{Z|Z37962}} |Creative work is created by |- |14. |{{Z|Z38458}} |{{Z|Z38415}} |Topic is depicted by |- |15. |{{Z|Z37890}} |{{Z|Z37889}} |Object was made from. |- |16. |{{Z|Z38453}} |{{Z|Z38417}} |It uses. |- |17. |{{Z|Z38488}} |{{Z|Z38418}} |The uses of the subject include.. |- |18. |{{Z|Z38508}} |{{Z|Z38419}} |The characteristics of..include. |- |19. |{{Z|Z38448}} |{{Z|Z38420}} |It is available on |- |20. |{{Z|Z38440}} |{{Z|Z38421}} |It is characteristic of |- |21. |{{Z|Z38435}} |{{Z|Z38422}} |It is dependent on |- |22. |{{Z|Z38503}} |{{Z|Z38505}} |The colors include.. |- |23. |{{Z|Z38428}} |{{Z|Z38423}} |It symbolizes |- |24. |{{Z|Z38443}} |{{Z|Z38414}} |It is named after |- |25. |{{Z|Z38425}} |{{Z|Z38424}} |It shares border with |- |26. | {{z|Z38388}} | {{z|Z38392}} |Programming language/It supports paradigm(s). |- |27. |{{Z|Z38520}} |{{Z|Z38523}} |Saturday is a day. |- |28. |{{Z|Z38804}} |{{Z|Z38803}} |The notable works of .. include .. |- |29. |{{Z|Z38520}} |{{Z|Z38523}} |Reptilia is a Tetrapoda |- |30. |{{Z|Z38833}} |{{Z|Z38832}} |Alan Turing is a computer scientist,... |- |31. |{{Z|Z38916}} |{{Z|Z38917}} |Alan Turing worked in the fields of |- |32. |{{Z|Z39335}} |{{Z|Z39338}} |C++ was designed by... |- |33. |{{Z|Z40570}} |{{Z|Z40579}} |programming language |- |34. |{{Z|Z40701}} |{{Z|Z40704}} |Software, programming language |- |35. |based on | |Creative works |- |36. |Inception | |Creative works |- |37. |has edition or translation | |Creative works |- |38. |described by source | |Creative works |- |39. |File extension | |Creative works |- |40. |standards body | |Creative works |- |41. |creator | |Creative works |- |42. |publication date | |Creative works |- |43. |distributed by | |Software |- |44. |mascot | |All |- |45. |readable file format | |Software |- |46. |writable file format | |Software |- |47. |Package management system | |Software |- |48. |software engine | |Software |- |49. |GUI toolkit or framework | |Software |- |50. |Official app | |Software |- |51. |history of topic | |All |- |52. |implementation of | |Software |- |53. |build system | |Software |- |54. |has command line option | |Software |- |55. |used by | |All |- |56. |founder | |Institutions, associations |- |57. |motto text | |Institutions, associations |- |58. |member of | |Institutions, associations |- |59. |follows | |All |- |60. |followed by | |All |- |61. |replaces | |All |- |62. |{{Z|Z40811}} |{{Z|Z40810}} |Creative works |- |63. |collection | |Creative works |- |64. |software quality assurance | |Software |- |65. |Copyright licence | |Creative works |- |66. |Copyright status | |Creative works |- |67. |Logo image | |Creative works |- |68. |Icon (image) | |Creative works |- |69. |game mode | |Video games |- |70. |distribution format | |Software |- |71. |award received | |Creative works |- |72. |maintained by | |Software |- |73. |Funding scheme | |Creative works |- |74. |child organization or unit | |Organizations |- |75. |product or material produced | |Organizations |- |76. |represented by | |Organizations |- |77. |movement | |Organizations |- |78. |member of | |All |- |79. |typeface/font used | |Creative works |- |80. |update method | |Software |- |81. |small logo or icon | |Creative works |- |82. |official name | |All |- |83. |part of the series | |Creative works |- |84. |edition or translation of | |Creative works |- |85. |manufacturer | |Works |- |86. |brand | |Organizations |- |87. |related image | |All |- |88. |significant event | |All |- |89. |announcement date | |All |- |90. |working title | |All |- |91. |different from | |All |- |92. |genre | |All |- |93. |operating system | |Software, programming language |- |94. |original language of work or name | |Creative works |- |95. |studied by | |Academics |- |96. |area | |Geography |- |97. |located in time zone | |Geography |- |98. |elevation above sea level | |Geography |- |99. |economy of topic | |Geography |- |100. |history of topic | |Geography, History |- |101. |demographics of topic | |Geography |- |102. |native label | |All |} ===== Supplementary functions for sentences ===== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z38729}} |{{Z|Z38786}} | |- |2. |{{Z|Z38782}} |{{Z|Z38781}} | |- | | | | |} == Infoboxes == Check [[User:Jsamwrites/Infoboxes]] == Navbox (External links not yet enabled on Abstract Wikidata) == * {{Z|Z39101}} == Useful functions == * {{Z|Z36303}} * {{Z|Z34943}} * {{Z|Z36083}} * {{Z|Z36218}} * {{Z|Z32962}} * {{Z|Z32179}} * {{Z|Z32428}} * {{Z|Z27243}} * {{Z|Z31917}} * {{Z|Z33690}} * {{Z|Z28016}} * {{Z|Z36193}} * {{Z|Z29749}} * {{Z|Z36038}} * {{Z|Z36993}} === References === * {{Z|Z31921}} == Catalogue == * [[Wikifunctions:Catalogue|Catalogue of important functions]] * [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]] == Phrases == List of objects: * {{Z|Z18928}} * {{Z|Z18929}} * {{Z|Z18979}} == Function application == * {{Z|Z873}} == Configuration == * {{Z|Z14294}} == Types == * [[Special:ListObjectsByType|All supported types]] == Wikidata == * {{Z|Z22220}} * {{Z|Z22222}} == Documentation == * [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]] j4eedofccqqkwss6278jo5e9k0vct4s 309401 309394 2026-09-06T09:43:21Z Jsamwrites 938 /* HTML fragement */ 309401 wikitext text/x-wiki == Introduction == This is the Wikifunctions user page of '''John Samuel'''. This page documents my personal effort for '''protecting the linguistic diversity of the world, one language at a time'''. Please check [[abstract:User:Jsamwrites|my]] [[abstract:User:Jsamwrites|Abstract Wikipedia page]] for understanding how these efforts come to life. For more information related to my Wikidata contributions, refer page on [[:d:User:Jsamwrites|Wikidata User:Jsamwrites]]. [[File:Leonardo da Vinci - Saint John the Baptist C2RMF retouched.jpg|thumb|Saint John the Baptist, Louvre Museum ([[c:File:Leonardo_da_Vinci_-_Saint_John_the_Baptist_C2RMF_retouched.jpg|info]])]] These are the topics that I have been working on: == Sentences == ====== HTML fragement ====== {| class="wikitable" |+ !No. !Function !Example !Type |- |1. |{{Z|Z39170}} |Avicii worked in the fields of.... |Person |- |2. |{{Z|Z39173}} |André Gide was a.... |Person |- |3. |{{Z|Z39177}} |Bird is a ... |All |- |4. |{{Z|Z39181}} |The notable works of Charles Darwin include.... |Person |- |5. |{{Z|Z39185}} |C supports [paradigms] |Programming language |- |7. |{{Z|Z39191}} |Lyon shares border with... |Geography |- |8. |{{Z|Z39194}} |Paris is named after.... |All |- |9. |{{Z|Z39197}} |Φ/φ symbolizes golden ratio |All (characters,..) |- |10. |{{Z|Z39200}} |The colors of ruby include... |All (colored objects) |- |11. |{{Z|Z39203}} |Firefox depends on... |Software |- |12. |{{Z|Z39229}} |Brain assymmetry is characteristic of... |All |- |13. |{{Z|Z39232}} |MySQL is available on... |Software |- |14. |{{Z|Z39235}} |The characteristics of .... |All |- |15. |{{Z|Z39238}} |The uses of ... |All |- |16. |{{Z|Z39241}} |MySQL uses... |All |- |17. |{{Z|Z39247}} |Pizza is made from |All |- |18. |{{Z|Z39250}} |September is depicted by... |All (creative works) |- |19. |{{Z|Z39253}} |Inkscape is developed by.. |Software |- |20. |{{Z|Z39256}} |Thunderbird is an... |All |- |21. |{{Z|Z39259}} |Mona Lisa is an oil painting.... |Creative works |- |22. |{{Z|Z39262}} |Weekend is part of... |All |- |23. |{{Z|Z39265}} |Space Needle was built in.. |Creative works |- |24. |{{Z|Z39268}} |Eiffel Tower was built... |Creative work |- |25. |{{Z|Z39271}} |Weekend consists of... |All |- |26. |{{Z|Z39274}} |The main subjects of.. |Creative works |- |27. |{{Z|Z39277}} |Mona Lisa depicts... |Creatie works |- |28. |{{Z|Z39280}} |C is influenced by |Programming language, Software |- |29. |{{Z|Z39283}} |GCC is programmed in... |Software |- |30. |{{Z|Z39286}} |Sistine Chapel was created by... |Creative works, buildings |- |31. |{{Z|Z39289}} |Property values... |All |- |32. |{{Z|Z39339}} |C++ was designed by.. |Creative works |- |33. |{{Z|Z40059}} |Abstract wikilinks of different from |All |- |34. |{{Z|Z40069}} |Abstract wikilinks of sources |All (Bibliography) |- |35. |{{Z|Z40582}} |The typing discipline of .... |Programming languages |- |36. |{{Z|Z40710}} |The file extension of... |Software, programming languages |- |37. |{{Z|Z40813}} |The language of work of... |Literary works |- |38. |{{Z|Z41302}} |The OS of ... |Software |- |39. |{{Z|Z41294}} |The area of... |Geography |- |40. |{{Z|Z41300}} |The genre of .. |Creative works |- |41. |{{Z|Z41299}} |The brand of ... |Institutions, Persons |- |42. |{{Z|Z41296}} |The manufacturer of ... |Objects |} ====== Monolingual text ====== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z34282}} |{{Z|Z34281}} |Lyon is a commune of France |- |2. |{{Z|Z32581}} |{{Z|Z32534}} |Mona Lisa is a painting by Leonardo da Vinci |- |3. |{{Z|Z34637}} |{{Z|Z34682}} |Sunday is part of the weekend |- |4. |{{Z|Z36141}} |{{Z|Z36148}} |Space Needle was built in 1961. |- |5. |{{Z|Z36151}} |{{Z|Z36155}} |Eiffel Tower was built between 1887 and 1889. |- |6. |{{Z|Z37005}} |{{Z|Z37017}} |Earth-Moon system consists of Earth and Moon. |- |7. |{{Z|Z38515}} |{{Z|Z38416}} |The main subject(s) of a painting is/are. |- |8. |{{Z|Z37761}} |{{Z|Z37760}} |Abel depicts Abel, death, and landscape. |- |9. |{{Z|Z37777}} |{{Z|Z37776}} |BCPL is influenced by CPL. |- |10. |{{Z|Z37873}} |{{Z|Z37874}} |Inkscaped was programmed in C++ and C. |- |11. |{{Z|Z37870}} |{{Z|Z37869}} |C++, C, and Java |- |12. |{{Z|Z37951}} |{{Z|Z37945}} |Software/It is developed by |- |13. |{{Z|Z37963}} |{{Z|Z37962}} |Creative work is created by |- |14. |{{Z|Z38458}} |{{Z|Z38415}} |Topic is depicted by |- |15. |{{Z|Z37890}} |{{Z|Z37889}} |Object was made from. |- |16. |{{Z|Z38453}} |{{Z|Z38417}} |It uses. |- |17. |{{Z|Z38488}} |{{Z|Z38418}} |The uses of the subject include.. |- |18. |{{Z|Z38508}} |{{Z|Z38419}} |The characteristics of..include. |- |19. |{{Z|Z38448}} |{{Z|Z38420}} |It is available on |- |20. |{{Z|Z38440}} |{{Z|Z38421}} |It is characteristic of |- |21. |{{Z|Z38435}} |{{Z|Z38422}} |It is dependent on |- |22. |{{Z|Z38503}} |{{Z|Z38505}} |The colors include.. |- |23. |{{Z|Z38428}} |{{Z|Z38423}} |It symbolizes |- |24. |{{Z|Z38443}} |{{Z|Z38414}} |It is named after |- |25. |{{Z|Z38425}} |{{Z|Z38424}} |It shares border with |- |26. | {{z|Z38388}} | {{z|Z38392}} |Programming language/It supports paradigm(s). |- |27. |{{Z|Z38520}} |{{Z|Z38523}} |Saturday is a day. |- |28. |{{Z|Z38804}} |{{Z|Z38803}} |The notable works of .. include .. |- |29. |{{Z|Z38520}} |{{Z|Z38523}} |Reptilia is a Tetrapoda |- |30. |{{Z|Z38833}} |{{Z|Z38832}} |Alan Turing is a computer scientist,... |- |31. |{{Z|Z38916}} |{{Z|Z38917}} |Alan Turing worked in the fields of |- |32. |{{Z|Z39335}} |{{Z|Z39338}} |C++ was designed by... |- |33. |{{Z|Z40570}} |{{Z|Z40579}} |programming language |- |34. |{{Z|Z40701}} |{{Z|Z40704}} |Software, programming language |- |35. |based on | |Creative works |- |36. |Inception | |Creative works |- |37. |has edition or translation | |Creative works |- |38. |described by source | |Creative works |- |39. |File extension | |Creative works |- |40. |standards body | |Creative works |- |41. |creator | |Creative works |- |42. |publication date | |Creative works |- |43. |distributed by | |Software |- |44. |mascot | |All |- |45. |readable file format | |Software |- |46. |writable file format | |Software |- |47. |Package management system | |Software |- |48. |software engine | |Software |- |49. |GUI toolkit or framework | |Software |- |50. |Official app | |Software |- |51. |history of topic | |All |- |52. |implementation of | |Software |- |53. |build system | |Software |- |54. |has command line option | |Software |- |55. |used by | |All |- |56. |founder | |Institutions, associations |- |57. |motto text | |Institutions, associations |- |58. |member of | |Institutions, associations |- |59. |follows | |All |- |60. |followed by | |All |- |61. |replaces | |All |- |62. |{{Z|Z40811}} |{{Z|Z40810}} |Creative works |- |63. |collection | |Creative works |- |64. |software quality assurance | |Software |- |65. |Copyright licence | |Creative works |- |66. |Copyright status | |Creative works |- |67. |Logo image | |Creative works |- |68. |Icon (image) | |Creative works |- |69. |game mode | |Video games |- |70. |distribution format | |Software |- |71. |award received | |Creative works |- |72. |maintained by | |Software |- |73. |Funding scheme | |Creative works |- |74. |child organization or unit | |Organizations |- |75. |product or material produced | |Organizations |- |76. |represented by | |Organizations |- |77. |movement | |Organizations |- |78. |member of | |All |- |79. |typeface/font used | |Creative works |- |80. |update method | |Software |- |81. |small logo or icon | |Creative works |- |82. |official name | |All |- |83. |part of the series | |Creative works |- |84. |edition or translation of | |Creative works |- |85. |manufacturer | |Works |- |86. |brand | |Organizations |- |87. |related image | |All |- |88. |significant event | |All |- |89. |announcement date | |All |- |90. |working title | |All |- |91. |different from | |All |- |92. |genre | |All |- |93. |operating system | |Software, programming language |- |94. |original language of work or name | |Creative works |- |95. |studied by | |Academics |- |96. |area | |Geography |- |97. |located in time zone | |Geography |- |98. |elevation above sea level | |Geography |- |99. |economy of topic | |Geography |- |100. |history of topic | |Geography, History |- |101. |demographics of topic | |Geography |- |102. |native label | |All |} ===== Supplementary functions for sentences ===== {| class="wikitable" |+ !No. !Function !Configuration !Example |- |1. |{{Z|Z38729}} |{{Z|Z38786}} | |- |2. |{{Z|Z38782}} |{{Z|Z38781}} | |- | | | | |} == Infoboxes == Check [[User:Jsamwrites/Infoboxes]] == Navbox (External links not yet enabled on Abstract Wikidata) == * {{Z|Z39101}} == Useful functions == * {{Z|Z36303}} * {{Z|Z34943}} * {{Z|Z36083}} * {{Z|Z36218}} * {{Z|Z32962}} * {{Z|Z32179}} * {{Z|Z32428}} * {{Z|Z27243}} * {{Z|Z31917}} * {{Z|Z33690}} * {{Z|Z28016}} * {{Z|Z36193}} * {{Z|Z29749}} * {{Z|Z36038}} * {{Z|Z36993}} === References === * {{Z|Z31921}} == Catalogue == * [[Wikifunctions:Catalogue|Catalogue of important functions]] * [[Wikifunctions:Catalogue/Natural language operations/Global language functions|Global language functions]] == Phrases == List of objects: * {{Z|Z18928}} * {{Z|Z18929}} * {{Z|Z18979}} == Function application == * {{Z|Z873}} == Configuration == * {{Z|Z14294}} == Types == * [[Special:ListObjectsByType|All supported types]] == Wikidata == * {{Z|Z22220}} * {{Z|Z22222}} == Documentation == * [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]] 6bv4o548wl4xnahq1mo0jdak5k0pczt Wikifunctions:Catalogue/Natural language operations/Global language functions 4 41926 309462 308821 2026-09-06T10:26:44Z Denny 81 /* abstract builders */ 309462 wikitext text/x-wiki See also the [[Wikifunctions:Catalogue/Wikidata operations|Wikidata operations]], particularly for Lexemes, Senses, and Forms. == Sentence and fragment generation == {{main|WF:NLG functions}} {{see also|WF:Abstract Wikipedia/2025 fragment experiments}} * {{Z+|Z26039}} * {{Z+|Z26095}} * {{Z+|Z26627}} * {{Z+|Z28803}} * {{Z+|Z29743}} * {{Z+|Z31405}} * {{Z+|Z32321}} * {{Z+|Z32208}} ** {{Z+|Z32204}} * {{Z+|Z32229}} * {{Z+|Z32283}} ** {{Z+|Z32308}} * {{Z+|Z32276}} * {{Z+|Z32297}} * {{Z+|Z32326}} * {{Z+|Z39770}} ** {{Z+|Z39772}} === Cross-lingual sentence creation === * {{Z+|Z22664}} * {{Z+|Z26955}} * {{Z+|Z27137}} * {{Z+|Z27885}} ** {{Z+|Z30159}} * {{Z+|Z28254}} === Helpers === ;Genders * {{z+|Z26676}} * {{z+|Z30539}} * {{z+|Z28089}} * {{z+|Z26745}} * {{z+|Z23067}} * {{z+|Z26364}} * {{z+|Z25754}} * {{z+|Z20616}} == Numbers == * {{Z+|Z16437}} * {{Z+|Z26829}} == Natural language == {{Help:Type deconstruction table/Natural language}} * {{Z+|Z860}} ** {{Z+|Z24097}} ** {{Z+|Z34854}} * {{Z+|Z14329}} ** {{Z+|Z28282}} ** {{Z+|Z25974}} * {{Z+|Z29958}} ** {{Z+|Z29649}} * {{Z+|Z14326}} * {{Z+|Z14321}} ** {{Z+|Z29750}} * {{Z+|Z33738}} * {{Z+|Z29654}} * {{Z+|Z30043}} === Writing systems === * {{Z+|Z34854}} * {{Z+|Z34993}} ** {{Z+|Z38395}} *** {{Z+|Z25974}} * {{Z+|Z39957}} == Monolingual text and stringset == {{Help:Type deconstruction table/Monolingual text}} {{Help:Type deconstruction table/Monolingual stringset}} * {{Z+|Z14392}} * {{Z+|Z12877}} ** {{Z+|Z33175}} ** {{Z+|Z14334}} * {{Z+|Z14396}} ** {{Z+|Z21583}} ** {{Z+|Z29749}} * {{Z+|Z19254}} * {{Z+|Z19279}} * {{Z+|Z23236}} * {{Z+|Z26107}} ** {{Z+|Z861}} * {{Z+|Z34663}} == Multilingual text and stringset == {{Help:Type deconstruction table/Multilingual text}} {{Help:Type deconstruction table/Multilingual stringset}} * {{Z+|Z19312}} * {{Z+|Z19254}} * {{Z+|Z19272}} * {{Z+|Z19279}} * {{Z+|Z23236}} * {{Z+|Z27893}} ** {{Z+|Z27905}} == Select a language and language configurator == {{Help:Type deconstruction table/Per lang config}} {{Help:Type deconstruction table/Per lang config branch}} * {{Z+|Z14310}} * {{Z+|Z14311}} * {{Z+|Z14548}} * {{Z+|Z23156}} * {{Z+|Z23159}} * {{Z+|Z23143}} == Language functions for table (experimental) == Maybe will be replaced or augmented with [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for syntactic functions|syntactic phrase functions]]. === Syntactic tables === Regarding the Type {{Z+|Z36462}} * {{Z+|Z36608}} * ''(not working 100%)'' {{Z+|Z36717}} * {{Z+|Z36613}} * {{Z+|Z36616}} * {{Z+|Z36636}} * {{Z+|Z36639}} * {{Z+|Z36644}} * {{Z+|Z36723}} * {{Z+|Z36727}} * {{Z+|Z36650}} * {{Z+|Z36652}} * {{Z+|Z36733}} * {{Z+|Z36737}} * {{Z+|Z36743}} * {{Z+|Z36747}} * {{Z+|Z36823}} * {{Z+|Z36820}} * {{Z+|Z36827}} * {{Z+|Z36957}} * {{Z+|Z37029}} * {{Z+|Z37510}} * Agree options === Syntactic options === Regarding the Type {{Z+|Z36463}} * {{Z+|Z36656}} * {{Z+|Z36658}} * {{Z+|Z36660}} * ''(not working 100%)'' {{Z+|Z36670}} * {{Z+|Z36662}} * {{Z+|Z36666}} * {{Z+|Z36816}} * {{Z+|Z36959}} * {{Z+|Z37512}} * {{Z+|Z37004}} === Abstract functions === * {{Z+|Z37089}} * {{Z+|Z37115}} * {{Z+|Z37120}} * {{Z+|Z37126}} * {{Z+|Z37140}} * {{Z+|Z37146}} * {{Z+|Z37150}} * {{Z+|Z37507}} ==== returning HTML ==== * {{Z+|Z37126}} * {{Z+|Z37143}} == Language functions for syntactic functions (experimental) == === Syntactic phrase function === Type: {{Z+|Z39358}} * {{Z+|Z39360}} * {{Z+|Z39385}} * {{Z+|Z39362}} ** {{Z+|Z39395}} * {{Z+|Z39368}} ** {{Z+|Z39399}} * {{Z+|Z39371}} ** {{Z+|Z39403}} ** {{Z+|Z39411}} ** {{Z+|Z41003}} * {{Z+|Z39375}} ** {{Z+|Z40397}} ** {{Z+|Z41030}} ** {{Z+|Z41033}} ** {{Z+|Z41036}} * {{Z+|Z41039}} * Example values ** {{Z|Z39363}} ** {{Z|Z39365}} === Feature === Type: {{Z+|Z39328}} * {{Z+|Z39350}} * {{Z+|Z39342}} ** {{Z+|Z39406}} * {{Z+|Z39346}} * {{Z+|Z39351}} * {{Z+|Z41006}} * {{Z+|Z39413}} === abstract builders === * {{Z+|Z40561}} * {{Z+|Z41334}} * {{Z+|Z40596}} * {{Z+|Z40650}} * {{Z+|Z40656}} * {{Z+|Z41148}} === supporting functions === * {{Z+|Z40459}} * {{Z+|Z39425}} === HTML-producing === * {{Z+|Z40471}} * {{Z+|Z40659}} * {{Z+|Z40662}} [[Category:Lists of functions]] lf9ml2nder47vknqx2z0m252s5urdmu Wikifunctions:Catalogue/Natural language operations/English 4 41934 309013 305907 2026-09-05T15:46:17Z Denny 81 /* determiner */ 309013 wikitext text/x-wiki ==Sentence and fragment generation== ===General-purpose=== * {{Z+|Z26088}} * {{Z+|Z23410}} * {{Z+|Z21765}} * {{Z+|Z26570}} * {{Z+|Z32199}} * {{Z+|Z32230}} * {{Z+|Z32244}} * {{Z+|Z32249}} ===Special use cases=== * {{Z+|Z20597}} * {{Z+|Z28784}} ==Morphology== ===Nouns and pronouns=== * {{Z+|Z11089}} * {{Z+|Z11218}} * {{Z+|Z22490}} ====Possessives==== * {{Z+|Z11302}} * {{Z+|Z19125}} ===Verbs=== * {{Z+|Z24676}} * {{Z+|Z24687}} * {{Z+|Z13177}} * {{Z+|Z13087}} ===Adjectives and adverbs=== * {{Z+|Z11795}} * {{Z+|Z12203}} ** {{Z+|Z29851}} *** {{Z+|Z29852}} ===Articles=== * {{Z+|Z21739}} ** {{Z+|Z32314}} * {{Z+|Z32935}} * {{Z+|Z32929}} * {{Z+|Z32645}} ===Word derivation=== * {{Z+|Z11390}} * {{Z+|Z11646}} * {{Z+|Z13280}} * {{Z+|Z13262}} ===Other=== * {{Z+|Z13254}} ==Numbers== * {{Z+|Z13587}} * {{Z+|Z14526}} * {{Z+|Z13596}} * {{Z+|Z14726}} * {{Z+|Z14531}} * {{Z+|Z14523}} ==Other== * {{Z+|Z23827}} * {{Z+|Z18852}} * {{Z+|Z18859}} == Function usage on Abstract Wikipedia == See function usage on Abstract Wikipedia on this [https://abstract-data.toolforge.org/?lang=en tool for en]. ==Configurations== {{LanguageConfigurations|Language=en|Language2=en-au|Language3=en-gb|Language4=en-us}} == Syntactic tables (experimental) == For more about Syntactic tables see the [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for table|language independent functions for tables]]. These are the ones specific for English. Syntactic tables are experimental and may be deprecated entirely, especially in favor of syntactic functions. === Nouns === * Example noun: {{Z|Z36617}} * {{Z+|Z36607}} * {{Z+|Z36754}} * {{Z+|Z36759}} * {{Z+|Z36762}} * {{Z+|Z36766}} * {{Z+|Z36770}} * {{Z+|Z36969}} * {{Z+|Z37080}} === Determiners === * specific determiners ** {{Z+|Z36781}} ** {{Z+|Z36782}} ** {{Z+|Z36783}} ** {{Z+|Z36784}} ** {{Z+|Z36791}} * {{Z+|Z36785}} * {{Z+|Z36792}} === Noun phrase === * {{Z+|Z36798}} * {{Z+|Z36925}} * {{Z+|Z36935}} === Adjective === * example adjective: {{Z|Z36968}} * {{Z+|Z36972}} * {{Z+|Z36975}} * {{Z+|Z36978}} * {{Z+|Z37076}} === Sentence === * {{Z+|Z37083}} * {{Z+|Z37086}} * {{Z+|Z36939}} * {{Z+|Z36953}} == Syntactic phrase functions == === Functions for building anonymous functions === === nouns === * {{Z+|Z39425}} * {{Z+|Z39430}} * {{Z+|Z39437}} * {{Z+|Z40299}} * {{Z+|Z40335}} * {{Z+|Z40344}} * {{Z+|Z40374}} * {{Z+|Z40378}} === determiner === * {{Z+|Z40382}} * {{Z+|Z40389}} * {{Z+|Z40391}} * {{Z+|Z40421}} * {{Z+|Z40419}} * {{Z+|Z40423}} * {{Z+|Z40427}} === adjective === * {{Z+|Z41157}} * {{Z+|Z41204}} === noun phrase === * {{Z+|Z40395}} * {{Z+|Z40457}} === clause === * {{Z+|Z40440}} * {{Z+|Z40450}} * {{Z+|Z40505}} * {{Z+|Z40550}} [[Category:Lists of functions]] [[Category:English]] j6gis9jyoh0kvmqfk70ksmjxo9dlktx 309279 309013 2026-09-06T07:04:48Z Denny 81 /* adjective */ 309279 wikitext text/x-wiki ==Sentence and fragment generation== ===General-purpose=== * {{Z+|Z26088}} * {{Z+|Z23410}} * {{Z+|Z21765}} * {{Z+|Z26570}} * {{Z+|Z32199}} * {{Z+|Z32230}} * {{Z+|Z32244}} * {{Z+|Z32249}} ===Special use cases=== * {{Z+|Z20597}} * {{Z+|Z28784}} ==Morphology== ===Nouns and pronouns=== * {{Z+|Z11089}} * {{Z+|Z11218}} * {{Z+|Z22490}} ====Possessives==== * {{Z+|Z11302}} * {{Z+|Z19125}} ===Verbs=== * {{Z+|Z24676}} * {{Z+|Z24687}} * {{Z+|Z13177}} * {{Z+|Z13087}} ===Adjectives and adverbs=== * {{Z+|Z11795}} * {{Z+|Z12203}} ** {{Z+|Z29851}} *** {{Z+|Z29852}} ===Articles=== * {{Z+|Z21739}} ** {{Z+|Z32314}} * {{Z+|Z32935}} * {{Z+|Z32929}} * {{Z+|Z32645}} ===Word derivation=== * {{Z+|Z11390}} * {{Z+|Z11646}} * {{Z+|Z13280}} * {{Z+|Z13262}} ===Other=== * {{Z+|Z13254}} ==Numbers== * {{Z+|Z13587}} * {{Z+|Z14526}} * {{Z+|Z13596}} * {{Z+|Z14726}} * {{Z+|Z14531}} * {{Z+|Z14523}} ==Other== * {{Z+|Z23827}} * {{Z+|Z18852}} * {{Z+|Z18859}} == Function usage on Abstract Wikipedia == See function usage on Abstract Wikipedia on this [https://abstract-data.toolforge.org/?lang=en tool for en]. ==Configurations== {{LanguageConfigurations|Language=en|Language2=en-au|Language3=en-gb|Language4=en-us}} == Syntactic tables (experimental) == For more about Syntactic tables see the [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for table|language independent functions for tables]]. These are the ones specific for English. Syntactic tables are experimental and may be deprecated entirely, especially in favor of syntactic functions. === Nouns === * Example noun: {{Z|Z36617}} * {{Z+|Z36607}} * {{Z+|Z36754}} * {{Z+|Z36759}} * {{Z+|Z36762}} * {{Z+|Z36766}} * {{Z+|Z36770}} * {{Z+|Z36969}} * {{Z+|Z37080}} === Determiners === * specific determiners ** {{Z+|Z36781}} ** {{Z+|Z36782}} ** {{Z+|Z36783}} ** {{Z+|Z36784}} ** {{Z+|Z36791}} * {{Z+|Z36785}} * {{Z+|Z36792}} === Noun phrase === * {{Z+|Z36798}} * {{Z+|Z36925}} * {{Z+|Z36935}} === Adjective === * example adjective: {{Z|Z36968}} * {{Z+|Z36972}} * {{Z+|Z36975}} * {{Z+|Z36978}} * {{Z+|Z37076}} === Sentence === * {{Z+|Z37083}} * {{Z+|Z37086}} * {{Z+|Z36939}} * {{Z+|Z36953}} == Syntactic phrase functions == === Functions for building anonymous functions === === nouns === * {{Z+|Z39425}} * {{Z+|Z39430}} * {{Z+|Z39437}} * {{Z+|Z40299}} * {{Z+|Z40335}} * {{Z+|Z40344}} * {{Z+|Z40374}} * {{Z+|Z40378}} === determiner === * {{Z+|Z40382}} * {{Z+|Z40389}} * {{Z+|Z40391}} * {{Z+|Z40421}} * {{Z+|Z40419}} * {{Z+|Z40423}} * {{Z+|Z40427}} === adjective === * {{Z+|Z41157}} * {{Z+|Z41204}} * {{Z+|Z41251}} === noun phrase === * {{Z+|Z40395}} * {{Z+|Z40457}} === clause === * {{Z+|Z40440}} * {{Z+|Z40450}} * {{Z+|Z40505}} * {{Z+|Z40550}} [[Category:Lists of functions]] [[Category:English]] lcmovqo19pmie6ot4gmkts93mh44ctq 309364 309279 2026-09-06T09:14:36Z Denny 81 /* adjective */ 309364 wikitext text/x-wiki ==Sentence and fragment generation== ===General-purpose=== * {{Z+|Z26088}} * {{Z+|Z23410}} * {{Z+|Z21765}} * {{Z+|Z26570}} * {{Z+|Z32199}} * {{Z+|Z32230}} * {{Z+|Z32244}} * {{Z+|Z32249}} ===Special use cases=== * {{Z+|Z20597}} * {{Z+|Z28784}} ==Morphology== ===Nouns and pronouns=== * {{Z+|Z11089}} * {{Z+|Z11218}} * {{Z+|Z22490}} ====Possessives==== * {{Z+|Z11302}} * {{Z+|Z19125}} ===Verbs=== * {{Z+|Z24676}} * {{Z+|Z24687}} * {{Z+|Z13177}} * {{Z+|Z13087}} ===Adjectives and adverbs=== * {{Z+|Z11795}} * {{Z+|Z12203}} ** {{Z+|Z29851}} *** {{Z+|Z29852}} ===Articles=== * {{Z+|Z21739}} ** {{Z+|Z32314}} * {{Z+|Z32935}} * {{Z+|Z32929}} * {{Z+|Z32645}} ===Word derivation=== * {{Z+|Z11390}} * {{Z+|Z11646}} * {{Z+|Z13280}} * {{Z+|Z13262}} ===Other=== * {{Z+|Z13254}} ==Numbers== * {{Z+|Z13587}} * {{Z+|Z14526}} * {{Z+|Z13596}} * {{Z+|Z14726}} * {{Z+|Z14531}} * {{Z+|Z14523}} ==Other== * {{Z+|Z23827}} * {{Z+|Z18852}} * {{Z+|Z18859}} == Function usage on Abstract Wikipedia == See function usage on Abstract Wikipedia on this [https://abstract-data.toolforge.org/?lang=en tool for en]. ==Configurations== {{LanguageConfigurations|Language=en|Language2=en-au|Language3=en-gb|Language4=en-us}} == Syntactic tables (experimental) == For more about Syntactic tables see the [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for table|language independent functions for tables]]. These are the ones specific for English. Syntactic tables are experimental and may be deprecated entirely, especially in favor of syntactic functions. === Nouns === * Example noun: {{Z|Z36617}} * {{Z+|Z36607}} * {{Z+|Z36754}} * {{Z+|Z36759}} * {{Z+|Z36762}} * {{Z+|Z36766}} * {{Z+|Z36770}} * {{Z+|Z36969}} * {{Z+|Z37080}} === Determiners === * specific determiners ** {{Z+|Z36781}} ** {{Z+|Z36782}} ** {{Z+|Z36783}} ** {{Z+|Z36784}} ** {{Z+|Z36791}} * {{Z+|Z36785}} * {{Z+|Z36792}} === Noun phrase === * {{Z+|Z36798}} * {{Z+|Z36925}} * {{Z+|Z36935}} === Adjective === * example adjective: {{Z|Z36968}} * {{Z+|Z36972}} * {{Z+|Z36975}} * {{Z+|Z36978}} * {{Z+|Z37076}} === Sentence === * {{Z+|Z37083}} * {{Z+|Z37086}} * {{Z+|Z36939}} * {{Z+|Z36953}} == Syntactic phrase functions == === Functions for building anonymous functions === === nouns === * {{Z+|Z39425}} * {{Z+|Z39430}} * {{Z+|Z39437}} * {{Z+|Z40299}} * {{Z+|Z40335}} * {{Z+|Z40344}} * {{Z+|Z40374}} * {{Z+|Z40378}} === determiner === * {{Z+|Z40382}} * {{Z+|Z40389}} * {{Z+|Z40391}} * {{Z+|Z40421}} * {{Z+|Z40419}} * {{Z+|Z40423}} * {{Z+|Z40427}} === adjective === * {{Z+|Z41157}} * {{Z+|Z41204}} * {{Z+|Z41251}} * {{Z+|Z41304}} * {{Z+|Z41266}} === noun phrase === * {{Z+|Z40395}} * {{Z+|Z40457}} === clause === * {{Z+|Z40440}} * {{Z+|Z40450}} * {{Z+|Z40505}} * {{Z+|Z40550}} [[Category:Lists of functions]] [[Category:English]] s45cxa3tw30bqkjta5vaxur63d5iv3w 309406 309364 2026-09-06T09:46:32Z Denny 81 /* adjective */ 309406 wikitext text/x-wiki ==Sentence and fragment generation== ===General-purpose=== * {{Z+|Z26088}} * {{Z+|Z23410}} * {{Z+|Z21765}} * {{Z+|Z26570}} * {{Z+|Z32199}} * {{Z+|Z32230}} * {{Z+|Z32244}} * {{Z+|Z32249}} ===Special use cases=== * {{Z+|Z20597}} * {{Z+|Z28784}} ==Morphology== ===Nouns and pronouns=== * {{Z+|Z11089}} * {{Z+|Z11218}} * {{Z+|Z22490}} ====Possessives==== * {{Z+|Z11302}} * {{Z+|Z19125}} ===Verbs=== * {{Z+|Z24676}} * {{Z+|Z24687}} * {{Z+|Z13177}} * {{Z+|Z13087}} ===Adjectives and adverbs=== * {{Z+|Z11795}} * {{Z+|Z12203}} ** {{Z+|Z29851}} *** {{Z+|Z29852}} ===Articles=== * {{Z+|Z21739}} ** {{Z+|Z32314}} * {{Z+|Z32935}} * {{Z+|Z32929}} * {{Z+|Z32645}} ===Word derivation=== * {{Z+|Z11390}} * {{Z+|Z11646}} * {{Z+|Z13280}} * {{Z+|Z13262}} ===Other=== * {{Z+|Z13254}} ==Numbers== * {{Z+|Z13587}} * {{Z+|Z14526}} * {{Z+|Z13596}} * {{Z+|Z14726}} * {{Z+|Z14531}} * {{Z+|Z14523}} ==Other== * {{Z+|Z23827}} * {{Z+|Z18852}} * {{Z+|Z18859}} == Function usage on Abstract Wikipedia == See function usage on Abstract Wikipedia on this [https://abstract-data.toolforge.org/?lang=en tool for en]. ==Configurations== {{LanguageConfigurations|Language=en|Language2=en-au|Language3=en-gb|Language4=en-us}} == Syntactic tables (experimental) == For more about Syntactic tables see the [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for table|language independent functions for tables]]. These are the ones specific for English. Syntactic tables are experimental and may be deprecated entirely, especially in favor of syntactic functions. === Nouns === * Example noun: {{Z|Z36617}} * {{Z+|Z36607}} * {{Z+|Z36754}} * {{Z+|Z36759}} * {{Z+|Z36762}} * {{Z+|Z36766}} * {{Z+|Z36770}} * {{Z+|Z36969}} * {{Z+|Z37080}} === Determiners === * specific determiners ** {{Z+|Z36781}} ** {{Z+|Z36782}} ** {{Z+|Z36783}} ** {{Z+|Z36784}} ** {{Z+|Z36791}} * {{Z+|Z36785}} * {{Z+|Z36792}} === Noun phrase === * {{Z+|Z36798}} * {{Z+|Z36925}} * {{Z+|Z36935}} === Adjective === * example adjective: {{Z|Z36968}} * {{Z+|Z36972}} * {{Z+|Z36975}} * {{Z+|Z36978}} * {{Z+|Z37076}} === Sentence === * {{Z+|Z37083}} * {{Z+|Z37086}} * {{Z+|Z36939}} * {{Z+|Z36953}} == Syntactic phrase functions == === Functions for building anonymous functions === === nouns === * {{Z+|Z39425}} * {{Z+|Z39430}} * {{Z+|Z39437}} * {{Z+|Z40299}} * {{Z+|Z40335}} * {{Z+|Z40344}} * {{Z+|Z40374}} * {{Z+|Z40378}} === determiner === * {{Z+|Z40382}} * {{Z+|Z40389}} * {{Z+|Z40391}} * {{Z+|Z40421}} * {{Z+|Z40419}} * {{Z+|Z40423}} * {{Z+|Z40427}} === adjective === * {{Z+|Z41157}} * {{Z+|Z41204}} * {{Z+|Z41251}} * {{Z+|Z41304}} * {{Z+|Z41266}} * {{Z+|Z41311}} === noun phrase === * {{Z+|Z40395}} * {{Z+|Z40457}} === clause === * {{Z+|Z40440}} * {{Z+|Z40450}} * {{Z+|Z40505}} * {{Z+|Z40550}} [[Category:Lists of functions]] [[Category:English]] l2r1gplaqcvmuoa41iy8yj9ctw90bfa 309449 309406 2026-09-06T10:07:31Z Denny 81 /* adjective */ 309449 wikitext text/x-wiki ==Sentence and fragment generation== ===General-purpose=== * {{Z+|Z26088}} * {{Z+|Z23410}} * {{Z+|Z21765}} * {{Z+|Z26570}} * {{Z+|Z32199}} * {{Z+|Z32230}} * {{Z+|Z32244}} * {{Z+|Z32249}} ===Special use cases=== * {{Z+|Z20597}} * {{Z+|Z28784}} ==Morphology== ===Nouns and pronouns=== * {{Z+|Z11089}} * {{Z+|Z11218}} * {{Z+|Z22490}} ====Possessives==== * {{Z+|Z11302}} * {{Z+|Z19125}} ===Verbs=== * {{Z+|Z24676}} * {{Z+|Z24687}} * {{Z+|Z13177}} * {{Z+|Z13087}} ===Adjectives and adverbs=== * {{Z+|Z11795}} * {{Z+|Z12203}} ** {{Z+|Z29851}} *** {{Z+|Z29852}} ===Articles=== * {{Z+|Z21739}} ** {{Z+|Z32314}} * {{Z+|Z32935}} * {{Z+|Z32929}} * {{Z+|Z32645}} ===Word derivation=== * {{Z+|Z11390}} * {{Z+|Z11646}} * {{Z+|Z13280}} * {{Z+|Z13262}} ===Other=== * {{Z+|Z13254}} ==Numbers== * {{Z+|Z13587}} * {{Z+|Z14526}} * {{Z+|Z13596}} * {{Z+|Z14726}} * {{Z+|Z14531}} * {{Z+|Z14523}} ==Other== * {{Z+|Z23827}} * {{Z+|Z18852}} * {{Z+|Z18859}} == Function usage on Abstract Wikipedia == See function usage on Abstract Wikipedia on this [https://abstract-data.toolforge.org/?lang=en tool for en]. ==Configurations== {{LanguageConfigurations|Language=en|Language2=en-au|Language3=en-gb|Language4=en-us}} == Syntactic tables (experimental) == For more about Syntactic tables see the [[Wikifunctions:Catalogue/Natural language operations/Global language functions#Language functions for table|language independent functions for tables]]. These are the ones specific for English. Syntactic tables are experimental and may be deprecated entirely, especially in favor of syntactic functions. === Nouns === * Example noun: {{Z|Z36617}} * {{Z+|Z36607}} * {{Z+|Z36754}} * {{Z+|Z36759}} * {{Z+|Z36762}} * {{Z+|Z36766}} * {{Z+|Z36770}} * {{Z+|Z36969}} * {{Z+|Z37080}} === Determiners === * specific determiners ** {{Z+|Z36781}} ** {{Z+|Z36782}} ** {{Z+|Z36783}} ** {{Z+|Z36784}} ** {{Z+|Z36791}} * {{Z+|Z36785}} * {{Z+|Z36792}} === Noun phrase === * {{Z+|Z36798}} * {{Z+|Z36925}} * {{Z+|Z36935}} === Adjective === * example adjective: {{Z|Z36968}} * {{Z+|Z36972}} * {{Z+|Z36975}} * {{Z+|Z36978}} * {{Z+|Z37076}} === Sentence === * {{Z+|Z37083}} * {{Z+|Z37086}} * {{Z+|Z36939}} * {{Z+|Z36953}} == Syntactic phrase functions == === Functions for building anonymous functions === === nouns === * {{Z+|Z39425}} * {{Z+|Z39430}} * {{Z+|Z39437}} * {{Z+|Z40299}} * {{Z+|Z40335}} * {{Z+|Z40344}} * {{Z+|Z40374}} * {{Z+|Z40378}} === determiner === * {{Z+|Z40382}} * {{Z+|Z40389}} * {{Z+|Z40391}} * {{Z+|Z40421}} * {{Z+|Z40419}} * {{Z+|Z40423}} * {{Z+|Z40427}} === adjective === * {{Z+|Z41157}} * {{Z+|Z41204}} * {{Z+|Z41251}} * {{Z+|Z41304}} * {{Z+|Z41266}} * {{Z+|Z41311}} * {{Z+|Z41322}} === noun phrase === * {{Z+|Z40395}} * {{Z+|Z40457}} === clause === * {{Z+|Z40440}} * {{Z+|Z40450}} * {{Z+|Z40505}} * {{Z+|Z40550}} [[Category:Lists of functions]] [[Category:English]] ki7stle3dmalogj3kkn73nhd8ym9smy Z19601 0 42146 309328 297817 2026-09-06T08:46:24Z 鈴音雨 101019 japanese 309328 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19601" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z40" }, "Z17K2": "Z19601K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "N Conditions" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "conditions" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "N voorwaarden" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "n Bedingungen" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "N条件リスト" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z19601K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "N+1 Options (default last), leave untyped" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "options" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "N+1 opties (standaard laatste), laat ongetypeerd" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "letzte Standard-Option" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "N+1オプション (最後がデフォルト)、型なし" } ] } } ], "Z8K2": "Z1", "Z8K3": [ "Z20", "Z19606", "Z19609", "Z20684", "Z20685", "Z20686", "Z22106", "Z22185" ], "Z8K4": [ "Z14", "Z33497", "Z22364", "Z19605", "Z22103", "Z22102", "Z20683" ], "Z8K5": "Z19601" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "N-ifs" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "multiples si" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "N-als-voorwaarde" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "n wenns" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "複数条件(N-Ifs)文" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "multi if", "gate", "transistor", "multi-transistor", "if(s) with default" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "als", "poort", "transistor", "multitransistor", "multi als" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "An if statement any amount of times, with a matching list of options, and a final default. See triple ifs (Z19565) for a clearer way to input 2 conditions, and (Z802) for 1 condition." }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "une instruction « si » un certain nombre de fois ; voir triple si (Z19565) pour une manière plus claire de saisir deux conditions, et Z802 pour une condition." }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "als-verklaring dat een willekeurig aantal keren kan worden herhaald, met een bijbehorende lijst met opties en een laatste standaardwaarde" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "beliebig viele wenn-Aussagen mit einer Liste von Optionen und einer finalen Option" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "if文を任意の回数繰り返し、対応するオプションのリストと最終的なデフォルト値を指定します。2つの条件をより分かりやすく入力する方法については、トリプルif (Z19565) を、1つの条件については (Z802) を参照してください。" } ] } } mr7jnm86fwq7vtxwe1y1xlkaylvatkc Z19677 0 42420 309435 282427 2026-09-06T10:00:06Z 鈴音雨 101019 japanese 309435 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19677" }, "Z2K2": { "Z1K1": "Z4", "Z4K1": "Z19677", "Z4K2": [ "Z3", { "Z1K1": "Z3", "Z3K1": "Z16659", "Z3K2": "Z19677K1", "Z3K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "sign" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Vorzeichen" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "চিহ্ন" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "signe" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "semn" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "segno" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "знак" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "चिह्न" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "סימן" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "teken" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "znaménko" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "符号" } ] }, "Z3K4": { "Z1K1": "Z40", "Z40K1": "Z42" } }, { "Z1K1": "Z3", "Z3K1": "Z13518", "Z3K2": "Z19677K2", "Z3K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "numerator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zähler" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "লব" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "numérateur" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "numărător" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "numeratore" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "бројилац" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "अंश" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מספר טבעי (מחולק; מונה)" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "teller" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "čitatel" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "分子" } ] }, "Z3K4": { "Z1K1": "Z40", "Z40K1": "Z42" } }, { "Z1K1": "Z3", "Z3K1": "Z13518", "Z3K2": "Z19677K3", "Z3K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "denominator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Nenner" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "হর" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "dénominateur" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "numitor" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "denominatore" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "именилац" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "हर" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מספר טבעי (מחלק; מכנה)" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "noemer" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "jmenovatel" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "分母" } ] }, "Z3K4": { "Z1K1": "Z40", "Z40K1": "Z42" } } ], "Z4K3": "Z101", "Z4K4": "Z19686", "Z4K5": "Z21971", "Z4K6": "Z21930", "Z4K7": [ "Z46", "Z19678", "Z19701" ], "Z4K8": [ "Z64", "Z19681", "Z19702" ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "Rationellt tal" }, { "Z1K1": "Z11", "Z11K1": "Z1037", "Z11K2": "Número racional" }, { "Z1K1": "Z11", "Z11K1": "Z1099", "Z11K2": "Rational Zuel" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "মূলদ সংখ্যা" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "nombre rationnel" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "Număr rațional" }, { "Z1K1": "Z11", "Z11K1": "Z1005", "Z11K2": "Рациональное число" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Numero razionale" }, { "Z1K1": "Z11", "Z11K1": "Z1051", "Z11K2": "rationaaliluku" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "有理数" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "유리수" }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "Рационалан број" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "परिमेय संख्या" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מספר רציונלי" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "عدد كسري" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "rationaal getal" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "Racionální číslo" }, { "Z1K1": "Z11", "Z11K1": "Z1645", "Z11K2": "有理数" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "rational", "fraction", "division" ] }, { "Z1K1": "Z31", "Z31K1": "Z1664", "Z31K2": [ "Z6", "rațional", "împărțire", "fracție" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "razionale", "frazione", "rapporto" ] }, { "Z1K1": "Z31", "Z31K1": "Z1181", "Z31K2": [ "Z6", "разломак", "рационални број" ] }, { "Z1K1": "Z31", "Z31K1": "Z1820", "Z31K2": [ "Z6", "अपूर्णांक" ] }, { "Z1K1": "Z31", "Z31K1": "Z1186", "Z31K2": [ "Z6", "יחס", "שבר", "חלוקה", "מנה", "רציונלי" ] }, { "Z1K1": "Z31", "Z31K1": "Z1157", "Z31K2": [ "Z6", "rationaal" ] }, { "Z1K1": "Z31", "Z31K1": "Z1062", "Z31K2": [ "Z6", "Zlomek", "Podíl" ] }, { "Z1K1": "Z31", "Z31K1": "Z1645", "Z31K2": [ "Z6", "分数", "除法" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "a signed ratio of two Natural numbers (equivalent to a ratio of integers) not necessarily with the simplest representation " }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "positivt eller negativt tal som kan uttryckas som en kvot av två heltal" }, { "Z1K1": "Z11", "Z11K1": "Z1011", "Z11K2": "দুটি প্রাকৃতিক সংখ্যার একটি চিহ্ন যুক্ত অনুপাত (পূর্ণসংখ্যার অনুপাতের সমতুল্য)।" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "un rapport signé de deux nombres naturels (équivalent à un rapport d'entiers) pas nécessairement avec la représentation la plus simple" }, { "Z1K1": "Z11", "Z11K1": "Z1664", "Z11K2": "un raport cu semn dintre două numere naturale (sau întregi), nu neapărat în reprezentarea cea mai simplificată" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Una frazione con un segno e due numeri naturali come numeratore e denominatore. La frazione non è necessariamente semplificata." }, { "Z1K1": "Z11", "Z11K1": "Z1181", "Z11K2": "означен однос два природна броја, не нужно најпростија репрезентација броја" }, { "Z1K1": "Z11", "Z11K1": "Z1820", "Z11K2": "दो प्राकृतिक संख्याओं का एक चिह्नयुक्त अनुपात (पूर्णांकों के एक अनुपात के समकक्ष), मगर ज़रूरी नहीं सबसे सरल प्रतिनिधित्व में" }, { "Z1K1": "Z11", "Z11K1": "Z1186", "Z11K2": "מספר שהוא מנה בין שני מספרים שלמים, לאו דווקא בצורתו המצומצמת." }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "getekende verhouding van twee natuurlijke getallen" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "znaménkový podíl dvou Přirozených čísel (odpovídající podílu dvou celých čísel), nikoli nutně v základním tvaru" }, { "Z1K1": "Z11", "Z11K1": "Z1645", "Z11K2": "两个自然数(即两个整数)的有符号比值,其表示形式未必最简" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "2つの自然数の符号付き比 (整数の比に相当) で、必ずしも最も単純な表現とは限らない" } ] } } 0thdyp6llqu19pp7s95qn1opw6f49t8 Z19831 0 42613 309139 137803 2026-09-05T19:12:50Z Ameisenigel 44 de 309139 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19831" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19826", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z19826(Z19826K1, Z19826K2):\n\treturn Z19826K1*Z19826K2" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "multiply q*n, python" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Rat. Zahl mit nat. Zahl multiplizieren, Python" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2pgmnicbnzfoin8mi54lrk30gbhc74m Z19832 0 42614 309140 296358 2026-09-05T19:13:12Z Ameisenigel 44 de 309140 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19832" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19827", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16667", "Z16667K1": { "Z1K1": "Z7", "Z7K1": "Z19717", "Z19717K1": { "Z1K1": "Z18", "Z18K1": "Z19827K1" } }, "Z16667K2": "Z16662" }, "Z802K2": "−", "Z802K3": "" }, { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z19733", "Z19733K1": { "Z1K1": "Z18", "Z18K1": "Z19827K1" } } }, "/", { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z19862", "Z19862K1": { "Z1K1": "Z18", "Z18K1": "Z19827K1" } } } ], "Z12899K2": "" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "render rational number, composition" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl in Zeichenkette als Komposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hqta20084vszk9a4aen9doxxd0vkeug Z19833 0 42615 309141 273428 2026-09-05T19:15:05Z Ameisenigel 44 de 309141 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19833" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "first rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "erste rationale Zahl" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "second rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweite rationale Zahl" } ] } } ], "Z8K2": "Z19677", "Z8K3": [ "Z20", "Z19835", "Z19837", "Z19977", "Z19978" ], "Z8K4": [ "Z14", "Z19840", "Z33939", "Z19839", "Z33941" ], "Z8K5": "Z19833" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average of two rationals" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von zwei rationalen Zahlen" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "midpoint", "rational average" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the rational number that is the average of the two inputs" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt die rationale Zahl aus, die den Durchschnitt der zwei angegebenen Zahlen darstellt" } ] } } 8r6vhjzna89kiolbindx9kvfunt6yna 309150 309141 2026-09-05T19:18:07Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309150 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19833" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "first rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "erste rationale Zahl" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "second rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweite rationale Zahl" } ] } } ], "Z8K2": "Z19677", "Z8K3": [ "Z20", "Z19835", "Z19837", "Z19977", "Z19978" ], "Z8K4": [ "Z14", "Z19839", "Z19840", "Z33939", "Z33941" ], "Z8K5": "Z19833" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average of two rationals" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von zwei rationalen Zahlen" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "midpoint", "rational average" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the rational number that is the average of the two inputs" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt die rationale Zahl aus, die den Durchschnitt der zwei angegebenen Zahlen darstellt" } ] } } 1aznemjc3et1a7045svh293ttxs720n 309155 309150 2026-09-05T19:20:41Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309155 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19833" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "first rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "erste rationale Zahl" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19833K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "second rational number" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "zweite rationale Zahl" } ] } } ], "Z8K2": "Z19677", "Z8K3": [ "Z20", "Z19835", "Z19837", "Z19977", "Z19978" ], "Z8K4": [ "Z14", "Z33939", "Z19840", "Z19839", "Z33941" ], "Z8K5": "Z19833" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average of two rationals" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von zwei rationalen Zahlen" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "midpoint", "rational average" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the rational number that is the average of the two inputs" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "gibt die rationale Zahl aus, die den Durchschnitt der zwei angegebenen Zahlen darstellt" } ] } } qt5bey9dgfyuyy7f3v6m8qj3tnacz7b Z19834 0 42616 309142 137810 2026-09-05T19:15:26Z Ameisenigel 44 de 309142 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19834" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19827", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19827", "Z19827K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "4" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "3/4" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "3/4" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "3/4" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0ut6f2fi3d79rj4nymayh2g6mz70rv3 Z19835 0 42617 309144 137811 2026-09-05T19:16:13Z Ameisenigel 44 de 309144 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19835" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19833", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19833", "Z19833K1": { "Z1K1": "Z19677", "Z19677K1": "Z16661", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "0" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z19833K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19686", "Z19686K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "2" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average of 0 and 3 is 3/2" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von 0/1 und 3/1 ist 3/2" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } m9txdg78eljrpkseu5tf5nuyxsd8nid Z19836 0 42618 309145 137866 2026-09-05T19:16:35Z Ameisenigel 44 de 309145 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19836" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19827", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19827", "Z19827K1": { "Z1K1": "Z19677", "Z19677K1": "Z16662", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "8" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "10" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "−8/10" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "−8/10" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "−8/10" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } izpm3j3bp1ykbj6vih3nrji9hkmti50 Z19837 0 42619 309146 137815 2026-09-05T19:17:11Z Ameisenigel 44 de 309146 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19837" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19833", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19833", "Z19833K1": { "Z1K1": "Z19677", "Z19677K1": "Z16662", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z19833K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "2" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "2" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19686", "Z19686K2": { "Z1K1": "Z19677", "Z19677K1": "Z16661", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "0" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average of -1 and 1 is 0" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von −1/1 und 2/2 ist 0/1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2h61e3ya4je2ezmiylnmharg9te3rog Z19838 0 42620 309147 137818 2026-09-05T19:17:31Z Ameisenigel 44 de 309147 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19838" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19827", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19827", "Z19827K1": { "Z1K1": "Z19677", "Z19677K1": "Z16661", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "0" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "0/1" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "0/1" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "0/1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 85c5pg97v2zln02064cignetf2davjn Z19839 0 42621 309149 137819 2026-09-05T19:18:03Z Ameisenigel 44 de 309149 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19839" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19833", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z19708", "Z19708K1": { "Z1K1": "Z7", "Z7K1": "Z19679", "Z19679K1": { "Z1K1": "Z18", "Z18K1": "Z19833K1" }, "Z19679K2": { "Z1K1": "Z18", "Z18K1": "Z19833K2" } }, "Z19708K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "2" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "average rationals, composition of add and /2" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von zwei rationalen Zahlen, Komp." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } m22rx7e5p34akv4bay3g6vy167tid7i Z19840 0 42622 309151 137822 2026-09-05T19:18:22Z Ameisenigel 44 de 309151 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19840" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19833", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z19833(Z19833K1, Z19833K2):\n\treturn (Z19833K1+Z19833K2)/2" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "python q1+q2 / 2" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Durchschnitt von zwei rationalen Zahlen, Python" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 23jqfg3ekj63r0hqldzpbabekj305qm Z19841 0 42623 309154 276820 2026-09-05T19:20:20Z Ameisenigel 44 de 309154 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19841" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z19677", "Z17K2": "Z19841K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rational number to round" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "تقريب عدد كسري" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl" } ] } } ], "Z8K2": "Z16683", "Z8K3": [ "Z20", "Z19842", "Z19843", "Z19844", "Z19845", "Z19847" ], "Z8K4": [ "Z14", "Z35445", "Z19846", "Z27711" ], "Z8K5": "Z19841" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rational to nearest integer, even integer tiebreak" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "تحويل كسر عشري إلى أقرب عدد صحيح، مع كسر متساوي يُ" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl runden" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "round()", "round rational to integer", "q to Z" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "exact halves round to the nearest even integer" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Halbe werden zur nächsten geraden Zahl gerundet" } ] } } lmme4iyb6m07vs386wjazkt3fqmxhnp Z19842 0 42624 309156 232409 2026-09-05T19:20:43Z Ameisenigel 44 de 309156 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19842" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19841", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19841", "Z19841K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "2" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": { "Z1K1": "Z16659", "Z16659K1": "Z16661" }, "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "1/2 rounds to 0" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "1/2 التقريب إلى 0" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "1/2 ≈ 0" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } itr9aw2u64olm7c5iubb20wv4y4oytq Z19843 0 42625 309157 232410 2026-09-05T19:21:01Z Ameisenigel 44 de 309157 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19843" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19841", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19841", "Z19841K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "4" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": { "Z1K1": "Z16659", "Z16659K1": "Z16661" }, "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "1/4 rounds to 0" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "1/4 التقريب إلى 0" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "1/4 ≈ 0" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lnn3s3vstk6jzw95gs8bf53gn3oabej Z19844 0 42626 309159 232418 2026-09-05T19:21:30Z Ameisenigel 44 de 309159 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19844" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19841", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19841", "Z19841K1": { "Z1K1": "Z19677", "Z19677K1": "Z16662", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "4" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "3" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": { "Z1K1": "Z16659", "Z16659K1": "Z16662" }, "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "-4/3 rounds to -1" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "-4/3 التقريب إلى -1" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "−4/3 ≈ -1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1ed1jbseeo5dcn4yatfiz2h6o5n48l0 Z19845 0 42627 309161 232419 2026-09-05T19:22:02Z Ameisenigel 44 de 309161 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19845" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19841", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19841", "Z19841K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "2" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "2" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "3/2 rounds to 2" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "3/2 التقريب إلى 2" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "3/2 ≈ 2" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "choose even 2 instead of odd 1" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "wählt 2 statt 1" } ] } } j5cw5hjugxq62cwu9d92yxhjljf6izg Z19846 0 42628 309162 137836 2026-09-05T19:22:53Z Ameisenigel 44 de 309162 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19846" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19841", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z19841(Z19841K1):\n\treturn round(Z19841K1)" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "python round()" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl runden in Python" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } m5frdri5xszsdh2lq1puvhvexcusbvp Z19847 0 42629 309163 232417 2026-09-05T19:23:13Z Ameisenigel 44 de 309163 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19847" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19841", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19841", "Z19841K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "4" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "3/4 rounds to 1" }, { "Z1K1": "Z11", "Z11K1": "Z1001", "Z11K2": "3/4 التقريب إلى 1" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "3/4 ≈ 1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } csixocgcjzfyvggungo69ls9h7ox54y Z19848 0 42630 309165 271976 2026-09-05T19:25:55Z Ameisenigel 44 de 309165 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19848" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z19848K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "numerator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zähler" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z19848K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "denominator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Nenner" } ] } } ], "Z8K2": "Z19677", "Z8K3": [ "Z20", "Z19849", "Z19851", "Z19852", "Z19853" ], "Z8K4": [ "Z14", "Z19850", "Z34729" ], "Z8K5": "Z19848" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rational from integer numerator and denominator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl aus Zähler und Nenner" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0015eren14ix65qplbmwf6l6w6tt9sd 309170 309165 2026-09-05T19:28:43Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309170 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19848" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z19848K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "numerator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zähler" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z19848K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "denominator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Nenner" } ] } } ], "Z8K2": "Z19677", "Z8K3": [ "Z20", "Z19849", "Z19851", "Z19852", "Z19853" ], "Z8K4": [ "Z14", "Z34729", "Z19850" ], "Z8K5": "Z19848" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rational from integer numerator and denominator" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl aus Zähler und Nenner" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } n9b0lo8ply19yxubsc9puf7gcv12ttl Z19849 0 42631 309168 137845 2026-09-05T19:28:14Z Ameisenigel 44 de 309168 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19849" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z19848", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z19848", "Z19848K1": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "3" } }, "Z19848K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "4" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19686", "Z19686K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "3" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "4" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "(+3)/(+4) = 3/4" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zähler: 3, Nenner: 4 → 3/4" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lwrjaipjvozz0v17bpopcvr0yusizrv Z19850 0 42632 309169 137847 2026-09-05T19:28:38Z Ameisenigel 44 de 309169 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z19850" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z19848", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z19848(Z19848K1, Z19848K2):\n\tfrom fractions import Fraction\n\treturn Fraction(Z19848K1,Z19848K2)" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "q from n1/n2 python Fraction(n1,n2)" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "rationale Zahl aus Zähler und Nenner in Python" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fy9272qpytpwdabzv2ts3asbwuzs37f Z20240 0 43343 308973 296660 2026-09-05T14:32:37Z 鈴音雨 101019 japanese 308973 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z20240" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z20192", "Z14293K2": [ "Z60", "Z1002", "Z1113", "Z1124", "Z1199", "Z1437", "Z1124", "Z1689" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z23193", "Z14293K2": [ "Z60", "Z1787" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26111", "Z14293K2": [ "Z60", "Z1006", "Z1645", "Z1672", "Z1411", "Z1107", "Z1589", "Z1406", "Z1504", "Z1591", "Z1202", "Z1901", "Z1902", "Z1837", "Z1899", "Z1900", "Z1804", "Z1372", "Z1375" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26258", "Z14293K2": [ "Z60", "Z1181", "Z1158" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26692", "Z14293K2": [ "Z60", "Z1011" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z28870", "Z14293K2": [ "Z60", "Z1099" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z37245", "Z14293K2": [ "Z60", "Z1592" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z38246", "Z14293K2": "Z34075" }, { "Z1K1": "Z14293", "Z14293K1": "Z38892", "Z14293K2": [ "Z60", "Z1001" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z41192", "Z14293K2": "Z34003" } ], "Z14294K2": "Z22920" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for displaying Gregorian year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "funzioni di stampa di anni gregoriani" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "konfigurering för att visa gregorianskt år" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Konfiguration der Anzeige eines Jahres " }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示の言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "display functions for Gregorian Year" ] }, { "Z1K1": "Z31", "Z31K1": "Z1430", "Z31K2": [ "Z6", "Konfiguration der Anzeige eines Jahres (gregorianischer Kalender)" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Konfiguration der Anzeige eines Jahres aus dem gregorianischen Kalender" } ] } } 4u5njon76eruvd072sdhwiigsh3f0ng Z20241 0 43344 308974 306044 2026-09-05T14:32:58Z 鈴音雨 101019 japanese 308974 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z20241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z20241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "anno" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "år" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "jaar" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z20241K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "språk" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "taal" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z20243", "Z22926", "Z22927", "Z22930", "Z23257", "Z23258", "Z26115" ], "Z8K4": [ "Z14", "Z20242" ], "Z8K5": "Z20241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "formatta Anno gregoriano" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "visa Gregorianskt år som textsträng" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "geef Gregoriaans jaar weer" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "affichage de l'année grégorienne" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "display Gregorian Year" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "stampa anno gregoriano" ] }, { "Z1K1": "Z31", "Z31K1": "Z1004", "Z31K2": [ "Z6", "année", "année grégorienne", "aaaa" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display function to take a Gregorian year and a language, and return a string representation for that language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Funzione formattatrice che ritorna la stringa rappresentate l'anno Gregoriano data la lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "weergavefunctie die een Gregoriaans jaartal en een taal als invoer ontvangt en een tekenreeksweergave voor die taal retourneert" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年と言語を受け取り、その言語の文字列表現を返す表示関数" } ] } } 9sprbhdrx13qr2dw9ndrfpe3mjbps3u Z20257 0 43430 309384 192464 2026-09-06T09:28:38Z 鈴音雨 101019 japanese 309384 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z20257" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z20257K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "anno" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" } ] } } ], "Z8K2": "Z16683", "Z8K3": [ "Z20", "Z20258", "Z20259", "Z20260", "Z20261", "Z20262" ], "Z8K4": [ "Z14", "Z20264", "Z20263", "Z20265" ], "Z8K5": "Z20257" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Gregorian year to ISO 8601 year integer" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "anno gregoriano in intero ISO 8601" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年をISO 8601の年整数に変換" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "グレゴリオ暦年からISO 8601の年整数に変換" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Per ISO 8601, 1 BC is turned into 0, 2 BC into -1, etc." }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "In accordo con l'ISO 8601, 1 a.C. diventa 0, 2 a.C. diventa -1, ecc." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ISO 8601 に従って、1 BC は 0 に、2 BC は -1 に変換されます。" } ] } } rbwa5a4vmsh4gwwsgmsm72fzdvnskwi Z20591 0 44037 309264 148338 2026-09-06T06:56:09Z 鈴音雨 101019 japanese 309264 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z20591" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z20591K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "mois" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z13518", "Z17K2": "Z20591K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "day number" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "numéro du jour (1-31)" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "日番号" } ] } } ], "Z8K2": "Z20342", "Z8K3": [ "Z20", "Z20592" ], "Z8K4": [ "Z14", "Z20593" ], "Z8K5": "Z20591" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Day of Roman year from components" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Komponen hari dalam tahun Romawi " }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "jour de l'année romaine à partir des composants" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "構成要素からローマ暦の月日を作成" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "construct Day of Roman Year" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "combines the month and the day number to make a Day of Roman year type" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "combine le mois et le numéro du jour pour créer un type « jour de l'année romaine »" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月と日番号を組み合わせて、ローマ暦の月日型の値を作成します" } ] } } 5ac3eq7xjiq34d5oeacvcvjww3wpb2q Z20779 0 45437 308987 304591 2026-09-05T15:07:55Z YoshiRulz 10156 Use m/d/y for en-CA too 308987 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z20779" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z20782", "Z14293K2": [ "Z60", "Z1437", "Z1689" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z20773", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z20770", "Z14293K2": [ "Z60", "Z1015" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z20776", "Z14293K2": [ "Z60", "Z1430" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z20785", "Z14293K2": "Z33056" }, { "Z1K1": "Z14293", "Z14293K1": "Z20791", "Z14293K2": [ "Z60", "Z1513", "Z1174" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z20794", "Z14293K2": "Z35147" }, { "Z1K1": "Z14293", "Z14293K1": "Z23197", "Z14293K2": [ "Z60", "Z1787" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26130", "Z14293K2": "Z33463" }, { "Z1K1": "Z14293", "Z14293K1": "Z26143", "Z14293K2": [ "Z60", "Z1202", "Z1902", "Z1900", "Z1804", "Z1372" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26147", "Z14293K2": [ "Z60", "Z1901", "Z1837", "Z1899", "Z1375" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26254", "Z14293K2": [ "Z60", "Z1181", "Z1158" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26648", "Z14293K2": [ "Z60", "Z1011" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z27655", "Z14293K2": [ "Z60", "Z1099" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z31241", "Z14293K2": "Z34075" }, { "Z1K1": "Z14293", "Z14293K1": "Z31648", "Z14293K2": [ "Z60", "Z1078" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z36004", "Z14293K2": [ "Z60", "Z1592" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z22214", "Z14293K2": [ "Z60", "Z1001" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z39789", "Z14293K2": [ "Z60", "Z1576" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z39859", "Z14293K2": "Z34003" }, { "Z1K1": "Z14293", "Z14293K1": "Z39875", "Z14293K2": [ "Z60", "Z1541" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z40242", "Z14293K2": [ "Z60", "Z1820", "Z2038" ] } ], "Z14294K2": "Z20788" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for date" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "configuration des fonctions de date" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "configurazione di funzioni per le date" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "konfigurasi untuk tanggal" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "konfigurering för datum" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "日付表示の言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "formattatori di date di calendario gregoriano" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "liste de fonction appropriées pour gérer les dates en fonction de la langue" } ] } } 3g491xcgkkm6ikrth37i7gtoiquahjj Z22940 0 51562 308985 303083 2026-09-05T15:04:41Z YoshiRulz 10156 Use day-month for every English variant except en-CA and en-US 308985 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z22940" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z22933", "Z14293K2": [ "Z60", "Z1437", "Z1689" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z24974", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z24979", "Z14293K2": [ "Z60", "Z1787" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z24984", "Z14293K2": [ "Z60", "Z1015" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z24987", "Z14293K2": [ "Z60", "Z1003", "Z1133", "Z1423", "Z1127", "Z1547" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26116", "Z14293K2": [ "Z60", "Z1006", "Z1645", "Z1672", "Z1411", "Z1107", "Z1589", "Z1406", "Z1504", "Z1591" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26134", "Z14293K2": [ "Z60", "Z1202", "Z1902", "Z1900", "Z1804", "Z1372" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26139", "Z14293K2": [ "Z60", "Z1901", "Z1837", "Z1899", "Z1375" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26243", "Z14293K2": [ "Z60", "Z1181", "Z1158", "Z1653" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z26652", "Z14293K2": [ "Z60", "Z1011" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z28539", "Z14293K2": [ "Z60", "Z1430", "Z1231" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z37694", "Z14293K2": [ "Z60", "Z1592" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z38256", "Z14293K2": "Z34075" }, { "Z1K1": "Z14293", "Z14293K1": "Z39782", "Z14293K2": [ "Z60", "Z1576" ] }, { "Z1K1": "Z14293", "Z14293K1": "Z39861", "Z14293K2": "Z34003" } ], "Z14294K2": "Z22937" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for displaying Day of Roman Year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "funzioni di stampa per Giorno di anno romano" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Konfiguration Anzeige Tag Römischer Kalender" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ローマ歴の月日の表示関数言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 80pzx67talwun7uif4gcuolpqgrapmp Z22941 0 51563 308986 290652 2026-09-05T15:04:51Z YoshiRulz 10156 Added Z28492 to the approved list of test cases 308986 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z22941" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20342", "Z17K2": "Z22941K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "calendar day" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "data" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z22941K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language to display in" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z22942", "Z22944", "Z24977", "Z24978", "Z26120", "Z26138", "Z26253", "Z28490", "Z28493", "Z28491", "Z28492" ], "Z8K4": [ "Z14", "Z22943" ], "Z8K5": "Z22941" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Day of Roman Year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "formatta Giorno di un anno romano" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "visa Dag i gregorianst år som textsträng" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "scrivi Giorno di un anno romano", "stampa Giorno di un anno romano" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "print day of Roman Year", "show day and month", "day and month display" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses the language to determine which formatting function to use " }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Usa la lingua per detterminare la funzione di formattazione appropriata" } ] } } 7govf0z9iy3zz73njxrqddi4izqg06s Z22942 0 51564 308984 170664 2026-09-05T15:03:53Z YoshiRulz 10156 Change to en-CA (there's already a test for en) 308984 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z22942" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z22941", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z22941", "Z22941K1": { "Z1K1": "Z20342", "Z20342K1": "Z16102", "Z20342K2": { "Z1K1": "Z13518", "Z13518K1": "29" } }, "Z22941K2": "Z1437" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "February 29" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Canadian English: \"February 29\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } eg3o770ecw31ac32u1lkl2zyem8sx5b Z24962 0 58145 309265 211012 2026-09-06T06:56:57Z 鈴音雨 101019 japanese 309265 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z24962" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20342", "Z17K2": "Z24962K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "day of year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "giorno dell'anno" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年内の日" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z24962K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "anno" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" } ] } } ], "Z8K2": "Z20420", "Z8K3": [ "Z20", "Z24963", "Z24964" ], "Z8K4": [ "Z14", "Z24965" ], "Z8K5": "Z24962" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "date from day of year and year" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "data da giorno dell'anno e anno" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年内の日と年から日付を作成" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } f7axalkmgeqmi26w117i0uex22wh7pd Z25326 0 58864 309409 304081 2026-09-06T09:47:47Z 鈴音雨 101019 japanese 309409 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z25326" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z25326K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "quantità Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "kuantitas" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z25326K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language to display unit in" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bahasa yang menampilkan" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "単位を表示する言語" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z25327", "Z25328", "Z25329", "Z25330", "Z25331", "Z25332", "Z25333", "Z25654", "Z25655", "Z26192", "Z26800", "Z28355", "Z28959", "Z36686", "Z36714", "Z36859", "Z40126" ], "Z8K4": [ "Z14", "Z36713" ], "Z8K5": "Z25326" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display quantity with digits and unit" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "formatta quantità Wikidata con cifre arabe e unità" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "tampilkan kuantitas dengan digit dan unit" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数値と単位付きの数量を表示" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "stampa quantità Wikidata", "mostra quantità Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "quantity with digits and unit", "show quantity", "render quantity", "display quantity", "quantity renderer", "display Wikidata quantity", "render Wikidata quantity", "display quantity with units", "quantity display", "show quantity with digits and unit", "display value with digits and units", "quantity with short unit or fallback", "quantity to string" ] }, { "Z1K1": "Z31", "Z31K1": "Z1078", "Z31K2": [ "Z6", "kuantitas dengan digit dan unit", "tampilkan kuantitas", "rekacitra kuantitas", "perekacitra kuantitas", "baca kuantitas Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "数量を表示", "数量を文字列に変換" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Simplest accurate representation where possible. Use English language conventions (for now) and fallback if the units are missing in the selected language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Rappresentazione accurata più semplice dove possibile. Usa l'Inglese come lingua di fallback (per ora) se le unità mancano nella lingua selezionata" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Representasi paling sederhana dan mudah. Menggunakan konvensi bahasa Inggris dan cadangan (untuk sekarang) jika unit hilang pada bahasa yang dipilih." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "可能な場合は最も単純で正確な表現を使用します。現時点では英語の表記規則を使用し、選択した言語で単位が利用できない場合はフォールバックします。" } ] } } e34isw4hafd9dfvwboj4kmvunj1sek4 309420 309409 2026-09-06T09:53:58Z 鈴音雨 101019 + 309420 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z25326" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z25326K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "quantità Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "kuantitas" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z25326K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language to display unit in" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bahasa yang menampilkan" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "単位を表示する言語" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z25327", "Z25328", "Z25329", "Z25330", "Z25331", "Z25332", "Z25333", "Z25654", "Z25655", "Z26192", "Z26800", "Z28355", "Z28959", "Z36686", "Z36714", "Z36859", "Z40126" ], "Z8K4": [ "Z14", "Z36713" ], "Z8K5": "Z25326" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display quantity with digits and unit" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "formatta quantità Wikidata con cifre arabe e unità" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "tampilkan kuantitas dengan digit dan unit" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数値と単位付きの数量を表示" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "stampa quantità Wikidata", "mostra quantità Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "quantity with digits and unit", "show quantity", "render quantity", "display quantity", "quantity renderer", "display Wikidata quantity", "render Wikidata quantity", "display quantity with units", "quantity display", "show quantity with digits and unit", "display value with digits and units", "quantity with short unit or fallback", "quantity to string" ] }, { "Z1K1": "Z31", "Z31K1": "Z1078", "Z31K2": [ "Z6", "kuantitas dengan digit dan unit", "tampilkan kuantitas", "rekacitra kuantitas", "perekacitra kuantitas", "baca kuantitas Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "数量を表示", "数量を文字列に変換", "数値と単位付きで数量を表示" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Simplest accurate representation where possible. Use English language conventions (for now) and fallback if the units are missing in the selected language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Rappresentazione accurata più semplice dove possibile. Usa l'Inglese come lingua di fallback (per ora) se le unità mancano nella lingua selezionata" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Representasi paling sederhana dan mudah. Menggunakan konvensi bahasa Inggris dan cadangan (untuk sekarang) jika unit hilang pada bahasa yang dipilih." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "可能な場合は最も単純で正確な表現を使用します。現時点では英語の表記規則を使用し、選択した言語で単位が利用できない場合はフォールバックします。" } ] } } ctyp8tqe449dah5xd2z2js5kquspya4 Z25520 0 59187 309450 271113 2026-09-06T10:09:53Z GZWDer 186 309450 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z25520" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z13518", "Z17K2": "Z25520K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "input" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "numero" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z8K3": [ "Z20", "Z25521", "Z25522", "Z25523" ], "Z8K4": [ "Z14", "Z25591", "Z25524", "Z25525", "Z31866", "Z34566" ], "Z8K5": "Z25520" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of decimal digits in a number" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lista di cifre decimali in un numero" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "liste de chiffres décimaux dans un nombre" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "decimal digits in a number", "digits in a number", "decimal digits of a number", "digits of a number", "list of decimal digits of a number", "integer digits" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "numero in lista di cifre", "cifre in numero", "cifre in naturale" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns a list of the decimal digits of a number in starting from the most-significant digit" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Dato un numero naturale, restituisce la lista contenente le sue cifre (in base 10) a partire da quella più significativa" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "fournit la liste des chiffres décimaux présents dans un nombre en commençant par le chiffre le plus significatif" } ] } } 2z8beoy07s0tthyx24oqxwm9hlgjs73 Z25733 0 59722 309371 207116 2026-09-06T09:18:27Z 鈴音雨 101019 japanese 309371 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z25733" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z25733K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "first precision" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "prima precisione" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "1番目の時刻精度" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z25733K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "second precision" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "seconda precisione" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "2番目の時刻精度" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z25734", "Z25741" ], "Z8K4": [ "Z14", "Z25736", "Z25742" ], "Z8K5": "Z25733" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "equal Wikidata time precision" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "stessa precisione di tempo Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータの時刻精度の一致" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "uguali precisioni di tempo Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "same Wikidata time precision" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "true if the Wikidata time precisions are equal" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータの時刻精度が等しい時真を返します。" } ] } } 79osuv9e9g1gwgjo0cmhh5604mgqs1c Talk:Z26039 1 61728 309069 306140 2026-09-05T17:40:30Z YoshiRulz 10156 Add function tree and preview table 309069 wikitext text/x-wiki [[Category:NLG_functions_returning_untagged_Strings]] [[Category:Semantic_fragments_needing_explicit_arguments]] {{Talk:Z32962}} {{#function:Z40885|{{PAGENAME}}|Z26043|Q90{{!}}Q515|{{int:lang}}}} == Question about the name of this function == What should mean 'article-less' in the context of this function? I think it's a very confusing name, considering that in many languages (for example in Italian) the output of this function should contain the article, without considering languages that don't have any articles. If I understand correctly, even in English "The violin is an instrument." sould be a valid output of this function. Am I wrong? [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 18:27, 24 July 2025 (UTC) :Yes, the architecture is unclear. Somehow, it’s the language and the item that determine the appropriate form. For example, “water” requires no article in English but would need a definite article in Italian or French. I think musical instruments are a bit unusual in using the definite article rather than the indefinite, and (in English, at least) we tend to do the same for species but use indefinite singulars or plurals for collections of species. I don’t think this can be directly inferred from Wikidata, currently. But, given that it varies by language (and perhaps also just by editorial style), it’s not clear how it would be represented in abstract content. [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 19:27, 27 July 2025 (UTC) ::For now I've interpreted this function as having the entity in a definite form, while {{Z|Z26095}} having the entity in an indefinite form. I've tried to implement this function for Italian, trying a couple of heuristics to guess whether the definite article is definite or not (but the [[Z26513|function]] doesn't work and I don't know why). ::If this is the correct meaning of this function, we should rename it to something like "Definite entity instantiating fragment". In all cases, I think the current name is very misleading. [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 09:23, 28 July 2025 (UTC) == Allowed entities == I think we should limit the tipologies of allowed entities, for example not allowing people (because usually languages treat people very differently from other things). [[User:Dv103|Dv103]] ([[User talk:Dv103|talk]]) 21:45, 4 September 2025 (UTC) :I think you’re right but I’m not sure what categories we might use. Perhaps we want to distinguish between named subjects with or without natural and/or grammatical gender and/or number (not to mention his/her/its/their current state). In other words, whatever tends to drive any inflection of the subject and the copula across a range of languages. This is possibly where [[Wikifunctions:Project chat#Decision tables for natural language generation]] is coming from (or heading towards)? @[[User:Hogü-456|Hogü-456]] [[User:GrounderUK|GrounderUK]] ([[User talk:GrounderUK|talk]]) 23:12, 4 September 2025 (UTC) ::I have not thinked about this before and so it is good you mentioned it. I think it is better to extend the function and implement the rules to give the correct output when it is about living beings. At least in German sometimes also animals are treated like humans when talking about them. In the decision table I showed how to derive the undefined article ein or eine. It depends on the gender of the second variable part. There is then an additional rule to apply before to derive the relevant form of the second variable from the gender of the first input. I have not added this rule to the decision table. [[User:Hogü-456|Hogü-456]] ([[User talk:Hogü-456|talk]]) 17:57, 5 September 2025 (UTC) :::Another way of dealing with it would be to make a subfunction specific to named subjects / persons. Usually editors should use the most specific appropriate function. But we could also test for the type here and call the subfunction where necessary. Similar issues will surely occur for functions like [[Z36218]] which try to deal with an omnibus of properties, but many properties will need special handling (in that case different languages may split to subfunctions differently). --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 04:17, 27 July 2026 (UTC) == Applicable to past tense? == Similar to the section above, my question is whether this is supposed to handle former entities? We do not currently have any test cases like this. For example Z26039(Aristotle, philosopher, En) should give "Aristotle was a philosopher." Or should that be handled by a different function? I favour carving it off, with a fallback back to this to simplify for any languages that don't distinguish. I'm happy to go with another plan though, as long as we are clear. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 04:21, 27 July 2026 (UTC) rd8yukxfgxx8g2rvgxya0xhyio00rno Z26936 0 62679 309374 207744 2026-09-06T09:20:51Z 鈴音雨 101019 japanese 309374 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z26936" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z26936K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "valore dell'enumerazione Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "value of Wikidata enumeration" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータの列挙型値" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z26936K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lista di valori" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values to return" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "返す値リスト" } ] } } ], "Z8K2": "Z1", "Z8K3": [ "Z20", "Z26937", "Z26938" ], "Z8K4": [ "Z14", "Z26939" ], "Z8K5": "Z26936" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "scegli in base al valore dell'enum Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "switch on Wikidata enumeration value" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータの列挙型値で分岐" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "scegli in base al valore dell'enumerazione Wikidata", "switch enumerazione Wikidata" ] }, { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "switch Wikidata enumeration", "switch lightweight Wikidata enumeration" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } effifo6w36u8n714trq25gqz9hq7pan Z27173 0 63074 308917 276345 2026-09-05T13:19:41Z YoshiRulz 10156 Removed Z27214 from the approved list of test cases 308917 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27173" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z27173K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "class being described" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "클래스" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "classificato" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "classe" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "kelas" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z27173K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "adjective" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "형용사" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "aggettivo" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "adjectif" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "kata sifat" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Adjektiv" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z27173K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "class describing" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "클래스" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "classe" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "classe" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "kelas" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z27173K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "언어" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "langue" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "bahasa" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Sprache" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z27213", "Z32391" ], "Z8K4": [ "Z14", "Z27174" ], "Z8K5": "Z27173" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "describe the class of a class" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "클래스의 클래스를 설명하기" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "descrivi la classe di una classe" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "décrire la classe d'une classe" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Deskripsikan kelas dari kelas" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "E.g. 'Ice is frozen water'" }, { "Z1K1": "Z11", "Z11K1": "Z1643", "Z11K2": "형용사로 클래스의 클래스를 설명합니다. 예를 들어, '얼음은 얼어붙은 물이다'." }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Es.: \"Il ghiaccio è acqua ghiacciata\"" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "par exemple : la glace est de l'eau gelée" }, { "Z1K1": "Z11", "Z11K1": "Z1078", "Z11K2": "Misalnya \"Es adalah air beku\"" } ] } } dviczuentmw6gj1z3gn8zxu376ar7x3 Z861 0 63113 309369 271582 2026-09-06T09:17:43Z 鈴音雨 101019 japanese 309369 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z861" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z861K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "text" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "testo" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Text" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文字列" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z861K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Sprache" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z961", "Z27215" ], "Z8K5": "Z861" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Monolingual text from String and Natural language" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "racchiudi in testo monolingua" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "einsprachigen Text umfassen" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文字列と言語から単一言語テキストに変換" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Wrap string with language code", "Wrap mono-lingual text" ] }, { "Z1K1": "Z31", "Z31K1": "Z1787", "Z31K2": [ "Z6", "stringa in testo monolingue" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "文字列を単一言語テキストに変換", "文字列から単一言語テキストに変換", "文字列と言語→単一言語テキスト" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "encapsulates a given string of text as a language-typed mono-lingual object" }, { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Incapsula la stringa data in un testo monolingue con la lingua data" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "fasst eine angegebene Zeichenkette als einsprachiges Textobjekt ein" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "指定されたテキスト文字列を言語型の単一言語オブジェクトとしてカプセル化します。" } ] } } 66qrn2y88hjmcst6nlzgq82yznrjjb8 Z27327 0 63517 308869 308499 2026-09-05T12:10:42Z Ornithorynque liminaire 1539 fr 308869 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27327" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z27327K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "elemento Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "項目" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "položka" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z27327K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "predicato" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "predicate" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "述語" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "vlastnost" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z27327K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "jazyk" } ] } } ], "Z8K2": "Z6005", "Z8K3": [ "Z20", "Z27328", "Z27329", "Z27331", "Z27891", "Z32515", "Z32598", "Z36335", "Z36585", "Z36586", "Z36604", "Z39919", "Z40904" ], "Z8K4": [ "Z14", "Z36592", "Z37525" ], "Z8K5": "Z27327" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "miglior lessema per elemento Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "best lexeme for Wikidata item" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータ項目に対する最良の語彙素" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "nejlepší lexém pro položku Wikidat" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "meilleur lexème pour cet item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1062", "Z31K2": [ "Z6", "najdi lexém" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Restituisce il lessema che rappresenta l'elemento Wikidata (collegato tramite il predicato selezionato) che è più adatto per Wikipedia astratta." }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return the lexeme connected to the given item through the given predicate that is more suitable for Abstract Wikipedia." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "与えられた述語を介して、与えられた項目に接続されている語彙素のうち、抽象ウィキペディアにより適したものを返す。" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "Vrátí lexém v daném jazyce odkazující na danou položku prostřednictvím dané vlastnosti, který je nejvhodnější pro Abstraktní Wikipedii." } ] } } ra8thgvwadab9zidbrqf5e4ycgpe4dy 308870 308869 2026-09-05T12:10:51Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 308870 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27327" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z27327K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "elemento Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "項目" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "položka" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z27327K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "predicato" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "predicate" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "述語" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "vlastnost" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z27327K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lingua" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "jazyk" } ] } } ], "Z8K2": "Z6005", "Z8K3": [ "Z20", "Z27328", "Z27329", "Z27331", "Z27891", "Z32515", "Z32598", "Z36335", "Z36585", "Z36586", "Z36604", "Z39919", "Z40904" ], "Z8K4": [ "Z14", "Z37525", "Z36592" ], "Z8K5": "Z27327" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "miglior lessema per elemento Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "best lexeme for Wikidata item" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータ項目に対する最良の語彙素" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "nejlepší lexém pro položku Wikidat" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "meilleur lexème pour cet item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1062", "Z31K2": [ "Z6", "najdi lexém" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Restituisce il lessema che rappresenta l'elemento Wikidata (collegato tramite il predicato selezionato) che è più adatto per Wikipedia astratta." }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return the lexeme connected to the given item through the given predicate that is more suitable for Abstract Wikipedia." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "与えられた述語を介して、与えられた項目に接続されている語彙素のうち、抽象ウィキペディアにより適したものを返す。" }, { "Z1K1": "Z11", "Z11K1": "Z1062", "Z11K2": "Vrátí lexém v daném jazyce odkazující na danou položku prostřednictvím dané vlastnosti, který je nejvhodnější pro Abstraktní Wikipedii." } ] } } e82j8otiusa4i2kertzoxmuagct7kd0 Z27410 0 63811 309445 307876 2026-09-06T10:06:48Z 鈴音雨 101019 japanese 309445 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27410" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z27410K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lessema" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z27410K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "caratteristiche grammaticali" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "grammatical features" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文法的特徴" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z27411", "Z27412", "Z27415", "Z27426", "Z27548", "Z32505", "Z33018", "Z40909" ], "Z8K4": [ "Z14", "Z27414", "Z34946" ], "Z8K5": "Z27410" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "miglior stringa di rappr. di lessema compatibile" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "better matching representation string from lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素から文法的特徴に最も適合する語形文字列を取得" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "string from lexeme", "lexeme to string", "lexeme and grammar to string", "best representation" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Restituisce la stringa di rappresentazione di lessema che è più compatibile con le caratteristiche grammaticali date." }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The representation string of the forms that better fits the given grammatical features. Tries for best form with other criteria, the grammatical matching is priority. w/fallback Z32504, multiL Z34943" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "指定された文法的特徴によりよく一致する語形の表現文字列を返します。" } ] } } fpgbhm91opa59vj52lrocui3hkdrttl 309447 309445 2026-09-06T10:07:14Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309447 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27410" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z27410K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lessema" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z27410K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "caratteristiche grammaticali" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "grammatical features" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文法的特徴" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z27411", "Z27412", "Z27415", "Z27426", "Z27548", "Z32505", "Z33018", "Z40909" ], "Z8K4": [ "Z14", "Z34946", "Z27414" ], "Z8K5": "Z27410" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "miglior stringa di rappr. di lessema compatibile" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "better matching representation string from lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素から文法的特徴に最も適合する語形文字列を取得" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "string from lexeme", "lexeme to string", "lexeme and grammar to string", "best representation" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Restituisce la stringa di rappresentazione di lessema che è più compatibile con le caratteristiche grammaticali date." }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The representation string of the forms that better fits the given grammatical features. Tries for best form with other criteria, the grammatical matching is priority. w/fallback Z32504, multiL Z34943" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "指定された文法的特徴によりよく一致する語形の表現文字列を返します。" } ] } } kb2z2n0tkpxo96lhb6p2g5p6iojcaqj 309451 309447 2026-09-06T10:11:36Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309451 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z27410" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z27410K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "lessema" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z27410K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "caratteristiche grammaticali" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "grammatical features" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文法的特徴" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z27411", "Z27412", "Z27415", "Z27426", "Z27548", "Z32505", "Z33018", "Z40909" ], "Z8K4": [ "Z14", "Z27414", "Z34946" ], "Z8K5": "Z27410" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "miglior stringa di rappr. di lessema compatibile" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "better matching representation string from lexeme" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "語彙素から文法的特徴に最も適合する語形文字列を取得" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "string from lexeme", "lexeme to string", "lexeme and grammar to string", "best representation" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1787", "Z11K2": "Restituisce la stringa di rappresentazione di lessema che è più compatibile con le caratteristiche grammaticali date." }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The representation string of the forms that better fits the given grammatical features. Tries for best form with other criteria, the grammatical matching is priority. w/fallback Z32504, multiL Z34943" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "指定された文法的特徴によりよく一致する語形の表現文字列を返します。" } ] } } fpgbhm91opa59vj52lrocui3hkdrttl Talk:Z22941 1 66127 308983 307584 2026-09-05T14:56:00Z YoshiRulz 10156 Add function tree 308983 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_dates_and_times]] <onlyinclude>{{show function tree|hardcoded=Z22941;z22940;Z22937}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z22940|--01-15|{{int:lang}}}} == Swapping international English (en) to international English date format in tests/results? == In particular looking for input from @[[User:99of9|99of9]] who set this up this way, I think the monthy-day order i wrong for en and should be reserved for en-us/en-ca; I've added tests proposing the change, but don't want to rush a change. :-) [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 13:12, 24 September 2025 (UTC) :{{Z|22933}} is correct for [[Z1689|en-US]] and [[Z1437|en-CA]] (and en-PH if that's added; see enwp [[w:en:Date_and_time_notation_in_the_United_States#Date|1]], [[w:en:Date_and_time_notation_in_Canada#Dates_in_English|2]], [[w:en:Date_and_time_notation_in_the_Philippines#Date|3]]), while {{Z|24974}} is correct for the rest of the English-speaking world (see [[w:en:List_of_date_formats_by_country|enwp]]), which I agree makes it the right choice for [[Z1002|en]] too.<br>The only reason I haven't changed it already is because I'm sure a bunch of tests across many functions rely on the current behaviour. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 18:58, 27 August 2026 (UTC) bx6783jmum1fu424enzdzq8m5bjqq9r 308988 308983 2026-09-05T15:08:35Z YoshiRulz 10156 /* Swapping international English (en) to international English date format in tests/results? */ 308988 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_dates_and_times]] <onlyinclude>{{show function tree|hardcoded=Z22941;z22940;Z22937}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z22940|--01-15|{{int:lang}}}} == Swapping international English (en) to international English date format in tests/results? == In particular looking for input from @[[User:99of9|99of9]] who set this up this way, I think the monthy-day order i wrong for en and should be reserved for en-us/en-ca; I've added tests proposing the change, but don't want to rush a change. :-) [[User:Jdforrester (WMF)|Jdforrester (WMF)]] ([[User talk:Jdforrester (WMF)|talk]]) 13:12, 24 September 2025 (UTC) :{{Z|22933}} is correct for [[Z1689|en-US]] and [[Z1437|en-CA]] (and en-PH if that's added; see enwp [[w:en:Date_and_time_notation_in_the_United_States#Date|1]], [[w:en:Date_and_time_notation_in_Canada#Dates_in_English|2]], [[w:en:Date_and_time_notation_in_the_Philippines#Date|3]]), while {{Z|24974}} is correct for the rest of the English-speaking world (see [[w:en:List_of_date_formats_by_country|enwp]]), which I agree makes it the right choice for [[Z1002|en]] too.<br><s>The only reason I haven't changed it already is because I'm sure a bunch of tests across many functions rely on the current behaviour.</s> Nevermind, this Function isn't itself used in other Functions. [[Special:Diff/308985|Made the change]], and also [[Special:Diff/308987|this for full dates]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:08, 5 September 2026 (UTC) dv0kpiw6r5syw46aw0cauwhh0xgdtwc Z28855 0 67027 309380 223925 2026-09-06T09:25:37Z 鈴音雨 101019 japanese 309380 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z28855" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z28855K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z28856", "Z28857", "Z28858", "Z28859" ], "Z8K4": [ "Z14", "Z28861", "Z28862", "Z28860" ], "Z8K5": "Z28855" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is year BC" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年が紀元前?" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "is BC", "is year BCE", "is BCE", "BC?", "BCE?" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "紀元前?", "紀元前の年?" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns true if the given year is in the BC / BCE era, otherwise false." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "指定された年が紀元前(BC/BCE)であれば真を返し、そうでなければ偽を返します。" } ] } } 51issod8f0yqxm27mpp2cfj5ng8eclu Z29036 0 67461 309326 276130 2026-09-06T08:05:11Z 鈴音雨 101019 japanese 309326 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z29036" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6061", "Z17K2": "Z29036K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "datetime" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "日付" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z29036K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "precision" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "時刻精度" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z29036K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z29038", "Z29037", "Z29039", "Z29040", "Z29041", "Z29042", "Z29043" ], "Z8K4": [ "Z14", "Z35332" ], "Z8K5": "Z29036" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Wikidata datetime limited by precision" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってウィキデータの日付を表示" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } sbi7rk2re1k6m7udw1yle7xtdjjsglx Z31246 0 73595 309118 244760 2026-09-05T18:36:46Z Ameisenigel 44 Added Z31250 und Z31247 to the approved list of test cases 309118 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z31246" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6001", "Z17K2": "Z31246K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item" } ] } } ], "Z8K2": "Z60", "Z8K3": [ "Z20", "Z31250", "Z31247" ], "Z8K4": [ "Z14" ], "Z8K5": "Z31246" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "age from Wikidata item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the age based on the Gregorian date of birth and date of death listed in statements on a Wikidata item" } ] } } bfqto85gct5qmhvb296ln8vs0xss7bj Z32169 0 78328 308905 308615 2026-09-05T13:00:08Z Ornithorynque liminaire 1539 Added Z41181 to the approved list of test cases 308905 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z32169" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z32169K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "QID" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Item" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z32169K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of French" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "variante de français" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z32170", "Z32171", "Z32173", "Z32172", "Z37893", "Z37976", "Z37993", "Z37994", "Z39303", "Z39626", "Z41181" ], "Z8K4": [ "Z14", "Z37911", "Z32174", "Z37894" ], "Z8K5": "Z32169" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "label of item with definite article, French" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "libellé de l'item avec article défini, français" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Le QID", "La QID", "Les QID" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The definite article needs to know grammatical gender, grammatical number, and whether it's a proper noun." } ] } } in3vyknv5grncgfxz537s2w4yyinp3q Z33019 0 79566 309200 277574 2026-09-05T20:35:00Z Jsamwrites 938 Added Z33023 to the approved list of implementations 309200 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33019" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z33019K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Items" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z33019K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Language " } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z33023" ], "Z8K5": "Z33019" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "join labels from items with Oxford punctuation" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "join labels " ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rmm2b8l2duwegrce90ptyeb68f36vbv 309204 309200 2026-09-05T20:47:41Z Jsamwrites 938 Added Z33020, Z33021 and Z33022 to the approved list of test cases 309204 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33019" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z33019K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Items" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z33019K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Language " } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z33020", "Z33021", "Z33022" ], "Z8K4": [ "Z14", "Z33023" ], "Z8K5": "Z33019" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "join labels from items with Oxford punctuation" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "join labels " ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } perh8un55z9yq8wk3l94kso68s4eig0 Z33020 0 79567 309201 262585 2026-09-05T20:36:49Z Jsamwrites 938 309201 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33020" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z33019", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z33019", "Z33019K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q82955" } ], "Z33019K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "politician" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "politician " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3xodptbq0r50z2id8la9ssklnqsk5fu Z33021 0 79568 309205 262586 2026-09-05T20:48:32Z Jsamwrites 938 309205 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33021" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z33019", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z33019", "Z33019K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1524582" }, { "Z1K1": "Z6091", "Z6091K1": "Q82955" } ], "Z33019K2": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rancher and politician " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "husbandry worker and politician " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gznixbryr58k4in7cxa19cyp3j1en3b 309206 309205 2026-09-05T20:49:35Z Jsamwrites 938 309206 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33021" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z33019", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z33019", "Z33019K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1524582" }, { "Z1K1": "Z6091", "Z6091K1": "Q82955" } ], "Z33019K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "rancher and politician" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "husbandry worker and politician " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } km5ry9q6n3orpn58p2qcvp59skwczaq Z33022 0 79569 309207 262587 2026-09-05T20:50:47Z Jsamwrites 938 309207 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33022" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z33019", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z33019", "Z33019K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1524582" }, { "Z1K1": "Z6091", "Z6091K1": "Q40348" }, { "Z1K1": "Z6091", "Z6091K1": "Q82955" } ], "Z33019K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "rancher, lawyer, and politician " } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "husbandry worker, lawyer and politician " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } cdwtl380t5fju1wdi6dnxjzz1gz8hx8 309208 309207 2026-09-05T20:51:13Z Jsamwrites 938 309208 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33022" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z33019", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z33019", "Z33019K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1524582" }, { "Z1K1": "Z6091", "Z6091K1": "Q40348" }, { "Z1K1": "Z6091", "Z6091K1": "Q82955" } ], "Z33019K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "rancher, lawyer, and politician" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "husbandry worker, lawyer and politician " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } cz1wtjxpfl550k69xcfnynp0i1vh9f8 Z33023 0 79570 309202 262590 2026-09-05T20:41:11Z Jsamwrites 938 309202 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33023" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z33019", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z18779", "Z18779K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z33019K1" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z33019K2" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "join labels from items with Oxford punct. comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5or8qtjd7af6lr4bd40z0i5sl26u88c 309203 309202 2026-09-05T20:47:08Z Jsamwrites 938 309203 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z33023" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z33019", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z33019K1" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z33019K2" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z33019K2" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "join labels from items with Oxford punct. comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8sy4con2r441rux7bfa7z7z83eimyis Z35331 0 83783 309392 276124 2026-09-06T09:33:05Z 鈴音雨 101019 japanese 309392 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35331" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z35331K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z35331K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "precision" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z35331K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z35333" ], "Z8K4": [ "Z14", "Z35337" ], "Z8K5": "Z35331" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Gregorian year limited by precision" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってグレゴリオ暦年を表示" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 564xqwp3b2wepodhsa00sdxqp10x46k Z35332 0 83784 308918 304906 2026-09-05T13:20:06Z 鈴音雨 101019 Use [[Z41163]] 308918 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35332" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z29036", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13695", "Z13695K1": { "Z1K1": "Z7", "Z7K1": "Z26882", "Z26882K1": { "Z1K1": "Z18", "Z18K1": "Z29036K2" } }, "Z13695K2": { "Z1K1": "Z13518", "Z13518K1": "10" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z35331", "Z35331K1": { "Z1K1": "Z7", "Z7K1": "Z24948", "Z24948K1": { "Z1K1": "Z7", "Z7K1": "Z28133", "Z28133K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } } }, "Z35331K2": { "Z1K1": "Z18", "Z18K1": "Z29036K2" }, "Z35331K3": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z13397", "Z13397K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z41163", "Z41163K1": { "Z1K1": "Z7", "Z7K1": "Z24948", "Z24948K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z41163K2": { "Z1K1": "Z7", "Z7K1": "Z26504", "Z26504K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z41163K3": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, ", ", { "Z1K1": "Z7", "Z7K1": "Z29883", "Z29883K1": { "Z1K1": "Z7", "Z7K1": "Z25711", "Z25711K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z29883K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ] }, { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, ", ", { "Z1K1": "Z7", "Z7K1": "Z29883", "Z29883K1": { "Z1K1": "Z7", "Z7K1": "Z25711", "Z25711K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z29883K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ] }, { "Z1K1": "Z7", "Z7K1": "Z25721", "Z25721K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" }, "Z25721K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ], "Z13397K2": { "Z1K1": "Z7", "Z7K1": "Z13569", "Z13569K1": { "Z1K1": "Z7", "Z7K1": "Z26882", "Z26882K1": { "Z1K1": "Z18", "Z18K1": "Z29036K2" } }, "Z13569K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Wikidata datetime to precision, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ba2i5qf2wxcn3dfrj12vfymz33e7j8r 308919 308918 2026-09-05T13:21:50Z 鈴音雨 101019 fix 308919 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35332" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z29036", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13695", "Z13695K1": { "Z1K1": "Z7", "Z7K1": "Z26882", "Z26882K1": { "Z1K1": "Z18", "Z18K1": "Z29036K2" } }, "Z13695K2": { "Z1K1": "Z13518", "Z13518K1": "10" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z35331", "Z35331K1": { "Z1K1": "Z7", "Z7K1": "Z24948", "Z24948K1": { "Z1K1": "Z7", "Z7K1": "Z28133", "Z28133K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } } }, "Z35331K2": { "Z1K1": "Z18", "Z18K1": "Z29036K2" }, "Z35331K3": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z13397", "Z13397K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z41163", "Z41163K1": { "Z1K1": "Z7", "Z7K1": "Z24948", "Z24948K1": { "Z1K1": "Z7", "Z7K1": "Z28133", "Z28133K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } } }, "Z41163K2": { "Z1K1": "Z7", "Z7K1": "Z26504", "Z26504K1": { "Z1K1": "Z7", "Z7K1": "Z28133", "Z28133K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } } }, "Z41163K3": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, ", ", { "Z1K1": "Z7", "Z7K1": "Z29883", "Z29883K1": { "Z1K1": "Z7", "Z7K1": "Z25711", "Z25711K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z29883K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ] }, { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z25603", "Z25603K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } }, ", ", { "Z1K1": "Z7", "Z7K1": "Z29883", "Z29883K1": { "Z1K1": "Z7", "Z7K1": "Z25711", "Z25711K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" } }, "Z29883K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ] }, { "Z1K1": "Z7", "Z7K1": "Z25721", "Z25721K1": { "Z1K1": "Z18", "Z18K1": "Z29036K1" }, "Z25721K2": { "Z1K1": "Z18", "Z18K1": "Z29036K3" } } ], "Z13397K2": { "Z1K1": "Z7", "Z7K1": "Z13569", "Z13569K1": { "Z1K1": "Z7", "Z7K1": "Z26882", "Z26882K1": { "Z1K1": "Z18", "Z18K1": "Z29036K2" } }, "Z13569K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Wikidata datetime to precision, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } p4qfxrdn53xblf7kt07avhr0f52etcl Z35336 0 83788 309391 304868 2026-09-06T09:32:36Z 鈴音雨 101019 japanese 309391 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35336" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z35334", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z41292", "Z14293K2": "Z34003" } ], "Z14294K2": "Z40290" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for print Gregorian year to precision" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってグレゴリオ暦年を表示関数言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pi3y49d6gew3b4cl7btnko46cluy1jo Z35338 0 83790 309378 293249 2026-09-06T09:24:55Z 鈴音雨 101019 japanese 309378 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35338" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z35338K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "number" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z13518", "Z17K2": "Z35338K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "chunk size" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "刻み幅" } ] } } ], "Z8K2": "Z16683", "Z8K3": [ "Z20", "Z35339", "Z35340", "Z35341", "Z38125" ], "Z8K4": [ "Z14", "Z35950", "Z35342" ], "Z8K5": "Z35338" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "round Integer to nearest n" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "整数を最も近いnの倍数に丸める" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "closest multiple of Natural to Integer" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jeqj2xaxmbyoz8qq898m5ccu9ixz478 User:YoshiRulz/common.css 2 84159 308921 291747 2026-09-05T13:22:56Z YoshiRulz 10156 308921 css text/css /* legible headings */ .mw-body h1, .mw-body .mw-heading1, .mw-body-content h1, .mw-body-content .mw-heading1, .mw-body-content h2, .mw-body-content .mw-heading2 { font-family: inherit; } /* hide "quick" Wikitext insert buttons */ .mw-editTools { display: none; } /* widen input fields in composition editors */ .ext-wikilambda-app-field-overrides .cdx-text-input, .ext-wikilambda-app-field-overrides .cdx-text-area, .ext-wikilambda-app-field-overrides .cdx-select, .ext-wikilambda-app-field-overrides .cdx-select-vue, .ext-wikilambda-app-field-overrides .cdx-lookup { max-width: 25em; } /* fix casing in UI component for Z11s */ .ext-wikilambda-app-monolingual-string__chip > span.cdx-info-chip__text { text-transform: lowercase; } /* minimise error chips until mouseover'd, and fix the height so tables remain aligned */ .cdx-info-chip--error { line-height: 1.25rem !important; transition: max-width 0.25s ease-out; } .cdx-info-chip--error:not(:hover) { max-width: 1em; } /* distinguish Wikidata entities' chips (sadly can't distinguish e.g. Z6001/Z6091) */ a[href*="/wiki/Q"], .ext-wikilambda-app-wikidata-item { --wd-icon-overlay-text: "I"; } a[href*="/wiki/Property:"], .ext-wikilambda-app-wikidata-property { --wd-icon-overlay-text: "P"; } a[href*="/wiki/Lexeme:"], .ext-wikilambda-app-wikidata-lexeme { --wd-icon-overlay-text: "L"; } a[href*="/wiki/Lexeme:"][href*="#S"], .ext-wikilambda-app-wikidata-lexeme-sense { --wd-icon-overlay-text: "LS"; } a[href*="/wiki/Lexeme:"][href*="#F"], .ext-wikilambda-app-wikidata-lexeme-form { --wd-icon-overlay-text: "LF"; } .cdx-text-input__input + .cdx-icon:not(:has(+ a))::after, .cdx-icon + a::before { color: #339966; content: var(--wd-icon-overlay-text); display: inline-block; font-size: 1.25em; line-height: 1em; } .cdx-text-input__input + .cdx-icon:not(:has(+ a))::after { padding-inline-start: 0em; position: absolute; } .cdx-icon + a::before { margin-inline: -1.25em 0.25em; } [data-testid^="wikidata-"] :is(.cdx-text-input__input + .cdx-icon, .cdx-icon:has(+ a)) > svg { display: none; } /* distinguish lightweight enums' chips (only the ZID is in the DOM, so labels have to be hardcoded) */ .ext-wikilambda-app-wikidata-enum { --wd-enum-zid-text: attr(expected-type); } .ext-wikilambda-app-wikidata-enum[expected-type="Z6062"] { --wd-enum-zid-text: "Datetime precision"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z6063"] { --wd-enum-zid-text: "Model\A Gregorian/Julian"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z25340"] { --wd-enum-zid-text: "Gender\A m/f"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z25501"] { --wd-enum-zid-text: "Gender\A m/f/n"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z25502"] { --wd-enum-zid-text: "Gender\A c/n"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z26582"] { --wd-enum-zid-text: "Hijri month"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z26934"] { --wd-enum-zid-text: "Number\A 1/many"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z26935"] { --wd-enum-zid-text: "Animacy"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z27951"] { --wd-enum-zid-text: "Chemical element"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z27970"] { --wd-enum-zid-text: "Person\A 1st/2nd/3rd"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z27971"] { --wd-enum-zid-text: "Celtic mutation"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28215"] { --wd-enum-zid-text: "Number\A 1/2/many"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28515"] { --wd-enum-zid-text: "Number\A 1/some/many"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28516"] { --wd-enum-zid-text: "Definiteness"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28517"] { --wd-enum-zid-text: "Voice\A a/p"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28518"] { --wd-enum-zid-text: "Polarity"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28519"] { --wd-enum-zid-text: "Case\A nom/gen/dat/acc"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z28520"] { --wd-enum-zid-text: "Degree\A pos/comp/super"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z32789"] { --wd-enum-zid-text: "Voice\A a/m/p"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z32792"] { --wd-enum-zid-text: "Voice\A a/mp"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z33568"] { --wd-enum-zid-text: "Word order"; } .ext-wikilambda-app-wikidata-enum[expected-type="Z33827"] { --wd-enum-zid-text: "Season"; } .ext-wikilambda-app-wikidata-enum .ext-wikilambda-app-key-value-block::before { color: var(--color-subtle); content: var(--wd-enum-zid-text); display: inline-block; font-size: 0.75em; margin-inline-start: -2em; white-space: pre; } m3tjg70lc1omvjbxk707jclm555s0qf Z35672 0 84328 309439 298287 2026-09-06T10:02:29Z 鈴音雨 101019 japanese 309439 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35672" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z35672K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "språk" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "język" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z35673", "Z35674" ], "Z8K4": [ "Z14", "Z35686" ], "Z8K5": "Z35672" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "sentence separator" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文章間の空白" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "meningsavgränsare" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "separator zdań" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "séparation entre phrases" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "single space", "sentence spacer", "space sentences", "sentence joiner", "join sentences", "separate sentences" ] }, { "Z1K1": "Z31", "Z31K1": "Z1592", "Z31K2": [ "Z6", "skiljetecken mellan meningar", "meningsavskiljare", "meningsseparator" ] }, { "Z1K1": "Z31", "Z31K1": "Z1025", "Z31K2": [ "Z6", "spacja", "pojedyncza spacja", "znak spacji", "rozdzielnik zdań", "separator zdania" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "文と文の間の空白" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns an HTML fragment which should appear between sentences. After everything that belongs with the first sentence, and before everything that belongs in the second. English: a single space" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文と文の間にゼロ幅スペースを入れる" }, { "Z1K1": "Z11", "Z11K1": "Z1025", "Z11K2": "Zwraca fragment kodu HTML, który powinien pojawić się między dwoma zdaniami – po zakończeniu pierwszego zdania i przed rozpoczęciem drugiego. W języku polskim: pojedyncza spacja" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Fragment HTML de séparation entre phrases. En français et en anglais : une espace simple." } ] } } 8mon8dczq5fflef02fne2rf6fkz71wn Z35676 0 84332 309442 304566 2026-09-06T10:03:49Z 鈴音雨 101019 japanese 309442 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z35676" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z35687", "Z14293K2": "Z33984" }, { "Z1K1": "Z14293", "Z14293K1": "Z40230", "Z14293K2": [ "Z60", "Z1820", "Z2038" ] } ], "Z14294K2": "Z35677" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config of sentence separators (string)" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文章間の区切り文字の言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "文と文の間の区切り文字の言語別設定" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } aon6mhqny9k2kl2e306zm75x8moo56l Z36218 0 85333 309494 307027 2026-09-06T11:39:16Z 鈴音雨 101019 309494 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z36218" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z36218K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject reference" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "ämne" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "主語参照" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z36218K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property reference" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "egenskap" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "プロパティ参照" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z36218K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "språk" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z36221", "Z36223", "Z36222", "Z36440", "Z38110", "Z38358", "Z39384", "Z39707" ], "Z8K4": [ "Z14", "Z36220" ], "Z8K5": "Z36218" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "specific property of subject is value from WD" }, { "Z1K1": "Z11", "Z11K1": "Z1532", "Z11K2": "spesifieke eienskap van onderwerp is waarde van WD" }, { "Z1K1": "Z11", "Z11K1": "Z1576", "Z11K2": "specifa eco de subjekto estas valoro de WD" }, { "Z1K1": "Z11", "Z11K1": "Z1402", "Z11K2": "специфично својство на субјектот е вредност од WD" }, { "Z1K1": "Z11", "Z11K1": "Z1137", "Z11K2": "propiedat spesífiko di sujeto ta balor for di WD" }, { "Z1K1": "Z11", "Z11K1": "Z1157", "Z11K2": "eigenschap van onderwerp is waarde uit WD." }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "en av ämnets egenskaper från Wikidata" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータから\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eである (現在時制)" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "propriété de l'entité, issue de Wikidata" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "sentence for triple with specified property", "the X of Y is Z", "Wikidata value sentence", "specific property of subject is value", "value from Wikidata", "value of a property from Wikidata", "subject's value of a Wikidata property" ] }, { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "XのYはZである。" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "HTML sentence for \"The \u003Cproperty\u003E of \u003Csubject\u003E is \u003Cvalue\u003E.\" Attempt for any specific (single-best?-valued) property triple. Use for triples in present tense." }, { "Z1K1": "Z11", "Z11K1": "Z1592", "Z11K2": "skapar en mening på formen \"\u003CÄmne\u003Es \u003Cegenskap\u003E är \u003Cvärde från Wikidata\u003E.\" som ett HTML-fragment" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "La \u003Cpropriété\u003E du \u003Csujet\u003E est \u003Cvaleur\u003E. Utilise la meilleure valeur pour cette propriété. Conjugué au présent." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「〈主語〉の〈プロパティ〉は〈値〉である。」形式のHTML文を生成します。任意の特定プロパティについて、最良ランクの単一値を用いるトリプルを想定します。現在時制のトリプル向け。" } ] } } 9v2k6a3il5uy8kaya8967e4lv89ws23 Z36232 0 85350 309501 302688 2026-09-06T11:43:15Z 99of9 1622 Added Z40164 to the approved list of test cases 309501 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z36232" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z36232K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z36232K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z36232K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "value (string, quantity, monolingual text, QID...)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z36232K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z36236", "Z36237", "Z36239", "Z37798", "Z39227", "Z39313", "Z39086", "Z39085", "Z39618", "Z39907", "Z39857", "Z40164" ], "Z8K4": [ "Z14", "Z36233" ], "Z8K5": "Z36232" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "specific property of subject is value, English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "English specific property of subject is value" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "HTML sentence for \"The \u003Cproperty\u003E of \u003Csubject\u003E is \u003Cvalue\u003E.\" Attempt for any specific property triple. Use for triples in present tense. Use Z36218 or its child Z36206 to draw from WD." } ] } } e4nm4k992rue45olg1bif0v2mgrjt32 309502 309501 2026-09-06T11:45:34Z 99of9 1622 nudge 309502 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z36232" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z36232K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z36232K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z36232K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "value (string, quantity, monolingual text, QID...)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z36232K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z36236", "Z36237", "Z36239", "Z37798", "Z39227", "Z39313", "Z39086", "Z39085", "Z39618", "Z39907", "Z39857", "Z40164" ], "Z8K4": [ "Z14", "Z36233" ], "Z8K5": "Z36232" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "specific property of subject is value, English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "English specific property of subject is value", "Wikidata property value, English" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "HTML sentence for \"The \u003Cproperty\u003E of \u003Csubject\u003E is \u003Cvalue\u003E.\" Attempt for any specific property triple. Use for triples in present tense. Use Z36218 or its child Z36206 to draw from WD." } ] } } rnisdr68juzmfqb1hz13datc3isbozx Z36236 0 85354 309503 289000 2026-09-06T11:46:32Z 99of9 1622 voltage 309503 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z36236" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z36232", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z36232", "Z36232K1": { "Z1K1": "Z6091", "Z6091K1": "Q7055322" }, "Z36232K2": { "Z1K1": "Z6092", "Z6092K1": "P2884" }, "Z36232K3": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "230" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "220" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "240" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q25250" } }, "Z36232K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "The mains voltage of North Epping is 230±10 V." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "The mains voltage of North Epping is 230±10 V." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "This value is not on the actual Wikidata item because it is inherited from the entire country. So can be specified directly." } ] } } c2zu4wqzfluh0hs3rbffvpjcmausp1x User:Denny/Syntactic tables 2 86559 309000 308830 2026-09-05T15:33:08Z Denny 81 /* adjective */ 309000 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} l4b8mt3mcjugp49vnswn7624ixge18x 309014 309000 2026-09-05T15:46:26Z Denny 81 /* adjective */ 309014 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} lx6g3dgw9j0tr4ag9ilxoyjrtkjypzv 309243 309014 2026-09-06T06:42:58Z Denny 81 /* adjective */ 309243 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme * English adjective fragment from Item * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} p945x9pcq7z1hjig1tmtgg1y8skuupy 309278 309243 2026-09-06T07:04:24Z Denny 81 /* adjective */ 309278 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme - [[Z41251]] * English adjective fragment from Item * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} r34hbmxcus5d5o3mdh85x3yp26nqi90 309365 309278 2026-09-06T09:14:44Z Denny 81 /* adjective */ 309365 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme reference - [[Z41251]] * English adjective fragment from lexeme - [[Z41304]] * English adjective fragment from Item reference - [[Z41266]] * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} inoprnc55ozjav7dewk864xagnsdbdl 309404 309365 2026-09-06T09:46:21Z Denny 81 /* adjective */ 309404 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme reference - [[Z41251]] * English adjective fragment from lexeme - [[Z41304]] * English adjective fragment from Item reference - [[Z41266]] * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English positive adjective from Lexeme - [[Z41311]] * English adjective from Item * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} ocitj6f7v358xzing4u6fwa6cxzzhrt 309448 309404 2026-09-06T10:07:15Z Denny 81 /* adjective */ 309448 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme reference - [[Z41251]] * English adjective fragment from lexeme - [[Z41304]] * English adjective fragment from Item reference - [[Z41266]] * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English positive adjective from Lexeme - [[Z41311]] * English adjective from Item * English positive adjective from Item - [[Z41322]] * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} bb08yr2i5ge3rp35718f3s0mfh9zj9k 309461 309448 2026-09-06T10:26:17Z Denny 81 /* Abstract */ 309461 wikitext text/x-wiki = Goals = These are the examples listed on the [[Wikifunctions:Type proposals/Syntactic table|Type proposal]]: {| class="wikitable" |+ |Brač is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40662%22%2C%22Z40662K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40662K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40662K3%22%3A%22Z1002%22%7D (abs1)] <br> [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs2)] | 1: <code>item is an item( Brač, island )</code> <br> 2: <code>is a( noun phrase( Brač ), noun( island )</code> |- |Brač is a beautiful island. | | | |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40440%22%2C%22Z40440K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40457%22%2C%22Z40457K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40457K2%22%3A%22Z1002%22%7D%7D%2C%22Z40440K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40395%22%2C%22Z40395K1%22%3A%22Z40389%22%2C%22Z40395K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40374%22%2C%22Z40374K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L4905%22%7D%2C%22Z40374K2%22%3A%22Z1002%22%7D%2C%22Z40395K3%22%3A%22Z1002%22%7D%2C%22Z40440K3%22%3A%22Z1002%22%7D%7D (en)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40471%22%2C%22Z40471K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41123%22%2C%22Z41123K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41002%22%2C%22Z41002K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z41002K2%22%3A%22Z1430%22%7D%7D%2C%22Z41123K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40934%22%2C%22Z40934K1%22%3A%22Z40847%22%2C%22Z40934K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40715%22%2C%22Z40715K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%2C%22Z40715K2%22%3A%22Z1430%22%7D%2C%22Z40934K3%22%3A%22Z1430%22%7D%2C%22Z41123K3%22%3A%22Z1430%22%7D%7D (de)] | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40659%22%2C%22Z40659K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z41148%22%2C%22Z41148K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40596%22%2C%22Z40596K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z40596K2%22%3A%22Z1002%22%7D%7D%2C%22Z40659K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z40561%22%2C%22Z40561K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z40561K2%22%3A%22Z1002%22%7D%2C%22Z40659K3%22%3A%22Z1002%22%7D (abs)] |<code>is a( strong( noun phrase( Brač )), noun( island ))</code> |- |'''Brač''' is a beautiful island. | | | |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | | | |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |- |'''Brač and Hvar''' are beautiful islands in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( and_conjunction( named_item( Brač ), named_item( Hvar ) ) ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} Here with tables. It didn't work at first with German adjectives, which led to the new proposal for syntactic phrase functions. {| class="wikitable" |+ |Brač is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37143%22%2C%22Z37143K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37143K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37143K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, island )</code> |- |Brač is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( island, beauty ) )</code> |- |Brač is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( Brač, noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is an island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37246%22%2C%22Z37246K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37220%22%2C%22Z37220K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37220K2%22%3A%22Z1430%22%7D%7D%2C%22Z37246K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37157%22%2C%22Z37157K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z6825%22%2C%22Z6825K1%22%3A%7B%22Z1K1%22%3A%22Z6095%22%2C%22Z6095K1%22%3A%22L408939%22%7D%7D%7D%2C%22Z37246K3%22%3A%22Z1430%22%7D%7D (de)] |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), island )</code> |- |'''Brač''' is a beautiful island. |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36766%22%2C%22Z36766K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z36766K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( island, beauty ) )</code> |- |'''Brač''' is a beautiful [[:en:Island|island]]. | [https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36747%22%2C%22Z36747K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37083%22%2C%22Z37083K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36925%22%2C%22Z36925K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z36925K2%22%3A%22Z1002%22%7D%7D%2C%22Z37083K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36969%22%2C%22Z36969K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37076%22%2C%22Z37076K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37076K2%22%3A%22Z1002%22%7D%2C%22Z36969K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37080%22%2C%22Z37080K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37080K2%22%3A%22Z1002%22%7D%2C%22Z36969K3%22%3A%22Z1002%22%7D%2C%22Z37083K3%22%3A%22Z1002%22%7D%7D (en)] | |[https://www.wikifunctions.org/wiki/Special:RunFunction?call=%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37126%22%2C%22Z37126K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z36957%22%2C%22Z36957K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37115%22%2C%22Z37115K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q922%22%7D%2C%22Z37115K2%22%3A%22Z1002%22%7D%7D%2C%22Z37126K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37150%22%2C%22Z37150K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37146%22%2C%22Z37146K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q4376884%22%7D%2C%22Z37146K2%22%3A%22Z1002%22%7D%2C%22Z37150K2%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37029%22%2C%22Z37029K1%22%3A%7B%22Z1K1%22%3A%22Z7%22%2C%22Z7K1%22%3A%22Z37089%22%2C%22Z37089K1%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37089K2%22%3A%22Z1002%22%7D%2C%22Z37029K2%22%3A%7B%22Z1K1%22%3A%22Z6091%22%2C%22Z6091K1%22%3A%22Q23442%22%7D%2C%22Z37029K3%22%3A%22Z1002%22%7D%2C%22Z37150K3%22%3A%22Z1002%22%7D%2C%22Z37126K3%22%3A%22Z1002%22%7D (abs)] |<code>instantiating( strong( Brač ), noun with adjective( link( island ), beauty ) )</code> |- |'''Brač''' is a beautiful island in [[:en:Croatia|Croatia]]. | | | |<code>instantiating( strong( Brač ), noun in location( noun with adjective( beautiful, island ), link( Croatia ) ) ) )</code> |} = Functions = == Abstract == * (common noun) noun from item - [[Z40561]] * (proper noun) noun phrase from item - [[Z40596]] * (mass noun) mass noun from item * present describe noun phrase with noun - [[Z40650]] * present describe item with item - [[Z40656]] * past describe noun phrase with noun * past describe item with item * adjective from item * positive adjective from item - [[Z41334]] * add adjective to noun * link * strong - [[Z41148]] * emphasise === returning html === * "noun phrase' is a "noun" - [[Z40659]] * "item" is an "item" - [[Z40662]] == English == ==== noun ==== * English noun fragment from two strings(singular, plural, number) - [[Z39425]] * English noun fragment from string(singular, number) - [[Z39430]] * English noun fragment from Lexeme(LID, number) - [[Z39437]] * English noun fragment from Item(QID, number) - [[Z40299]] * English noun from two strings(singular, plural) - [[Z40335]] * English noun from string(singular) - [[Z40344]] * English noun from Lexeme(LID) - [[Z40374]] * English noun from Item(QID) - [[Z40378]] ==== determiner ==== * English indef sg det - [[Z40382]] as a function, or directly [[Z40389]] * English def sg det - [[Z40391]] * English indef sg det - [[Z40421]] * English def pl det - [[Z40419]] * English some pl det - [[Z40423]] * English number det - [[Z40427]] * English determiner with open number ==== adjective ==== * English adjective fragment from three strings - [[Z41157]] * English adjective fragment from one string - [[Z41204]] * English adjective fragment from Lexeme reference - [[Z41251]] * English adjective fragment from lexeme - [[Z41304]] * English adjective fragment from Item reference - [[Z41266]] * English adjective from three strings * English adjective from positive * English adjective from Lexeme * English positive adjective from Lexeme - [[Z41311]] * English adjective from Item * English positive adjective from Item - [[Z41322]] * Add adjective to noun ==== noun phrase ==== * English noun phrase from determiner and noun (common noun) - [[Z40395]] * English noun phrase from named entity (proper noun) - [[Z40457]] * English noun phrase from determiner and noun with open number * Mass noun ==== clause ==== * English describing present clause from noun phrase and noun phrase - [[Z40440]] * English describing past clause from noun phrase and noun phrase - [[Z40450]] * English describing present clause from noun phrase and noun - [[Z40505]] * English describing past clause from noun phrase and noun - [[Z40550]] * English describing present clause from noun phrase and adjective * English describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == German == ==== noun ==== * noun fragment from eight strings(..., number, case) - [[Z40665]] * noun fragment from string(base, number, case) - [[Z40669]] * noun fragment from Lexeme(LID, number, case) - [[Z40673]] * noun fragment from Item(QID, number, case) - [[Z40679]] * noun from eight strings(..., gender, number, case) - [[Z40693]] * noun from string(..., gender, number, case) - [[Z40712]] * noun from Lexeme(LID, number, case) - [[Z40715]] * noun from Item(QID, number, case) - [[Z40728]] ** needs: guess gender for QID - [[Z37170]] ==== determiner ==== * indef sg det(gender, case) - [[Z40847]] * def sg det(gender, case) - [[Z40848]] * indef sg det(gender, case) - [[Z40849]] * def pl det(gender, case) - [[Z40850]] * some det(gender, case) * number det(number, gender, case) ==== adjective ==== * adjective from four strings * adjective from positive * adjective from Lexeme * adjective from Item * add adjective to noun ==== noun phrase ==== * noun phrase from determiner and noun (common noun) - [[Z40934]] * noun phrase from named entity (proper noun) - [[Z41002]] ** guess gender - [[Z37170]], with lexeme [[Z41054]] ** does it need an article - [[Z37235]], with lexeme [[Z41052]] ** is it plural or singular - [[Z40994]], with lexeme [[Z41050]] * mass noun ==== clause ==== * describing present clause from noun phrase and noun phrase - [[Z41123]] * describing past clause from noun phrase and noun phrase * describing present clause from noun phrase and noun - [[Z41129]] * describing past clause from noun phrase and noun * describing present clause from noun phrase and adjective * describing past clause from noun phrase and adjective ==== sentence ==== * sentence from clause - [[Z40471]] == helpers == * read zid (string) -> zid = [[Z41015]] * evaluate syntactic function with one argument (synfun, argument) -> list(html) - [[Z41030]] * set single argument (synfun, argument) -> synfun - [[Z41033]] * set option on syntactic function (synfun, feature) -> synfun - [[Z41036]] * get feature from synfun (synfun, meaning) -> feature - [[Z41003]] * agree phrase on feature (synfun, synfun, meaning) -> synfun - [[Z41039]] * body of anonymous function of synfun (synfun) -> list(object) - [[Z41043]] * concatenate two synfuns with space (synfun, synfun) -> synfun * merge (synfun, synfun, pos) -> synfun (this one seems complicated) What is merge? * two synfuns, concatenated in order ** language stays ** needs a new pos ** features are union of both features ** each synfun gets set each feature of the other synfun = Tables = == English == === necessary for the goals above === ==== Create functions for determiners {{done}} ==== * Generic / grammatic (check for types in the lightweight enumeration types) {{done}} ** Indef sg (a, an) {{done}} ** Indef pl () {{done}} ** Def sg (the) {{done}} ** Def pl (the) {{done}} * Ratios ** None (no) ** Some {{done}} ** most ** all * From Number (from natural number) {{done}} ** zero, one, two, three … {{done}} ==== First fragment of option {{done}} ==== ==== ++, join with space in between, unless one of them is empty {{done}} ==== ==== Option by features from list of options {{done}} ==== * List of options, features * If ** set equality ( features, features of option ( first element ( list ) ) ** first element ( list ) ** Option by features from list of options ( tail ( list ) ) ==== Option by features from table {{done}} ==== * Table, features * Find option with exactly the given features using Option by features from list of options ==== Fragments from table by features {{done}} ==== * Table1, table2 * Option by features from table1 by inherent features of table2 * Return fragments of that option ==== get text content from HTML fragment {{done}} ==== * Remove tags {{done}} * Undo escapes {{done}} * noun phrase from det and noun: det, N → NP {{done}} * Depending on det’s number, choose the noun {{done}} * Set inherent to det’s number {{done}} * If det==”a” change it to “an” if needed {{done}} ** Need to use text content from HTML fragment {{done}} * det++N {{done}} ==== Maybe use noun phrase from det and noun for the respective English function {{done}} ==== ==== Check on existing lexeme from qid mappings {{done}} ==== ==== Think also for Z36766 {{done}} ==== ==== Extend noun from qid by “find lexeme, if not take label” {{done}} ==== * Get lexeme for qid, fallback to label {{done}} * check if that already exists (seems no) * So maybe try to find lexeme, and the catch is using the label * Use label: https://www.wikifunctions.org/view/en/Z24766 ==== Indefinite noun phrase from noun: QID → NP (an island) {{done}} ==== * Just use noun phrase from det and noun for this {{done}} * Look up the lexeme connected to QID → N {{done}} * If no Lexeme, use the English label as N {{done}} * Noun phrase from noun(N, indefinite) {{done}} ==== Noun phrase from name: QID → NP (Brač) {{Done}} ==== * Look up the Lexeme connected to QID → N {{Done}} * If no Lexeme, use the English label as N {{Done}} * Check if a “the” is required {{Done}} * Noun phrase from noun: N, the or nothing {{Done}} * {{Todo}} Stability issues {{Z|Z36925}} ==== Instantiating present: NP, NP → Sentence {{done}} ==== * NP1++is or are be depending on NP1 number++NP2 {{done}} {{Z|Z36939}} ==== Capitalize HTML fragment: HTML fragment → HTML fragment {{done}} ==== * find the first letter that is not inside a tag and capitalize that {{done}} * {{Todo}} would be better to use {{Z|Z10018}}, but I guess that's for later {{Z|Z36944}} ==== Instantiating past: NP, NP → Sentence {{done}} ==== * NP1++was or were depending on NP1 number++NP2 {{done}} {{Z|Z36953}} ==== strong: X → X {{done}} ==== * Language independent, tag strong every option {{done}} [[Z36957]] ==== adjective from three strings {{done}} ==== * adjectives in English seem super easy, if we ignore comparative and superlative for now? * maybe call it positive adjective, just to be clear * maybe we shouldn't ignore it. There's no item in Wikidata to use as the 'positive adjective'. So it would be difficult to change it later to a full adjective. Let's just have it the necessary three forms. ==== adjective from string {{done}} ==== * use the regular comparative and regular superlative we already have {{done}} ==== adjective from Lexeme {{done}} ==== * get the positive form {{done}} {{Z|Z36978}} ==== adjective from QID {{done}} ==== * maybe leave that for later when we do the abstract stuff {{done}} * see curent QID->Adj mapping ins implementations of [[Z22664]] {{done}} [[Z37076]] ==== noun with adjective: N, Adj → N {{done}} ==== * adj++N {{done}} * Use that for [[Z22664]] -- used in [[Z21734]] instead, which the other uses for English {{done}} ==== link table: QID, table → table {{done}} ==== * Language independent, href to QID every option {{done}} [[Z37029]] ==== linked noun: QID → N {{done}} ==== * link( X(QID), QID ) {{done}} ==== instantiate present: NP, N -> sentence {{done}} ==== * instantiate present( NP, Indef NP from N ( N ) ) {{done}} [[Z37083]] ==== instantiate past: NP, N -> sentence {{done}} ==== * instantiate past: NP, Indef NP from N ( N ) {{done}} [[Z37086]] === bonus === ==== references ==== * ==== English Nominative Pronoun for person: QID → N ==== * Look for pronouns * Look for gender ==== English genitive pronoun from item: QID → Det ==== * As previous, but her and his instead of she and he ==== English Pronoun from item: QID → N ==== * Does it have a Lexeme? ** Take grammatical gender ** Well, not in English * Is it a person? Use English pronoun for person * Everything else “it”/“they”? ==== English Pronoun from item and class: QID, QID → N ==== * Is it a person? Use English pronoun for person * Everything else, based on Lexeme ==== English noun phrase for a named item: QID, QID → N ==== * Make “the city” for San Francisco * Fall back to San Francisco? * Maybe this is only useful for the abstract layer? == Abstract == ==== N from item: QID, language → N {{done}} ==== * concretize {{done}} [[Z37089]] ==== NP from named item: QID, language → NP {{done}} ==== * concretize {{done}} [[Z37115]] ==== Instantiating present: NP, N, language → sentence {{done}} ==== * concretize [[Z37120]] ==== Instantiating present: NP, N, language → HTML fragment {{done}} ==== * first fragment( instantiating from NP and N) {{done}} [[Z37126]] ==== instantiating present: QID, QID, language → sentence {{done}} ==== * instantiating( NP from named item(QID), N from item(QID), language ) {{done}} [[Z37140]] ==== instantiating present: QID, QID, language → HTML fragment {{done}} ==== * first fragment(instating table from qid, qid, language) {{done}} [[Z37143]] ==== N: N, adj → N {{done}} ==== * concretize {{done}} [[Z37150]] ==== Adj from item: QID → adj {{done}} ==== * concretize {{done}} [[Z37146]] == German == === Needs for the abstract functions === ==== N from 8 strings {{done}} ==== [[Z37154]] ==== N from one string? {{done}} ==== * depends if it has all the morphological functions ** we don't, it seems? (check with Lexeme Forms whether this is true) * just guessing from label {{done}} * gender guessing too, made [[Z37170]], not implemented yet [[Z37175]] ==== N from Lexeme {{done}} ==== [[Z37157]] ==== N from Lexeme reference {{done}} ==== [[Z37160]] ==== N from item {{done}} ==== * connect the concretizer {{done}} [[Z37163]] ==== definite determiner {{done}} ==== * inherent: singular / plural {{done}} * options: number, case {{done}} * one singular {{done}} [[Z37200]] * one plural {{done}} [[Z37208]] ==== indefinite determiner {{done}} ==== * one singular {{done}} [[Z37198]] * one plural {{done}} [[Z37199]] ==== NP from Det and N {{done}} ==== [[Z37209]] Used that for [[Z26070]] eine Insel -- turned out to be quite a speed up! ==== NP from noun without article {{done}} ==== [[Z37232]] ==== does item need an article? {{done}} ==== [[Z37235]] ==== guess grammatical gender of an item ==== WIP [[Z37170]] ==== NP from named item {{done}} ==== * connect to concretizer {{done}} [[Z37220]] ==== Instantiate present from 2 np: NP, NP, language → Sentence {{done}} ==== [[Z37241]] ==== Instantiate present from NP, N {{Done}} ==== * connect to concretizer {{Done}} [[Z37246]] ==== Adj from four fragments ==== * [[Z37473]] -- doesn't work though ==== Adj from four strings ==== ==== Adj from three strings ==== ==== Adj from one string ==== ==== Adj from Lexeme ==== ==== Adj from item: QID → adj ==== Adjectives in German would become very big tables. [[:d:Lexeme:L343955]] has 147 forms (maybe it should even be more, 2 numbers x 4 cases x 3 inflections x 3 comparisons x 3 genders?) But, in general, the bigger the number of forms, the more general they are. So maybe instead of having a table with many, many forms, maybe we should have a table with the basic forms, then functions that generate the rest. Then we call it with the right values when we get to it, e.g. when merging it to a noun phrase. But how do we make this interact with formatting functions such as "strong" or "link"? These rely on the fact that we already have the fragments materialized. maybe set a marker on the adjective, and in the relevant merge function use functions on the table and reduce it to a smaller number of options? should I try to make one adjective with all the necessary options? and see how fast it is? ==== positive Adjective from Adjective ==== * just keep the positive * put the positive into inherent, remove it from options ==== merge adjective and noun ==== * create table with declination ==== update merge determiner and adj+noun to noun phrase ==== * determiner needs declination * determiner applies declination on adj+noun, which looks just like a noun ==== N: N, adj → N ==== * add to [[Z20612]] === useful helpers? === ==== gender item from noun: noun → item ==== ==== gender from noun: noun → gender ==== ==== form from noun: noun, case, number → HTML ==== ==== form from noun as string: noun, case, number → string ==== ==== form from determiner ==== * expand [[Z28670]] by using determiners ==== determiner from number ==== ==== some determiner ==== ==== determiner from definiteness, gender, number, case ==== ==== Instantiating past from NP, N ==== == Todos == ==== Fix the missing language option {{done}} ==== * start with abstract implementation of noun from item, adding language {{done}} * together with the concretized function {{done}} * push from there to all used functions {{done}} * push to all functions {{done}} ==== Proper error message ==== * when a concretizer implementation does not have a language set, call the right error message * in general, do better about error messages ==== Functions to improve ==== * {{Z|Z37235}} * {{Z|Z37170}} frvp7j0aox2ep9lm86atmwq9j154kc7 Z37104 0 86801 309493 308045 2026-09-06T11:39:02Z 鈴音雨 101019 japanese 309493 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z37104" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z37104K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject reference" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "主題参照" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z37104K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property reference" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "プロパティ参照" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z37104K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z37109", "Z37112" ], "Z8K4": [ "Z14", "Z37105" ], "Z8K5": "Z37104" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "specific property of subject was value from WD" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "phrase au passé sur la valeur de cette propriété" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ウィキデータから\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eである (過去時制)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "XのYはZである。" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Like Z36218. HTML sentence for \"The \u003Cproperty\u003E of \u003Csubject\u003E was \u003Cvalue\u003E.\" Use for triples that are broadly no longer continuing, on former entities, simple past tense, etc." }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "Z36218と同様。「\u003C主題\u003Eの\u003Cプロパティ\u003Eは\u003C値\u003Eである。」というHTML文。継続していないトリプル、以前のエンティティ、単純過去形などに使用します。" } ] } } 6oirwzuw2t1z2o01lx2fh77p9wivlw0 Z37494 0 87527 309233 307735 2026-09-06T04:15:38Z 99of9 1622 Z96 typed ZID 309233 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z37494" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z37493", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z10174", "Z10174K1": { "Z1K1": "Z7", "Z7K1": "Z10615", "Z10615K1": { "Z1K1": "Z18", "Z18K1": "Z37493K1" }, "Z10615K2": "❌≪" }, "Z10174K2": { "Z1K1": "Z7", "Z7K1": "Z10618", "Z10618K1": { "Z1K1": "Z18", "Z18K1": "Z37493K1" }, "Z10618K2": "≫❌" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z26414", "Z26414K1": { "Z1K1": "Z7", "Z7K1": "Z26414", "Z26414K1": { "Z1K1": "Z18", "Z18K1": "Z37493K1" } } } }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z37493K5" }, "Z11K2": { "Z1K1": "Z18", "Z18K1": "Z37493K1" } } }, "Z37464K2": { "Z1K1": "Z7", "Z7K1": "Z40869", "Z40869K1": { "Z1K1": "Z18", "Z18K1": "Z37493K2" } }, "Z37464K3": { "Z1K1": "Z18", "Z18K1": "Z37493K3" }, "Z37464K4": { "Z1K1": "Z18", "Z18K1": "Z37493K4" }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z37493K5" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "NLG string to HTML w. span for default, compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } j28wjdhofwjyqxexx1cvhes9wb51m9u Z37784 0 87908 308923 308550 2026-09-05T13:39:11Z 鈴音雨 101019 precision 308923 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z37784" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z37782", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37640", "Z37640K1": { "Z1K1": "Z7", "Z7K1": "Z27299", "Z27299K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z37782K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z18", "Z18K1": "Z37782K2" } ] }, "Z27299K2": { "Z1K1": "Z18", "Z18K1": "Z37782K2" } }, "Z37640K2": { "Z1K1": "Z7", "Z7K1": "Z33319", "Z33319K1": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z35017", "Z35017K1": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z34096", "Z34096K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z7", "Z7K1": "Z35364", "Z35364K1": { "Z1K1": "Z7", "Z7K1": "Z35036", "Z35036K1": { "Z1K1": "Z18", "Z18K1": "Z37782K2" }, "Z35036K2": [ "Z6030", "Z6036" ], "Z35036K3": [ "Z60" ], "Z35036K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P1629" } ] } }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z37782K3" } }, "Z34096K2": { "Z1K1": "Z18", "Z18K1": "Z37782K3" } } }, "Z35017K2": { "Z1K1": "Z40", "Z40K1": "Z41" }, "Z35017K3": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K4": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K5": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z883", "Z883K1": "Z6", "Z883K2": "Z6" }, "K1": [ { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" }, { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" }, "K1": "scope", "K2": "row" } ] } }, { "Z1K1": "Z7", "Z7K1": "Z35017", "Z35017K1": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19084", "Z19084K1": { "Z1K1": "Z7", "Z7K1": "Z23516", "Z23516K1": { "Z1K1": "Z7", "Z7K1": "Z23451", "Z23451K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z37782K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z18", "Z18K1": "Z37782K2" } ] }, "Z23451K2": { "Z1K1": "Z18", "Z18K1": "Z37782K2" } } }, "Z19084K2": "Z6064" }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z29036", "Z29036K1": { "Z1K1": "Z7", "Z7K1": "Z25726", "Z25726K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z23451", "Z23451K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z37782K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z18", "Z18K1": "Z37782K2" } ] }, "Z23451K2": { "Z1K1": "Z18", "Z18K1": "Z37782K2" } } } }, "Z29036K2": { "Z1K1": "Z7", "Z7K1": "Z35328", "Z35328K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z23451", "Z23451K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z37782K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z18", "Z18K1": "Z37782K2" } ] }, "Z23451K2": { "Z1K1": "Z18", "Z18K1": "Z37782K2" } } } }, "Z29036K3": { "Z1K1": "Z18", "Z18K1": "Z37782K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z35192", "Z35192K1": { "Z1K1": "Z7", "Z7K1": "Z23451", "Z23451K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z37782K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z18", "Z18K1": "Z37782K2" } ] }, "Z23451K2": { "Z1K1": "Z18", "Z18K1": "Z37782K2" } }, "Z35192K2": { "Z1K1": "Z18", "Z18K1": "Z37782K3" } } } }, "Z35017K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z35017K3": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K4": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K5": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z883", "Z883K1": "Z6", "Z883K2": "Z6" }, "K1": [ { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" } ] } } ] }, "Z37640K3": { "Z1K1": "Z89", "Z89K1": "" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "infobox for row, date Composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } omygderngqug40qca96agtqjw5sjy48 Z37900 0 88085 308882 292274 2026-09-05T12:31:08Z Ornithorynque liminaire 1539 fr 308882 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z37900" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z37900K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "lexeme" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z37900K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "grammatical features (optional)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z37900K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of French" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z37901", "Z37902", "Z37903", "Z37904", "Z37910", "Z37983", "Z37987" ], "Z8K4": [ "Z14", "Z37905" ], "Z8K5": "Z37900" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "string for lexeme with definite, French" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "lexème avec son article défini, français" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item version at Z32169" } ] } } gvbjj9lz3ewskkcs40zryjeuu690qv0 Z37911 0 88096 308868 292455 2026-09-05T12:10:12Z Ornithorynque liminaire 1539 fr 308868 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z37911" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z32169", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z32556", "Z32556K1": { "Z1K1": "Z7", "Z7K1": "Z37900", "Z37900K1": { "Z1K1": "Z7", "Z7K1": "Z27327", "Z27327K1": { "Z1K1": "Z18", "Z18K1": "Z32169K1" }, "Z27327K2": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z27327K3": { "Z1K1": "Z18", "Z18K1": "Z32169K2" } }, "Z37900K2": [ "Z6091" ], "Z37900K3": { "Z1K1": "Z18", "Z18K1": "Z32169K2" } }, "Z32556K2": { "Z1K1": "Z7", "Z7K1": "Z38011", "Z38011K1": { "Z1K1": "Z7", "Z7K1": "Z37999", "Z37999K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z32169K1" }, "Z30120K2": [ "Z6030", "Z6033", "Z6035", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P31" }, { "Z1K1": "Z6092", "Z6092K1": "P279" } ] } }, "Z38011K2": { "Z1K1": "Z7", "Z7K1": "Z36270", "Z36270K1": { "Z1K1": "Z18", "Z18K1": "Z32169K1" }, "Z36270K2": { "Z1K1": "Z18", "Z18K1": "Z32169K2" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "label of item with definite, Fr, Lexeme compose" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "libellé de l'item avec article défini, comp., fr." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses a lexeme version of this function or defaults to just the label if no lexeme is available" } ] } } rgl9oj22p4uc5fkrv7idcf6i13fllx0 Z38087 0 88323 309499 303844 2026-09-06T11:41:51Z 鈴音雨 101019 309499 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38087" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z38086", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37640", "Z37640K1": { "Z1K1": "Z7", "Z7K1": "Z27299", "Z27299K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z38086K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P625" } ] }, "Z27299K2": { "Z1K1": "Z6092", "Z6092K1": "P625" } }, "Z37640K2": { "Z1K1": "Z7", "Z7K1": "Z33319", "Z33319K1": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z35017", "Z35017K1": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z7", "Z7K1": "Z35364", "Z35364K1": { "Z1K1": "Z7", "Z7K1": "Z35036", "Z35036K1": { "Z1K1": "Z6092", "Z6092K1": "P625" }, "Z35036K2": [ "Z6030", "Z6036" ], "Z35036K3": [ "Z60" ], "Z35036K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P1629" } ] } }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z38086K2" } } } }, "Z35017K2": { "Z1K1": "Z40", "Z40K1": "Z41" }, "Z35017K3": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K4": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K5": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z883", "Z883K1": "Z6", "Z883K2": "Z6" }, "K1": [ { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" }, { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" }, "K1": "scope", "K2": "row" } ] } }, { "Z1K1": "Z7", "Z7K1": "Z35017", "Z35017K1": { "Z1K1": "Z7", "Z7K1": "Z27849", "Z27849K1": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z40065", "Z40065K1": { "Z1K1": "Z7", "Z7K1": "Z23459", "Z23459K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z38086K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P625" } ] }, "Z23459K2": { "Z1K1": "Z6092", "Z6092K1": "P625" } }, "Z40065K2": { "Z1K1": "Z18", "Z18K1": "Z38086K2" } } }, "Z27849K2": { "Z1K1": "Z7", "Z7K1": "Z32891", "Z32891K1": { "Z1K1": "Z7", "Z7K1": "Z30016", "Z30016K1": { "Z1K1": "Z7", "Z7K1": "Z38039", "Z38039K1": { "Z1K1": "Z7", "Z7K1": "Z23459", "Z23459K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z38086K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P625" } ] }, "Z23459K2": { "Z1K1": "Z6092", "Z6092K1": "P625" } }, "Z38039K2": { "Z1K1": "Z18", "Z18K1": "Z38086K2" } }, "Z30016K2": "GeoHack" } } }, "Z35017K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z35017K3": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K4": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z35017K5": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z883", "Z883K1": "Z6", "Z883K2": "Z6" }, "K1": [ { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6", "Z882K2": "Z6" } ] } } ] }, "Z37640K3": { "Z1K1": "Z89", "Z89K1": "" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "infobox row hyperlinked Comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lua2iqnhqcxif2habwktu0i7by1cjt4 Z38415 0 88758 309074 294625 2026-09-05T17:53:30Z HenkvD 1290 depicted by-sentence, Default 309074 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38415" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z38402", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41221" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for depicted by-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } casn9r3zy6yg72pfal8kaw7brb8ot0p Z38416 0 88759 309081 304376 2026-09-05T18:05:36Z HenkvD 1290 main subject-sentence, Default 309081 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38416" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z38403", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z40024", "Z14293K2": "Z34003" } ], "Z14294K2": "Z41224" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for main subject-sentence" }, { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "主題を説明する文の言語別設定" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2n3e9bkz55e5hg8jmgxslswramr0j4f Z38417 0 88760 309498 294627 2026-09-06T11:41:37Z HenkvD 1290 uses-sentence, Default 309498 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38417" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z38404", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41347" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for uses-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } r4nk9cn1my2ehi3cy1wlt40zv7wr9wl Z38418 0 88761 309512 294628 2026-09-06T11:55:36Z HenkvD 1290 has use-sentence, Default 309512 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38418" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z38405", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41351" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for has use-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } es06t4cfylyz5k79m4g3gtjq1xr4plu Z38914 0 89385 309105 296733 2026-09-05T18:21:44Z YoshiRulz 10156 Use requested language for label lookup 309105 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z38914" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z38913", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z38913K4" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z36270", "Z36270K1": { "Z1K1": "Z18", "Z18K1": "Z38913K1" }, "Z36270K2": { "Z1K1": "Z18", "Z18K1": "Z38913K4" } } }, { "Z1K1": "Z7", "Z7K1": "Z37870", "Z37870K1": { "Z1K1": "Z18", "Z18K1": "Z38913K1" }, "Z37870K2": { "Z1K1": "Z6092", "Z6092K1": "P101" }, "Z37870K3": { "Z1K1": "Z18", "Z18K1": "Z38913K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "field of works-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } r0xy8lp1vg412y0cyhi2pyy3l173jc1 Talk:Z38916 1 89789 309098 298458 2026-09-05T18:13:22Z YoshiRulz 10156 /* This won't work */ Reply 309098 wikitext text/x-wiki == This won't work == This function uses a "verb tense" field to indicate the temporal aspect of the sentence ("is" versus "was" in the English implementation), but this doesn't work cross-language. Spanish, for example, has two indicative tenses used when speaking about the past (the preterite and the imperfect), while Chichewa has different forms for "recent past" and "remote past", and verbs in Mandarin Chinese don't have a temporal aspect at all, instead relying on other parts of the sentence to indicate time. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 21:48, 11 August 2026 (UTC) :@[[User:Carnildo|Carnildo]] Thanks for the feedback! I am currently using {{Z|Z6091}} to generate multiple options (e.g., past continuous, past imperfect) and let different language implementations choose how to map them. Considering your point, we could potentially map 'present tense' to 'recent present' or 'recent past' (or vice versa). I'm currently labeling this field 'tense'—what would you suggest instead? 'Verb form' or 'Verb tense and aspect'? [[User:Jsamwrites|John Samuel]] 22:05, 11 August 2026 (UTC) ::I don't think a universal mapping is possible. For example, in Spanish, you'd usually want to use the preterite when describing someone like Leonardo da Vinci, but occasionally, you'd want the imperfect instead -- and neither option indicates whether the Chichewa version should use the "recent past tense" or the "distant past tense". ::The best term for the field would probably be "temporal aspect", but you'd need to consult a computational linguist to find out if there's a language-independent way of encoding it -- I'm just a computer programmer. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:31, 12 August 2026 (UTC) :::Thanks for this @[[User:Carnildo|Carnildo]]. I'm watching this conversation, because it will definitely be an interesting challenge to get right. As you said elsewhere "Speaking about the past is hard." I prefer not trying to write too many articles about the past yet, until we've figured out the present. But I am keen to experiment with past-supporting functions. My approach at a similar function [[Z38757]] was just to give the function access to the item, and let each language decide whether their "alive/dead" status mattered to the NLG output. In theory a particular language could also check dates in the qualifiers of those occupation statements to see if they were "recent" or "distant" etc. Even for a living person in English, the tense could change if the occupation is no longer pursued. On the other hand, I have experimented with splitting off [[Z37104]] from [[Z36218]] to separate functions which is similar to the "verb tense" approach here, but defines less clearly when the past tense function should be used. I still hope it might work, because when languages don't care about time, they can just call the mainline function, and when they care in interesting and complex ways, they can access all the data they want to make that decision from the WD item. In a similar way, you mentioned that Spanish would need to work hard to determine the correct "is", even in the present tense. But I don't see that as a fundamental blocker, just a complexity for the Spanish implementation. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:23, 12 August 2026 (UTC) ::::Thanks @[[User:Carnildo|Carnildo]] for your reply. I agree with your proposal and changed 'tense' to 'temporal aspect'. This function fetches data from a Wikidata item, meaning that Spanish (and other languages, including English—considering the example mentioned by @[[User:99of9|99of9]]) may need to consult additional information, such as date of birth or death, to write a more apt implementation. [[User:Jsamwrites|John Samuel]] 06:45, 12 August 2026 (UTC) :::::It doesn't matter what you name it. You're putting the responsibility on the caller to provide a single value which is correct in every language, which is impossible.<br>Per [[WF:Type_proposals/Simple_temporal_entity#c-YoshiRulz-20260901203000-Dv103-20251211074400|my comment here]], I think you should simply pass the relevant date(s), or the Statements/Items containing them, to the language-specific Functions. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 18:13, 5 September 2026 (UTC) ::::The only real advantage of the function-split technique is that it lets you handle the easier case (present indicative) without worrying about the harder case. It doesn't make the harder case any easier. ::::To take a couple of lightly-edited sentences from the Spanish Wikipedia article on Andorra that might use Z37104, in English, they'd be: ::::* "The first commercial radio transmitter in Andorra '''was''' Radio Andorra." ::::* "The population of Andorra in 2025 '''was''' 87,303 inhabitants." ::::But in Spanish, they are: ::::* "La primera emisora de radio comercial en Andorra '''fue''' Radio Andorra." ::::* "La población de Andorra en 2025 '''era''' de 87 303 habitantes." ::::You could probably cover the most common cases through semantic analysis ("population was" describes a condition of the past, so it uses "era"; Radio Andorra has stopped broadcasting, so it uses "fue"), but it gets quite complicated. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 07:20, 12 August 2026 (UTC) dcvrc4vir5y82bupq4wujra0c0tsq7f 309100 309098 2026-09-05T18:14:13Z YoshiRulz 10156 Add to category 309100 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] == This won't work == This function uses a "verb tense" field to indicate the temporal aspect of the sentence ("is" versus "was" in the English implementation), but this doesn't work cross-language. Spanish, for example, has two indicative tenses used when speaking about the past (the preterite and the imperfect), while Chichewa has different forms for "recent past" and "remote past", and verbs in Mandarin Chinese don't have a temporal aspect at all, instead relying on other parts of the sentence to indicate time. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 21:48, 11 August 2026 (UTC) :@[[User:Carnildo|Carnildo]] Thanks for the feedback! I am currently using {{Z|Z6091}} to generate multiple options (e.g., past continuous, past imperfect) and let different language implementations choose how to map them. Considering your point, we could potentially map 'present tense' to 'recent present' or 'recent past' (or vice versa). I'm currently labeling this field 'tense'—what would you suggest instead? 'Verb form' or 'Verb tense and aspect'? [[User:Jsamwrites|John Samuel]] 22:05, 11 August 2026 (UTC) ::I don't think a universal mapping is possible. For example, in Spanish, you'd usually want to use the preterite when describing someone like Leonardo da Vinci, but occasionally, you'd want the imperfect instead -- and neither option indicates whether the Chichewa version should use the "recent past tense" or the "distant past tense". ::The best term for the field would probably be "temporal aspect", but you'd need to consult a computational linguist to find out if there's a language-independent way of encoding it -- I'm just a computer programmer. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:31, 12 August 2026 (UTC) :::Thanks for this @[[User:Carnildo|Carnildo]]. I'm watching this conversation, because it will definitely be an interesting challenge to get right. As you said elsewhere "Speaking about the past is hard." I prefer not trying to write too many articles about the past yet, until we've figured out the present. But I am keen to experiment with past-supporting functions. My approach at a similar function [[Z38757]] was just to give the function access to the item, and let each language decide whether their "alive/dead" status mattered to the NLG output. In theory a particular language could also check dates in the qualifiers of those occupation statements to see if they were "recent" or "distant" etc. Even for a living person in English, the tense could change if the occupation is no longer pursued. On the other hand, I have experimented with splitting off [[Z37104]] from [[Z36218]] to separate functions which is similar to the "verb tense" approach here, but defines less clearly when the past tense function should be used. I still hope it might work, because when languages don't care about time, they can just call the mainline function, and when they care in interesting and complex ways, they can access all the data they want to make that decision from the WD item. In a similar way, you mentioned that Spanish would need to work hard to determine the correct "is", even in the present tense. But I don't see that as a fundamental blocker, just a complexity for the Spanish implementation. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:23, 12 August 2026 (UTC) ::::Thanks @[[User:Carnildo|Carnildo]] for your reply. I agree with your proposal and changed 'tense' to 'temporal aspect'. This function fetches data from a Wikidata item, meaning that Spanish (and other languages, including English—considering the example mentioned by @[[User:99of9|99of9]]) may need to consult additional information, such as date of birth or death, to write a more apt implementation. [[User:Jsamwrites|John Samuel]] 06:45, 12 August 2026 (UTC) :::::It doesn't matter what you name it. You're putting the responsibility on the caller to provide a single value which is correct in every language, which is impossible.<br>Per [[WF:Type_proposals/Simple_temporal_entity#c-YoshiRulz-20260901203000-Dv103-20251211074400|my comment here]], I think you should simply pass the relevant date(s), or the Statements/Items containing them, to the language-specific Functions. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 18:13, 5 September 2026 (UTC) ::::The only real advantage of the function-split technique is that it lets you handle the easier case (present indicative) without worrying about the harder case. It doesn't make the harder case any easier. ::::To take a couple of lightly-edited sentences from the Spanish Wikipedia article on Andorra that might use Z37104, in English, they'd be: ::::* "The first commercial radio transmitter in Andorra '''was''' Radio Andorra." ::::* "The population of Andorra in 2025 '''was''' 87,303 inhabitants." ::::But in Spanish, they are: ::::* "La primera emisora de radio comercial en Andorra '''fue''' Radio Andorra." ::::* "La población de Andorra en 2025 '''era''' de 87 303 habitantes." ::::You could probably cover the most common cases through semantic analysis ("population was" describes a condition of the past, so it uses "era"; Radio Andorra has stopped broadcasting, so it uses "fue"), but it gets quite complicated. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 07:20, 12 August 2026 (UTC) 4u5oceo499fam1bypy6mjccp1rn8kdc 309104 309100 2026-09-05T18:19:25Z YoshiRulz 10156 Add function tree 309104 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] {{Talk:Z39170}} == This won't work == This function uses a "verb tense" field to indicate the temporal aspect of the sentence ("is" versus "was" in the English implementation), but this doesn't work cross-language. Spanish, for example, has two indicative tenses used when speaking about the past (the preterite and the imperfect), while Chichewa has different forms for "recent past" and "remote past", and verbs in Mandarin Chinese don't have a temporal aspect at all, instead relying on other parts of the sentence to indicate time. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 21:48, 11 August 2026 (UTC) :@[[User:Carnildo|Carnildo]] Thanks for the feedback! I am currently using {{Z|Z6091}} to generate multiple options (e.g., past continuous, past imperfect) and let different language implementations choose how to map them. Considering your point, we could potentially map 'present tense' to 'recent present' or 'recent past' (or vice versa). I'm currently labeling this field 'tense'—what would you suggest instead? 'Verb form' or 'Verb tense and aspect'? [[User:Jsamwrites|John Samuel]] 22:05, 11 August 2026 (UTC) ::I don't think a universal mapping is possible. For example, in Spanish, you'd usually want to use the preterite when describing someone like Leonardo da Vinci, but occasionally, you'd want the imperfect instead -- and neither option indicates whether the Chichewa version should use the "recent past tense" or the "distant past tense". ::The best term for the field would probably be "temporal aspect", but you'd need to consult a computational linguist to find out if there's a language-independent way of encoding it -- I'm just a computer programmer. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:31, 12 August 2026 (UTC) :::Thanks for this @[[User:Carnildo|Carnildo]]. I'm watching this conversation, because it will definitely be an interesting challenge to get right. As you said elsewhere "Speaking about the past is hard." I prefer not trying to write too many articles about the past yet, until we've figured out the present. But I am keen to experiment with past-supporting functions. My approach at a similar function [[Z38757]] was just to give the function access to the item, and let each language decide whether their "alive/dead" status mattered to the NLG output. In theory a particular language could also check dates in the qualifiers of those occupation statements to see if they were "recent" or "distant" etc. Even for a living person in English, the tense could change if the occupation is no longer pursued. On the other hand, I have experimented with splitting off [[Z37104]] from [[Z36218]] to separate functions which is similar to the "verb tense" approach here, but defines less clearly when the past tense function should be used. I still hope it might work, because when languages don't care about time, they can just call the mainline function, and when they care in interesting and complex ways, they can access all the data they want to make that decision from the WD item. In a similar way, you mentioned that Spanish would need to work hard to determine the correct "is", even in the present tense. But I don't see that as a fundamental blocker, just a complexity for the Spanish implementation. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 03:23, 12 August 2026 (UTC) ::::Thanks @[[User:Carnildo|Carnildo]] for your reply. I agree with your proposal and changed 'tense' to 'temporal aspect'. This function fetches data from a Wikidata item, meaning that Spanish (and other languages, including English—considering the example mentioned by @[[User:99of9|99of9]]) may need to consult additional information, such as date of birth or death, to write a more apt implementation. [[User:Jsamwrites|John Samuel]] 06:45, 12 August 2026 (UTC) :::::It doesn't matter what you name it. You're putting the responsibility on the caller to provide a single value which is correct in every language, which is impossible.<br>Per [[WF:Type_proposals/Simple_temporal_entity#c-YoshiRulz-20260901203000-Dv103-20251211074400|my comment here]], I think you should simply pass the relevant date(s), or the Statements/Items containing them, to the language-specific Functions. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 18:13, 5 September 2026 (UTC) ::::The only real advantage of the function-split technique is that it lets you handle the easier case (present indicative) without worrying about the harder case. It doesn't make the harder case any easier. ::::To take a couple of lightly-edited sentences from the Spanish Wikipedia article on Andorra that might use Z37104, in English, they'd be: ::::* "The first commercial radio transmitter in Andorra '''was''' Radio Andorra." ::::* "The population of Andorra in 2025 '''was''' 87,303 inhabitants." ::::But in Spanish, they are: ::::* "La primera emisora de radio comercial en Andorra '''fue''' Radio Andorra." ::::* "La población de Andorra en 2025 '''era''' de 87 303 habitantes." ::::You could probably cover the most common cases through semantic analysis ("population was" describes a condition of the past, so it uses "era"; Radio Andorra has stopped broadcasting, so it uses "fue"), but it gets quite complicated. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 07:20, 12 August 2026 (UTC) potrb8sawu491oni1c51817zs518jys Talk:Z29591 1 90037 308934 305825 2026-09-05T13:59:37Z YoshiRulz 10156 Add function tree and preview table 308934 wikitext text/x-wiki [[Category:Semantic_fragments_needing_explicit_arguments]] {{Talk:Z37068}} {{#function:Z40885|{{PAGENAME}}|Z29597|Q319{{!}}Q12935276{{!}}Q634|{{int:lang}}}} == Attributive nouns == There's a problem with how this function is used, both in test cases and on Abstract Wikipedia. English grammar permits "attributive nouns" -- that is, nouns used as if they were adjectives. See, for example, most of the English test cases here. This doesn't work in other languages. In English, "the geography student" and "the tall student" have the same structure, and pluralize as "the geography students" and "the tall students" respectively. This doesn't happen in Spanish, where you would write "el estudiante de geografía" and "el estudiante alto", with plurals "los estudiantes de geografía" and "los estudiantes altos" -- note that "de geografía" does ''not'' inflect for number (or gender), while "alto" does. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 01:16, 14 August 2026 (UTC) : [[Z40336]] and [[Z40338]]? I picked slightly different values to ensure Lexemes exist, which means I've got "geography teacher" which should be represented with a [[Z32962]](..., {{Q|100709106}}, ...) fragment instead, but it demonstrates the problem with this fragment. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:40, 28 August 2026 (UTC) ::I've expanded that with another four test cases covering the most common situations. If we ever get an implementation, it'll need another four to cover meaning-changing adjectives ("alta casa" = "high-class house" vs. "casa alta" = "tall house"), plus ten to cover plurals (even if the English version of the function is restricted to the singular, there are concepts (such as "vacation") that are singular in English, but plural in Spanish). [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 05:44, 29 August 2026 (UTC) :::re: [[w:en:Spanish adjectives#Words that change meaning]], I went through the words listed there on enwp, and none of their corresponding Lexemes have anything to indicate the two uses. I'm guessing the way you would model it is with {{P|5713}}=Q12259986/Q7233569, but you should seek consensus on [[d:WD:Lexicographical_data/Documentation/Languages/es/modeling|the modelling page]]. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 14:16, 29 August 2026 (UTC) aqh3caezmh4zpr24agt97xq6fyyfos9 Wikifunctions:Status updates/2026-08-20 4 91050 308935 304803 2026-09-05T13:59:59Z 테스트 위키 102116 308935 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = <translate><!--T:1--> Previous update</translate> | prev = 2026-08-13 | nextlabel = <translate><!--T:2--> Next update</translate> | next = 2026-08-28 }} <translate> === Mayors and the North === <!--T:3--> <!--T:32--> Today I will discuss two arguments by academic authors regarding the feasibility of Abstract Wikipedia: one by linguist Mark Dingemanse, who [<tvar name="1">https://ideophone.org/concrete-reasons-to-be-skeptical-about-an-abstract-wikipedia/</tvar> discusses the term ''mayor''], and the other by Michael Falk, who [<tvar name="2">https://link.springer.com/article/10.1007/s00146-026-02899-w</tvar> discusses the term ''north'']. <!--T:4--> The term ''mayor'', and many other offices such as ''duke'', ''king,'' or ''emperor'', can be difficult to translate between different languages. That’s one reason why the word for ''emperor,'' even within related European languages, is sometimes translated to ''tsar'' or ''kaiser'', and sometimes not at all. <!--T:5--> But let’s stick with ''mayor'' for now. Dingemanse states correctly that in German this may or may not be translated with ''Bürgermeister'' or ''Oberbürgermeister'', or in Spanish with ''alcalde'', or in Samoan ''pulenu’u''. But ''alcalde'' may also carry some of the meanings of the word ''judge'' in some contexts, and ''pulenu’u'' is even more nuanced. 천안문 사태 <!--T:6--> Given how complex these terms are, the solution is no surprise: just don’t translate them. English Wikipedia uses both ''pulenu’u'' and ''alcalde'', sometimes with an explanation:</translate> <blockquote><translate><!--T:7--> “In American Samoa, each village is governed by a <tvar name="1">''pulenu'u''</tvar> (the equivalent of a mayor)” ([[<tvar name="2">:en:List of United States cities by population density</tvar>|source]])</translate></blockquote> <translate><!--T:8--> And sometimes without:</translate> <blockquote><translate><!--T:9--> “Until 31 January 2019, the pulenu’u of Nofoali'i was Otemai Liu Ausage; however, he was terminated by the Samoan government for speaking out against it.” ([[<tvar name="1">:en:Nofoali%27i</tvar>|source]])</translate></blockquote> <translate><!--T:10--> The same for ''alcalde'', which is used with:</translate> <blockquote><translate><!--T:11--> “The following is a list of mayors (''alcaldes'') of Lima” ([[<tvar name="1">:en:List of mayors of Lima</tvar>|source]])</translate></blockquote> <translate><!--T:12--> Or without explanations:</translate> <blockquote><translate><!--T:13--> “The city has officially been known as San Francisco since 1847, when Washington Allon Bartlett, then serving as the city's alcalde, renamed it from Yerba Buena“ ([[<tvar name="1">:en:San Francisco#Etymology</tvar>|source]])</translate></blockquote> <translate><!--T:14--> Both patterns will be possible in Abstract Wikipedia. In addition, one can always link to the article for ''[[<tvar name="1">:en:Alcalde</tvar>|alcalde]]''. <!--T:15--> Terms like ''[[<tvar name="1">:en:wikt:alcalde#English</tvar>|alcalde]]'', just as ''[[<tvar name="2">:en:wikt:tsar#English</tvar>|tsar]]'' or ''[[<tvar name="3">:en:wikt:tenno#English</tvar>|tenno]]'', easily become loanwords and can often just be used directly. Note that I link to the respective ''English word'' in Wiktionary. Loanwords might be a boring solution. But we’re writing encyclopedia articles. Many of our editorial decisions tend toward what is boring, and that’s OK — I would even say it's expected. <!--T:16--> But it gets even better. Dingemanse is right that it can be very difficult and tricky to translate these terms. Imagine if you were asked to translate a sentence like ''“Stubbs was mayor.”'' Even for a human, that’s impossible without more context. What we need to know is, who does ''“Stubbs”'' refer to? What does ''“mayor”'' refer to? For some languages we need to know if Stubbs is male or female. For some languages we may need to know their marital status. And for some languages it may matter that [[<tvar name="1">:en:Stubbs (cat)</tvar>|Stubbs is not a human]]. If only we had a large knowledge graph of the world where we could look this information up, providing language independent identifiers for such concepts as Stubbs or mayors. <!--T:17--> Here’s the thing: Abstract Wikipedia is not about translating. And we do have a [[<tvar name="1">:d:</tvar>|large knowledge graph of the world]]. We can programmatically access relevant information about [[<tvar name="2">:d:Q7627362#P39</tvar>|Stubbs]], and we can learn more about Stubb’s [[<tvar name="3">:d:Q78802372</tvar>|exact role]]. For roles such as the [[<tvar name="4">:d:Q795295</tvar>|mayor of San Francisco]], which started this discussion, we can indeed find labels in dozens of languages, helping us to know that in German it is indeed ''Bürgermeister'', and in Spanish indeed ''alcalde''. The item for ''[[<tvar name="5">:d:Q30185</tvar>|mayor]]'' has labels and Lexemes in dozens of languages (unfortunately not in Samoan yet). <!--T:18--> In Abstract Wikipedia we do not translate from one language to another. This is something I learned from talking with Dingemanse. My understanding of the knowledge graph as fully language-independent was flawed. Language creates constraints and puts forces on the graph, sometimes requiring nodes which wouldn’t be there otherwise. In Abstract Wikipedia, we have functions the community creates and controls on Wikifunctions, using data and structured knowledge the community creates and controls from Wikidata, to refer to exactly the right concept from this richer graph and then retrieve the right terms for each language. <!--T:19--> I am not saying this is easy, or that this is already happening. Abstract Wikipedia is a brand new project, and the community is still figuring out things much more basic than what to call a particular mayor. But I hope it has become clear that this is not a big, unsolvable language mystery. In fact, I think this is a much easier problem than figuring out [[<tvar name="1">Special:MyLanguage/Wikifunctions:Status updates/2026-06-19</tvar>|when to use the definite article]]. <!--T:20--> Let’s move to the second argument, Michael Falk’s claim about the inability to translate the sentence ''“San Francisco is in Northern California”'' into Jaminjung. [[<tvar name="1">:en:Jaminjung language</tvar>|Jaminjung]] is one of a small number of languages that reportedly don’t have cardinal directions such as North and South, but instead describe directions as “upriver” or “downriver”. <!--T:21--> Unfortunately, there is no Wikipedia in Jaminjung, so we cannot just check Wikipedia to see how this challenge is being resolved. I am certain that it is possible to talk in Jaminjung about Northern California. That is not just a challenge for Abstract Wikipedia, that’s already a challenge for Wikipedia itself as well. So if there is already any Wikipedia with a language that has no cardinal directions, I would be very interested. I honestly have no idea if this is the case. <!--T:22--> Without that, one can only guess how native speakers in that language would phrase such knowledge. How would they refer to Northern California? How would they distinguish the two Koreas? How would they say that China is in the East of Asia? <!--T:23--> What I don’t believe is that it is impossible to make such sentences in such a language. I am a strong believer in the '''commensurability of natural languages''': everything that can be expressed in one language can be expressed in any other language. <!--T:24--> If there are exceptions to this rule, they won’t be found within the genre of encyclopedic articles, but more likely in forms like poetry or music lyrics. And one of the reasons that Abstract Wikipedia has a good chance of working is that it is restricted to encyclopedic texts. <!--T:25--> By the way, the commensurability of natural languages does not imply that the meaning of every word from a given language can be represented with single words in every other language. Words such as ''sibling'' [[<tvar name="1">:en:Accidental gap#Semantic gaps</tvar>|don’t exist in all languages]], but may need to be translated by phrases such as ''brother or sister'' (English, on the other hand, does not have a superordinate term to capture ''uncle or aunt''). <!--T:26--> In the end, the riddle of how to refer to Northern California in Jaminjung can be answered in the same way as the problem of mayors: Wikidata has an item for [[<tvar name="1">:d:Q1066807</tvar>|Northern California]]; thus, we can refer to that meaning in a language independent way, calling it inside the system Q1066807. And then we can write functions that turn this language-independent reference into natural language phrases which in turn can be used to compose sentences, which in turn can be used to compose paragraphs, which in turn can be used to make knowledge available in many different languages. <!--T:27--> I want to thank both Mark Dingemanse and Michael Falk, who saw and commented on early drafts of this text and gave feedback to it. The many improvements are theirs, but this publication does not mean they approve this text. === Recent Changes in the software === <!--T:28--> <!--T:33--> This week, we fixed an issue with the display of warnings on Wikifunctions that didn't get the labels correctly for the keys some of the time (<tvar name="1">[[:phab:T435214|T435214]]</tvar>). We also adjusted the front-end code to support building and using more complex inline Types. This will fix two community-filed issues (<tvar name="2">[[:phab:T433745|T433745]]</tvar> and <tvar name="3">[[:phab:T417266|T417266]]</tvar>) and possibly others. We also improved the diffing system to show re-ordering edits better (<tvar name="4">[[:phab:T338250|T338250]]</tvar>) and we fixed a bug where integrated abstract articles would show without the code to display references correctly. <!--T:29--> In addition, we made two changes in the orchestrator which should make complex Functions like those for NLGs run more effectively and dependably. We deferred stack creation to when Functions are called (<tvar name="1">[[:phab:T428475|T428475]]</tvar>), to improve scope attachment, and we now explicitly model closures (<tvar name="2">[[:phab:T433444|T433444]]</tvar>). We also adjusted how the WASM security layer polls the code executors, which should speed up the loading and running of Python code especially. === Fresh Functions weekly: 122 new Functions === <!--T:30--> <!--T:34--> This week we had 122 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!</translate> * {{Z|Z39091}} * {{Z|Z39092}} * {{Z|Z39095}} * {{Z|Z39101}} * {{Z|Z39106}} * {{Z|Z39108}} * {{Z|Z39110}} * {{Z|Z39114}} * {{Z|Z39121}} * {{Z|Z39123}} * {{Z|Z39140}} * {{Z|Z39146}} * {{Z|Z39150}} * {{Z|Z39157}} * {{Z|Z39158}} * {{Z|Z39163}} * {{Z|Z39167}} * {{Z|Z39170}} * {{Z|Z39173}} * {{Z|Z39177}} * {{Z|Z39181}} * {{Z|Z39185}} * {{Z|Z39191}} * {{Z|Z39194}} * {{Z|Z39197}} * {{Z|Z39200}} * {{Z|Z39203}} * {{Z|Z39209}} * {{Z|Z39214}} * {{Z|Z39219}} * {{Z|Z39229}} * {{Z|Z39232}} * {{Z|Z39235}} * {{Z|Z39238}} * {{Z|Z39241}} * {{Z|Z39247}} * {{Z|Z39250}} * {{Z|Z39253}} * {{Z|Z39256}} * {{Z|Z39259}} * {{Z|Z39262}} * {{Z|Z39265}} * {{Z|Z39268}} * {{Z|Z39271}} * {{Z|Z39277}} * {{Z|Z39280}} * {{Z|Z39283}} * {{Z|Z39286}} * {{Z|Z39289}} * {{Z|Z39321}} * {{Z|Z39332}} * {{Z|Z39335}} * {{Z|Z39339}} * {{Z|Z39342}} * {{Z|Z39346}} * {{Z|Z39350}} * {{Z|Z39351}} * {{Z|Z39360}} * {{Z|Z39362}} * {{Z|Z39368}} * {{Z|Z39371}} * {{Z|Z39375}} * {{Z|Z39385}} * {{Z|Z39388}} * {{Z|Z39395}} * {{Z|Z39399}} * {{Z|Z39403}} * {{Z|Z39406}} * {{Z|Z39411}} * {{Z|Z39413}} * {{Z|Z39422}} * {{Z|Z39425}} * {{Z|Z39430}} * {{Z|Z39437}} * {{Z|Z39453}} * {{Z|Z39459}} * {{Z|Z39466}} * {{Z|Z39467}} * {{Z|Z39473}} * {{Z|Z39478}} * {{Z|Z39481}} * {{Z|Z39486}} * {{Z|Z39489}} * {{Z|Z39494}} * {{Z|Z39498}} * {{Z|Z39506}} * {{Z|Z39523}} * {{Z|Z39531}} * {{Z|Z39534}} * {{Z|Z39537}} * {{Z|Z39542}} * {{Z|Z39544}} * {{Z|Z39564}} * {{Z|Z39565}} * {{Z|Z39574}} * {{Z|Z39580}} * {{Z|Z39586}} * {{Z|Z39589}} * {{Z|Z39593}} * {{Z|Z39595}} * {{Z|Z39599}} * {{Z|Z39603}} * {{Z|Z39608}} * {{Z|Z39610}} * {{Z|Z39612}} <translate><!--T:31--> A [<tvar name="1">https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest</tvar> complete list of all functions sorted by when they were created] is available.</translate> [[Category:Status updates{{#translation:}}|2026-08-20]] 3c5f7bdd4t0dbxsr3syjvzvjamgcjhm 308936 308935 2026-09-05T14:00:07Z Enbi 102060 Undid edits by [[Special:Contribs/테스트 위키|테스트 위키]] ([[User talk:테스트 위키|talk]]) to last version by Sannita (WMF) 308936 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = <translate><!--T:1--> Previous update</translate> | prev = 2026-08-13 | nextlabel = <translate><!--T:2--> Next update</translate> | next = 2026-08-28 }} <translate> === Mayors and the North === <!--T:3--> <!--T:32--> Today I will discuss two arguments by academic authors regarding the feasibility of Abstract Wikipedia: one by linguist Mark Dingemanse, who [<tvar name="1">https://ideophone.org/concrete-reasons-to-be-skeptical-about-an-abstract-wikipedia/</tvar> discusses the term ''mayor''], and the other by Michael Falk, who [<tvar name="2">https://link.springer.com/article/10.1007/s00146-026-02899-w</tvar> discusses the term ''north'']. <!--T:4--> The term ''mayor'', and many other offices such as ''duke'', ''king,'' or ''emperor'', can be difficult to translate between different languages. That’s one reason why the word for ''emperor,'' even within related European languages, is sometimes translated to ''tsar'' or ''kaiser'', and sometimes not at all. <!--T:5--> But let’s stick with ''mayor'' for now. Dingemanse states correctly that in German this may or may not be translated with ''Bürgermeister'' or ''Oberbürgermeister'', or in Spanish with ''alcalde'', or in Samoan ''pulenu’u''. But ''alcalde'' may also carry some of the meanings of the word ''judge'' in some contexts, and ''pulenu’u'' is even more nuanced. <!--T:6--> Given how complex these terms are, the solution is no surprise: just don’t translate them. English Wikipedia uses both ''pulenu’u'' and ''alcalde'', sometimes with an explanation:</translate> <blockquote><translate><!--T:7--> “In American Samoa, each village is governed by a <tvar name="1">''pulenu'u''</tvar> (the equivalent of a mayor)” ([[<tvar name="2">:en:List of United States cities by population density</tvar>|source]])</translate></blockquote> <translate><!--T:8--> And sometimes without:</translate> <blockquote><translate><!--T:9--> “Until 31 January 2019, the pulenu’u of Nofoali'i was Otemai Liu Ausage; however, he was terminated by the Samoan government for speaking out against it.” ([[<tvar name="1">:en:Nofoali%27i</tvar>|source]])</translate></blockquote> <translate><!--T:10--> The same for ''alcalde'', which is used with:</translate> <blockquote><translate><!--T:11--> “The following is a list of mayors (''alcaldes'') of Lima” ([[<tvar name="1">:en:List of mayors of Lima</tvar>|source]])</translate></blockquote> <translate><!--T:12--> Or without explanations:</translate> <blockquote><translate><!--T:13--> “The city has officially been known as San Francisco since 1847, when Washington Allon Bartlett, then serving as the city's alcalde, renamed it from Yerba Buena“ ([[<tvar name="1">:en:San Francisco#Etymology</tvar>|source]])</translate></blockquote> <translate><!--T:14--> Both patterns will be possible in Abstract Wikipedia. In addition, one can always link to the article for ''[[<tvar name="1">:en:Alcalde</tvar>|alcalde]]''. <!--T:15--> Terms like ''[[<tvar name="1">:en:wikt:alcalde#English</tvar>|alcalde]]'', just as ''[[<tvar name="2">:en:wikt:tsar#English</tvar>|tsar]]'' or ''[[<tvar name="3">:en:wikt:tenno#English</tvar>|tenno]]'', easily become loanwords and can often just be used directly. Note that I link to the respective ''English word'' in Wiktionary. Loanwords might be a boring solution. But we’re writing encyclopedia articles. Many of our editorial decisions tend toward what is boring, and that’s OK — I would even say it's expected. <!--T:16--> But it gets even better. Dingemanse is right that it can be very difficult and tricky to translate these terms. Imagine if you were asked to translate a sentence like ''“Stubbs was mayor.”'' Even for a human, that’s impossible without more context. What we need to know is, who does ''“Stubbs”'' refer to? What does ''“mayor”'' refer to? For some languages we need to know if Stubbs is male or female. For some languages we may need to know their marital status. And for some languages it may matter that [[<tvar name="1">:en:Stubbs (cat)</tvar>|Stubbs is not a human]]. If only we had a large knowledge graph of the world where we could look this information up, providing language independent identifiers for such concepts as Stubbs or mayors. <!--T:17--> Here’s the thing: Abstract Wikipedia is not about translating. And we do have a [[<tvar name="1">:d:</tvar>|large knowledge graph of the world]]. We can programmatically access relevant information about [[<tvar name="2">:d:Q7627362#P39</tvar>|Stubbs]], and we can learn more about Stubb’s [[<tvar name="3">:d:Q78802372</tvar>|exact role]]. For roles such as the [[<tvar name="4">:d:Q795295</tvar>|mayor of San Francisco]], which started this discussion, we can indeed find labels in dozens of languages, helping us to know that in German it is indeed ''Bürgermeister'', and in Spanish indeed ''alcalde''. The item for ''[[<tvar name="5">:d:Q30185</tvar>|mayor]]'' has labels and Lexemes in dozens of languages (unfortunately not in Samoan yet). <!--T:18--> In Abstract Wikipedia we do not translate from one language to another. This is something I learned from talking with Dingemanse. My understanding of the knowledge graph as fully language-independent was flawed. Language creates constraints and puts forces on the graph, sometimes requiring nodes which wouldn’t be there otherwise. In Abstract Wikipedia, we have functions the community creates and controls on Wikifunctions, using data and structured knowledge the community creates and controls from Wikidata, to refer to exactly the right concept from this richer graph and then retrieve the right terms for each language. <!--T:19--> I am not saying this is easy, or that this is already happening. Abstract Wikipedia is a brand new project, and the community is still figuring out things much more basic than what to call a particular mayor. But I hope it has become clear that this is not a big, unsolvable language mystery. In fact, I think this is a much easier problem than figuring out [[<tvar name="1">Special:MyLanguage/Wikifunctions:Status updates/2026-06-19</tvar>|when to use the definite article]]. <!--T:20--> Let’s move to the second argument, Michael Falk’s claim about the inability to translate the sentence ''“San Francisco is in Northern California”'' into Jaminjung. [[<tvar name="1">:en:Jaminjung language</tvar>|Jaminjung]] is one of a small number of languages that reportedly don’t have cardinal directions such as North and South, but instead describe directions as “upriver” or “downriver”. <!--T:21--> Unfortunately, there is no Wikipedia in Jaminjung, so we cannot just check Wikipedia to see how this challenge is being resolved. I am certain that it is possible to talk in Jaminjung about Northern California. That is not just a challenge for Abstract Wikipedia, that’s already a challenge for Wikipedia itself as well. So if there is already any Wikipedia with a language that has no cardinal directions, I would be very interested. I honestly have no idea if this is the case. <!--T:22--> Without that, one can only guess how native speakers in that language would phrase such knowledge. How would they refer to Northern California? How would they distinguish the two Koreas? How would they say that China is in the East of Asia? <!--T:23--> What I don’t believe is that it is impossible to make such sentences in such a language. I am a strong believer in the '''commensurability of natural languages''': everything that can be expressed in one language can be expressed in any other language. <!--T:24--> If there are exceptions to this rule, they won’t be found within the genre of encyclopedic articles, but more likely in forms like poetry or music lyrics. And one of the reasons that Abstract Wikipedia has a good chance of working is that it is restricted to encyclopedic texts. <!--T:25--> By the way, the commensurability of natural languages does not imply that the meaning of every word from a given language can be represented with single words in every other language. Words such as ''sibling'' [[<tvar name="1">:en:Accidental gap#Semantic gaps</tvar>|don’t exist in all languages]], but may need to be translated by phrases such as ''brother or sister'' (English, on the other hand, does not have a superordinate term to capture ''uncle or aunt''). <!--T:26--> In the end, the riddle of how to refer to Northern California in Jaminjung can be answered in the same way as the problem of mayors: Wikidata has an item for [[<tvar name="1">:d:Q1066807</tvar>|Northern California]]; thus, we can refer to that meaning in a language independent way, calling it inside the system Q1066807. And then we can write functions that turn this language-independent reference into natural language phrases which in turn can be used to compose sentences, which in turn can be used to compose paragraphs, which in turn can be used to make knowledge available in many different languages. <!--T:27--> I want to thank both Mark Dingemanse and Michael Falk, who saw and commented on early drafts of this text and gave feedback to it. The many improvements are theirs, but this publication does not mean they approve this text. === Recent Changes in the software === <!--T:28--> <!--T:33--> This week, we fixed an issue with the display of warnings on Wikifunctions that didn't get the labels correctly for the keys some of the time (<tvar name="1">[[:phab:T435214|T435214]]</tvar>). We also adjusted the front-end code to support building and using more complex inline Types. This will fix two community-filed issues (<tvar name="2">[[:phab:T433745|T433745]]</tvar> and <tvar name="3">[[:phab:T417266|T417266]]</tvar>) and possibly others. We also improved the diffing system to show re-ordering edits better (<tvar name="4">[[:phab:T338250|T338250]]</tvar>) and we fixed a bug where integrated abstract articles would show without the code to display references correctly. <!--T:29--> In addition, we made two changes in the orchestrator which should make complex Functions like those for NLGs run more effectively and dependably. We deferred stack creation to when Functions are called (<tvar name="1">[[:phab:T428475|T428475]]</tvar>), to improve scope attachment, and we now explicitly model closures (<tvar name="2">[[:phab:T433444|T433444]]</tvar>). We also adjusted how the WASM security layer polls the code executors, which should speed up the loading and running of Python code especially. === Fresh Functions weekly: 122 new Functions === <!--T:30--> <!--T:34--> This week we had 122 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!</translate> * {{Z|Z39091}} * {{Z|Z39092}} * {{Z|Z39095}} * {{Z|Z39101}} * {{Z|Z39106}} * {{Z|Z39108}} * {{Z|Z39110}} * {{Z|Z39114}} * {{Z|Z39121}} * {{Z|Z39123}} * {{Z|Z39140}} * {{Z|Z39146}} * {{Z|Z39150}} * {{Z|Z39157}} * {{Z|Z39158}} * {{Z|Z39163}} * {{Z|Z39167}} * {{Z|Z39170}} * {{Z|Z39173}} * {{Z|Z39177}} * {{Z|Z39181}} * {{Z|Z39185}} * {{Z|Z39191}} * {{Z|Z39194}} * {{Z|Z39197}} * {{Z|Z39200}} * {{Z|Z39203}} * {{Z|Z39209}} * {{Z|Z39214}} * {{Z|Z39219}} * {{Z|Z39229}} * {{Z|Z39232}} * {{Z|Z39235}} * {{Z|Z39238}} * {{Z|Z39241}} * {{Z|Z39247}} * {{Z|Z39250}} * {{Z|Z39253}} * {{Z|Z39256}} * {{Z|Z39259}} * {{Z|Z39262}} * {{Z|Z39265}} * {{Z|Z39268}} * {{Z|Z39271}} * {{Z|Z39277}} * {{Z|Z39280}} * {{Z|Z39283}} * {{Z|Z39286}} * {{Z|Z39289}} * {{Z|Z39321}} * {{Z|Z39332}} * {{Z|Z39335}} * {{Z|Z39339}} * {{Z|Z39342}} * {{Z|Z39346}} * {{Z|Z39350}} * {{Z|Z39351}} * {{Z|Z39360}} * {{Z|Z39362}} * {{Z|Z39368}} * {{Z|Z39371}} * {{Z|Z39375}} * {{Z|Z39385}} * {{Z|Z39388}} * {{Z|Z39395}} * {{Z|Z39399}} * {{Z|Z39403}} * {{Z|Z39406}} * {{Z|Z39411}} * {{Z|Z39413}} * {{Z|Z39422}} * {{Z|Z39425}} * {{Z|Z39430}} * {{Z|Z39437}} * {{Z|Z39453}} * {{Z|Z39459}} * {{Z|Z39466}} * {{Z|Z39467}} * {{Z|Z39473}} * {{Z|Z39478}} * {{Z|Z39481}} * {{Z|Z39486}} * {{Z|Z39489}} * {{Z|Z39494}} * {{Z|Z39498}} * {{Z|Z39506}} * {{Z|Z39523}} * {{Z|Z39531}} * {{Z|Z39534}} * {{Z|Z39537}} * {{Z|Z39542}} * {{Z|Z39544}} * {{Z|Z39564}} * {{Z|Z39565}} * {{Z|Z39574}} * {{Z|Z39580}} * {{Z|Z39586}} * {{Z|Z39589}} * {{Z|Z39593}} * {{Z|Z39595}} * {{Z|Z39599}} * {{Z|Z39603}} * {{Z|Z39608}} * {{Z|Z39610}} * {{Z|Z39612}} <translate><!--T:31--> A [<tvar name="1">https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest</tvar> complete list of all functions sorted by when they were created] is available.</translate> [[Category:Status updates{{#translation:}}|2026-08-20]] 6rusx0mqxyl2r5azhd6lus7f51dfk7s Z39861 0 91261 308999 302433 2026-09-05T15:32:16Z YoshiRulz 10156 Added Z41202 to the approved list of test cases 308999 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z39861" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20342", "Z17K2": "Z39861K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月日" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "day" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z39862", "Z39863", "Z41202" ], "Z8K4": [ "Z14", "Z39867" ], "Z8K5": "Z39861" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ローマ暦の月日を表示(日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Day of Roman year, Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1830", "Z31K2": [ "Z6", "月日" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ローマ暦の月日を、日本語の表記で文字列として返す。" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Returns a Day of Roman year (month and day) as a string formatted in Japanese." } ] } } no3g0ebly50701v5mynzop8gjiu8jz8 Z39867 0 91271 309001 303525 2026-09-05T15:33:28Z YoshiRulz 10156 Refactor 309001 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z39867" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z39861", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z16230", "Z16230K1": { "Z1K1": "Z7", "Z7K1": "Z20343", "Z20343K1": { "Z1K1": "Z18", "Z18K1": "Z39861K1" } } } }, "Z10000K2": "月" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z20388", "Z20388K1": { "Z1K1": "Z18", "Z18K1": "Z39861K1" } } }, "Z10000K2": "日" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ローマ暦年の日を表示、日本語、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Day of Roman year, Japanese Comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2gx4dcz2mmcm06i9ipwlbevg33ltzbs 309002 309001 2026-09-05T15:34:23Z YoshiRulz 10156 Handle missing day 309002 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z39867" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z39861", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z16230", "Z16230K1": { "Z1K1": "Z7", "Z7K1": "Z20343", "Z20343K1": { "Z1K1": "Z18", "Z18K1": "Z39861K1" } } } }, "Z10000K2": "月" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z26237", "Z26237K1": { "Z1K1": "Z18", "Z18K1": "Z39861K1" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z20388", "Z20388K1": { "Z1K1": "Z18", "Z18K1": "Z39861K1" } } }, "Z10000K2": "日" }, "Z802K3": "Z11853" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "ローマ暦年の日を表示、日本語、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Day of Roman year, Japanese Comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3nqy9zedcgo36gg3ytdyywtc5j1vqz7 Z39869 0 91274 308978 302360 2026-09-05T14:37:34Z 鈴音雨 101019 lighter 308978 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z39869" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z39859", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z41192", "Z41192K1": { "Z1K1": "Z7", "Z7K1": "Z24948", "Z24948K1": { "Z1K1": "Z18", "Z18K1": "Z39859K1" } } }, { "Z1K1": "Z7", "Z7K1": "Z39861", "Z39861K1": { "Z1K1": "Z7", "Z7K1": "Z24936", "Z24936K1": { "Z1K1": "Z18", "Z18K1": "Z39859K1" } } } ], "Z12899K2": "" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "日付(jawiki)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "date (jawiki), compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bq7x74cjafhsuzv36tgnbin27c8wptu Talk:Z25091 1 91868 309018 308007 2026-09-05T16:03:47Z YoshiRulz 10156 Expand this function's config in function tree 309018 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_dates_and_times]] {{show function tree|hardcoded=Z25721;z25737;Z25730;Z25091;z25116;Z25094}} {{#function:Z40885|{{PAGENAME}}|Z25116|12:34:56|{{int:lang}}}} 52r1chsxuaziqhbbx2htc2liqrlro5o Talk:Z20241 1 91877 308991 307582 2026-09-05T15:22:52Z YoshiRulz 10156 Add function tree 308991 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_dates_and_times]] <onlyinclude>{{show function tree|hardcoded=Z35331;z35336;Z40290;Z20241;z20240;Z22920}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z20240|2001|{{int:lang}}}} 9m8dzk4vnmdq1oqk4tae9yn3blpkq87 Talk:Z14280 1 91880 309017 307574 2026-09-05T15:57:50Z YoshiRulz 10156 Add function tree 309017 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_quantities_and_numbers]] <onlyinclude>{{show function tree|hardcoded=Z14280;z14302;Z13713}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z14302|1234567|{{int:lang}}}} k47sonn9njmq24kuku0deoz1qepy1k3 Talk:Z25721 1 91884 309021 304447 2026-09-05T16:25:26Z YoshiRulz 10156 Add function tree 309021 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_dates_and_times]] <onlyinclude>{{show function tree|hardcoded=Z35327;Z29036;Z25721;z25737;Z25730;Z20780;z20779;Z20788}}</onlyinclude> k2cqd27oqiklltakmaer7d47l0azami Talk:Z21956 1 91886 308989 307576 2026-09-05T15:19:07Z YoshiRulz 10156 Add function tree 308989 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_quantities_and_numbers]] <onlyinclude>{{show function tree|hardcoded=Z33219;Z21956;z25440;Z21949}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z25440|1.25|{{int:lang}}}} n1e9xei7kjwusql4rh0lb122ny83qqc Talk:Z40065 1 91904 309119 307581 2026-09-05T18:41:31Z YoshiRulz 10156 Add function tree 309119 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_geocoordinates]] <onlyinclude>{{show function tree|hardcoded=Z40065;z40064;Z38103}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z40064|48.858297, 2.29448|{{int:lang}}}} px7lzi6uexby64b7v69z1sb07pks7ma Talk:Z40302 1 92075 308982 307618 2026-09-05T14:46:53Z YoshiRulz 10156 Add function tree 308982 wikitext text/x-wiki [[Category:Multilingual_display_functions]] <onlyinclude>{{show function tree|hardcoded=Z40302;z40311;Z40307;Z21329}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z40311|de-at|{{int:lang}}}} 8oqe2rnegqic9hvrjzlmnff6bvo22mb Talk:Z29597 1 92102 308927 305056 2026-09-05T13:53:52Z YoshiRulz 10156 Point at rich text version 308927 wikitext text/x-wiki #REDIRECT [[Talk:Z37068]] 2ofglqaxm5a08la3upejrr5p2i8vtmv Talk:Z37068 1 92115 308930 305107 2026-09-05T13:58:15Z YoshiRulz 10156 Add function tree 308930 wikitext text/x-wiki [[Category:Semantic_fragments_needing_explicit_arguments]] <onlyinclude>{{show function tree|hardcoded=Z37068;Z29591;z29597;Z29596}}</onlyinclude> bi8dzd34u20tu1he5tcg5nu1pp61j6v Talk:Z32962 1 92116 309068 305109 2026-09-05T17:40:12Z YoshiRulz 10156 Add function tree 309068 wikitext text/x-wiki [[Category:Semantic_fragments_needing_explicit_arguments]] <onlyinclude>{{show function tree|hardcoded=Z32962;Z26039;z26043;Z33420}}</onlyinclude> 23atjyw7caoz5auzpy95xtvnioyslfa Talk:Z27173 1 92163 308920 306142 2026-09-05T13:22:41Z YoshiRulz 10156 Add function tree and preview table 308920 wikitext text/x-wiki [[Category:NLG_functions_returning_untagged_Strings]] [[Category:Semantic_fragments_needing_explicit_arguments]] <onlyinclude>{{show function tree|hardcoded=Z27173;z29628;Z29629}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z29628|Q23392{{!}}Q75271124{{!}}Q283|{{int:lang}}}} h20z9ckvfsvij3elgsbyqa3kg1dm0jc Talk:Z32297 1 92179 309117 306346 2026-09-05T18:33:59Z YoshiRulz 10156 Add function tree 309117 wikitext text/x-wiki [[Category:Multilingual_punctuation_and_text_formatting_functions]] [[Category:NLG_functions_returning_untagged_Strings]] <onlyinclude>{{show function tree|hardcoded=Z32308;Z32297;z32298;Z32276}}</onlyinclude> 3adxfs4k7jt85leelkrkncborkyu9ug Talk:Z37005 1 92215 309064 305330 2026-09-05T17:14:21Z YoshiRulz 10156 Add function tree and preview table 309064 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] {{Talk:Z39271}} {{#function:Z40885|{{PAGENAME}}|Z37017|Q283|{{int:lang}}}} qrg77tzu13svp8p4nuz48wj5em4ae4u Talk:Z37017 1 92219 309062 305334 2026-09-05T17:09:47Z YoshiRulz 10156 Point at rich text version 309062 wikitext text/x-wiki #REDIRECT [[Talk:Z39271]] srvsq7ztyioz541kfxzpzhi37xz0nmw Z40697 0 92613 308914 306878 2026-09-05T13:13:49Z YoshiRulz 10156 Fix typo 308914 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40697" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z40695", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z40695K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z40695K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z40695K2" } } } }, { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "(depicts)" }, { "Z1K1": "Z7", "Z7K1": "Z37289", "Z37289K1": { "Z1K1": "Z7", "Z7K1": "Z33024", "Z33024K1": { "Z1K1": "Z7", "Z7K1": "Z37747", "Z37747K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z40695K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60", "Z1360" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P180" } ] } }, "Z33024K2": { "Z1K1": "Z18", "Z18K1": "Z40695K2" } }, "Z37289K2": { "Z1K1": "Z18", "Z18K1": "Z40695K2" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z40695K2" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z40695K2" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z40695K2" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "depicts-sentence, Default Composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mufi7ghrptw9byc0n6exzi54hopkpiq Z40726 0 92650 309246 306985 2026-09-06T06:46:09Z Jsamwrites 938 309246 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40726" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z40726K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z40726K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z40726K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40726K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z40727" ], "Z8K5": "Z40726" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "package management system-sentence,en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } aqva8l88lb0sk4oe9qu1sbot5z6lyfd User talk:Wangyunfan 3 92740 309329 306974 2026-09-06T08:54:22Z Wangyunfan 101980 /* */ Reply 309329 wikitext text/x-wiki {{Welcome/lang|user=Wangyunfan|welcominguser=99of9|1=}} Please can you search to see if functions already exist? For example {{Z|Z40776}} looks like a duplicate of {{Z|Z10901}}. --[[User:99of9|99of9]] ([[User talk:99of9|talk]]) 10:01, 1 September 2026 (UTC) :Thanks for pointing that out, I was trying to create something simple and see how wikifunction works. I think the next time I am creating a function I will change the title and inputs of [[Z40776]] instead of creating a new one. Best wishes, [[User:Wangyunfan|Wangyunfan]] ([[User talk:Wangyunfan|talk]]) 08:54, 6 September 2026 (UTC) r7z4t03ji2dvsvc7naqio8ga6mghiha Talk:Z40804 1 92836 308965 308735 2026-09-05T14:26:59Z YoshiRulz 10156 Add to category 308965 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_quantities_and_numbers]] == Non-decimal currencies == How would I use this to display an amount in a non-decimal currency, such as [[w:£sd|£3 17s. 10<sup>1</sup>&#x2044;<sub>2</sub>d.]]? [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 23:30, 1 September 2026 (UTC) :hmm... Since it returns a {{Z|Z6}} rather than an {{Z|Z89}}, I feel this is quite difficult. --[[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) :Are there any examples of values in that format being included in Wikidata statements? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) ::[[d:Q645207]], built at a cost of £78,860 7s. 1d. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:12, 3 September 2026 (UTC) :::Well, honestly, I think the data on the Wikidata side is to blame here. Wouldn't a realistic approach be to consolidate everything into old pence, and introduce dedicated processing on the function side to apply mod 240 and mod 12 only when an old penny comes in? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 05:01, 5 September 2026 (UTC) ::::The penny wasn't the smallest unit of coinage either: the half penny and farthing (quarter of a penny) were minted on a regular basis, and half-farthing, one-third farthing, and one-quarter farthing coins were occasionally minted. If you want to consolidate to a single unit, it would need to be 1/12 of a farthing -- a unit that never actually existed. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 05:23, 5 September 2026 (UTC) o9qlk0678xv6n0tpmspilk3gptrs923 308975 308965 2026-09-05T14:33:49Z YoshiRulz 10156 Add function tree and preview table 308975 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_quantities_and_numbers]] <onlyinclude>{{show function tree|hardcoded=Z40804;z40803;Z40792;Z25356;Z25656;Z25362;z25634;Z25445}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z40803|20 $|{{int:lang}}}} == Non-decimal currencies == How would I use this to display an amount in a non-decimal currency, such as [[w:£sd|£3 17s. 10<sup>1</sup>&#x2044;<sub>2</sub>d.]]? [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 23:30, 1 September 2026 (UTC) :hmm... Since it returns a {{Z|Z6}} rather than an {{Z|Z89}}, I feel this is quite difficult. --[[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) :Are there any examples of values in that format being included in Wikidata statements? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) ::[[d:Q645207]], built at a cost of £78,860 7s. 1d. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:12, 3 September 2026 (UTC) :::Well, honestly, I think the data on the Wikidata side is to blame here. Wouldn't a realistic approach be to consolidate everything into old pence, and introduce dedicated processing on the function side to apply mod 240 and mod 12 only when an old penny comes in? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 05:01, 5 September 2026 (UTC) ::::The penny wasn't the smallest unit of coinage either: the half penny and farthing (quarter of a penny) were minted on a regular basis, and half-farthing, one-third farthing, and one-quarter farthing coins were occasionally minted. If you want to consolidate to a single unit, it would need to be 1/12 of a farthing -- a unit that never actually existed. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 05:23, 5 September 2026 (UTC) h29i2xss4fbehlivv6n3otps6fojy6w 308980 308975 2026-09-05T14:45:01Z YoshiRulz 10156 Extend function tree upwards 308980 wikitext text/x-wiki [[Category:Multilingual_display_functions_for_quantities_and_numbers]] <onlyinclude>{{show function tree|hardcoded=Z25326;Z40804;z40803;Z40792;Z25356;Z25656;Z25362;z25634;Z25445}}</onlyinclude> {{#function:Z40885|{{PAGENAME}}|Z40803|20 $|{{int:lang}}}} == Non-decimal currencies == How would I use this to display an amount in a non-decimal currency, such as [[w:£sd|£3 17s. 10<sup>1</sup>&#x2044;<sub>2</sub>d.]]? [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 23:30, 1 September 2026 (UTC) :hmm... Since it returns a {{Z|Z6}} rather than an {{Z|Z89}}, I feel this is quite difficult. --[[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) :Are there any examples of values in that format being included in Wikidata statements? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 23:40, 2 September 2026 (UTC) ::[[d:Q645207]], built at a cost of £78,860 7s. 1d. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 02:12, 3 September 2026 (UTC) :::Well, honestly, I think the data on the Wikidata side is to blame here. Wouldn't a realistic approach be to consolidate everything into old pence, and introduce dedicated processing on the function side to apply mod 240 and mod 12 only when an old penny comes in? [[User:鈴音雨|鈴音雨]] ([[User talk:鈴音雨|talk]]) 05:01, 5 September 2026 (UTC) ::::The penny wasn't the smallest unit of coinage either: the half penny and farthing (quarter of a penny) were minted on a regular basis, and half-farthing, one-third farthing, and one-quarter farthing coins were occasionally minted. If you want to consolidate to a single unit, it would need to be 1/12 of a farthing -- a unit that never actually existed. [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 05:23, 5 September 2026 (UTC) ssbsl1vb02eg73xljcxj093jg0ro7dj Z40836 0 92852 309241 307395 2026-09-06T05:56:08Z EJPPhilippines 9359 Added Z40839 to the approved list of implementations 309241 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40836" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z40836K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40836K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Philippine language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z40839" ], "Z8K5": "Z40836" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Philippine languages singular direct case marker" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ang", "si" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Gets the singular direct case marker in Philippine languages (e.g. Tagalog, Kapampangan) for a Wikidata item reference, based on whether it is a human or not" } ] } } keeo17fpr3n2tgg258aly019vbet4uw 309242 309241 2026-09-06T05:56:12Z EJPPhilippines 9359 Added Z40837 and Z40838 to the approved list of test cases 309242 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40836" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z40836K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40836K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Philippine language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z40837", "Z40838" ], "Z8K4": [ "Z14", "Z40839" ], "Z8K5": "Z40836" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Philippine languages singular direct case marker" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ang", "si" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Gets the singular direct case marker in Philippine languages (e.g. Tagalog, Kapampangan) for a Wikidata item reference, based on whether it is a human or not" } ] } } axmwgnqympnsr2tv76v9gf1oi84t5op Z969 0 92913 309132 307588 2026-09-05T18:54:21Z Ameisenigel 44 de 309132 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z969" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z869", "Z14K4": { "Z1K1": "Z6", "Z6K1": "Z969" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Built-in implementation of Reference from ZID string" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Referenz aus ZID-Zeichenkette, integrierte Implem." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3haddgsr06ylpxk3iodgi5jwu7xi3r8 Z869 0 92914 309124 307590 2026-09-05T18:43:38Z Ameisenigel 44 de 309124 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z869" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z869K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "string" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Zeichenkette" } ] } } ], "Z8K2": "Z9", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z969" ], "Z8K5": "Z869" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Reference from ZID string" }, { "Z1K1": "Z11", "Z11K1": "Z1430", "Z11K2": "Referenz aus ZID-Zeichenkette" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3ahkhmjvr5pesk498123mqznyilys04 Wikifunctions:Requests for deletions/Archive/2026/09 4 92939 309222 307700 2026-09-06T03:08:06Z SpBot 978 archiving 2 sections from [[Wikifunctions:Requests for deletions]] (after section [[Wikifunctions:Requests for deletions/Archive/2026/09#Z37707_and_Z37708|Z37707_and_Z37708]]) 309222 wikitext text/x-wiki {{Talkarchive}} == [[Z40306]], [[Z40308]] and [[Z40309]] == Sorry, I duplicated this one as [[Z40673]], also has its own tests and actually implementations. All three can be deleted. --[[User:Denny|Denny]] ([[User talk:Denny|talk]]) 11:28, 1 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 12:22, 1 September 2026 (UTC) :<small>This section was archived on a request by: <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 12:22, 1 September 2026 (UTC)</small> == [[Z37707]] and [[Z37708]] == Empty function, without title and meaningless test, also without title. These are the only contributions of [[User:Mmov9287]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 09:17, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) :<small>This section was archived on a request by: <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)</small> == [[Z31286]] and [[Z31287]] == Function without title and disconected implementation, also without title. Concatenating Name, "How Are You", "Hello,". These are the only contributions of [[User:Script7921]] [[User:HenkvD|HenkvD]] ([[User talk:HenkvD|talk]]) 11:08, 4 September 2026 (UTC) :Yes, I would recommend you delete these. :[[User:Script7921|Script7921]] ([[User talk:Script7921|talk]]) 11:09, 4 September 2026 (UTC) :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) :<small>This section was archived on a request by: <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)</small> :{{done}} <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC) :<small>This section was archived on a request by: <span style="font-family:monospace;font-weight:bold">[[User:Bunnypranav|<span style="color:#63b3ed">~/Bunny</span><span style="color:#2c5282">pranav</span>]]:&lt;[[User talk:Bunnypranav|<span style="color:#63b3ed">ping</span>]]&gt;</span> 11:14, 4 September 2026 (UTC)</small> i3gmzd3u1sikb6mev392aalded0jly5 Wikifunctions:Status updates/2026-09-03 4 93010 309020 308388 2026-09-05T16:20:21Z Arlo Barnes 1231 per talkpage 309020 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = <translate><!--T:1--> Previous update</translate> | prev = 2026-08-28 | nextlabel = <translate><!--T:2--> Next update</translate> | next = }} <translate> === 5,000 Functions, passing Z40000 === <!--T:3--> <!--T:23--> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. <!--T:4--> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. <!--T:5--> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? <!--T:6--> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. <!--T:7--> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. <!--T:8--> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. <!--T:9--> Having said that, there are [<tvar name="1">https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250</tvar> more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! <!--T:10--> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. === Recent Changes in the software === <!--T:11--> <!--T:24--> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles (<tvar name="1">[[:phab:T429214|T429214]]</tvar>). <!--T:12--> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext (<tvar name="1">[[:phab:T434141|T434141]]</tvar>). <!--T:13--> We also added [[<tvar name="1">Z869</tvar>|Z869]] to convert inputs such as “Z1234” into references, replacing [[<tvar name="2">Z32144</tvar>|Z32144]] with simpler, faster code (<tvar name="3">[[:phab:T436107|T436107]]</tvar>). <!--T:14--> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected (<tvar name="1">[[:phab:T433743|T433743]]</tvar>). === News in Types: Grapheme === <!--T:15--> <!--T:25--> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[<tvar name="1">:en:Grapheme</tvar>|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[<tvar name="2">Wikifunctions:Type proposals/Grapheme</tvar>|Type proposal]]. <!--T:16--> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). <!--T:17--> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[<tvar name="1">Z22735</tvar>|characters with diacritics (Z22735)]]. <!--T:18--> The Type is now available: [[<tvar name="1">Z40783</tvar>|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[<tvar name="2">User:Aaron Liu</tvar>|Aaron Liu]] for writing it, and [[<tvar name="3">User:YoshiRulz</tvar>|YoshiRulz]], [[<tvar name="4">User:So9q</tvar>|So9q]], [[<tvar name="5">User:Jsamwrites</tvar>|Jsamwrites]], [[<tvar name="6">User:Feeglgeef</tvar>|Feeglgeef]], [[<tvar name="7">User:Ameisenigel</tvar>|Ameisenigel]], and [[<tvar name="8">User:JhowieNitnek</tvar>|JhowieNitnek]] for participating in the proposal. <!--T:19--> We invite you all to create new and discuss the existing [[<tvar name="1">Wikifunctions:Type proposals</tvar>|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! === Volunteers’ Corner on 7 September === <!--T:20--> <!--T:26--> The next Volunteers’ Corner will be on [<tvar name="1">https://zonestamp.toolforge.org/1788802200</tvar> Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [<tvar name="2">https://meet.google.com/xuy-njxh-rkw</tvar> Google Meet]. === Fresh Functions weekly: 178 new Functions (!) === <!--T:21--> <!--T:27--> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!</translate> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <translate><!--T:22--> A [<tvar name="1">https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest</tvar> complete list of all functions sorted by when they were created] is available.</translate> [[Category:Status updates{{#translation:}}|2026-08-28]] l2wev5pohyqum839k854haeu8ztisc8 Z40974 0 93026 308992 308440 2026-09-05T15:26:29Z GrounderUK 50 Added Z41199 to the approved list of implementations 308992 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40974" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z96", "Z17K2": "Z40974K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40974K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z40975", "Z40976" ], "Z8K4": [ "Z14", "Z40982", "Z41058", "Z41199" ], "Z8K5": "Z40974" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display label of referenced Wikifunctions Object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "label text from object", "label text from object by ZID" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the text from the label for the referenced object in the requested language, if there is one\n# T410501: no label is returned for a pre-defined object (ZID \u003C \"Z10000\") unless \"en\" is requested" } ] } } kqn4ghxt73abc1pdgoese7w9yi9fj0b 309016 308992 2026-09-05T15:50:53Z GrounderUK 50 Added Z41208 to the approved list of test cases 309016 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40974" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z96", "Z17K2": "Z40974K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40974K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z40975", "Z40976", "Z41208" ], "Z8K4": [ "Z14", "Z40982", "Z41058", "Z41199" ], "Z8K5": "Z40974" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display label of referenced Wikifunctions Object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "label text from object", "label text from object by ZID" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the text from the label for the referenced object in the requested language, if there is one\n# T410501: no label is returned for a pre-defined object (ZID \u003C \"Z10000\") unless \"en\" is requested" } ] } } 0esb7npbcyr2sa3a0jdscqroie6h4f0 309028 309016 2026-09-05T16:31:55Z GrounderUK 50 Removed Z40982 and Z41058 from the approved list of implementations 309028 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40974" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z96", "Z17K2": "Z40974K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40974K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z40975", "Z40976", "Z41208" ], "Z8K4": [ "Z14", "Z41199" ], "Z8K5": "Z40974" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display label of referenced Wikifunctions Object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "label text from object", "label text from object by ZID" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the text from the label for the referenced object in the requested language, if there is one\n# T410501: no label is returned for a pre-defined object (ZID \u003C \"Z10000\") unless \"en\" is requested" } ] } } kqjb79hhmnn8k7alyjm6qgex1esioea 309030 309028 2026-09-05T16:34:29Z GrounderUK 50 Added Z40982 and Z41058 to the approved list of implementations 309030 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z40974" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z96", "Z17K2": "Z40974K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z40974K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z40975", "Z40976", "Z41208" ], "Z8K4": [ "Z14", "Z41199", "Z40982", "Z41058" ], "Z8K5": "Z40974" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display label of referenced Wikifunctions Object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "label text from object", "label text from object by ZID" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returns the text from the label for the referenced object in the requested language, if there is one\n# T410501: no label is returned for a pre-defined object (ZID \u003C \"Z10000\") unless \"en\" is requested" } ] } } 5k4kytgvewbcj6asgll5j60pbrt6owv Translations:Wikifunctions:Status updates/2026-09-03/20/en 1198 93091 309057 308395 2026-09-05T17:02:24Z FuzzyBot 207 Importing a new version from external source 309057 wikitext text/x-wiki === Volunteers’ Corner on 7 September === 2tzbgc8cf5guwfl39aykl64xddx4ykm Wikifunctions:Status updates/2026-09-03/en 4 93094 309059 308399 2026-09-05T17:02:25Z FuzzyBot 207 Updating to match new version of source page 309059 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Previous update | prev = 2026-08-28 | nextlabel = Next update | next = }} === 5,000 Functions, passing Z40000 === These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. === Recent Changes in the software === On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). === News in Types: Grapheme === “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! === Volunteers’ Corner on 7 September === The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. === Fresh Functions weekly: 178 new Functions (!) === This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available. [[Category:Status updates{{#translation:}}|2026-08-28]] 33vn7x7xv7vlccqi0ieay4yonmikrl2 Z41015 0 93100 309023 308432 2026-09-05T16:26:37Z GrounderUK 50 Added Z41209 to the approved list of implementations 309023 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41015" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41015K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "ZID" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41015K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z96", "Z8K3": [ "Z20", "Z41016" ], "Z8K4": [ "Z14", "Z41018", "Z41209" ], "Z8K5": "Z41015" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "read Wikifunctions object reference" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Wikifunctions Object reference from ZID string" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "takes a ZID string and creates a Wikifunctions Object reference" } ] } } hc9nibl61qjvyi6dma3v720zbm0h0ex 309027 309023 2026-09-05T16:30:38Z GrounderUK 50 Added Z41211 to the approved list of test cases 309027 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41015" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41015K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "ZID" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41015K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z96", "Z8K3": [ "Z20", "Z41016", "Z41211" ], "Z8K4": [ "Z14", "Z41018", "Z41209" ], "Z8K5": "Z41015" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "read Wikifunctions object reference" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Wikifunctions Object reference from ZID string" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "takes a ZID string and creates a Wikifunctions Object reference" } ] } } 6i1xoqwq6mi1axg9s0wghdski5vo33i 309029 309027 2026-09-05T16:33:39Z WikiLambda system 3 Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]]) 309029 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41015" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41015K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "ZID" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41015K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z96", "Z8K3": [ "Z20", "Z41016", "Z41211" ], "Z8K4": [ "Z14", "Z41209", "Z41018" ], "Z8K5": "Z41015" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "read Wikifunctions object reference" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "Wikifunctions Object reference from ZID string" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "takes a ZID string and creates a Wikifunctions Object reference" } ] } } hs0ymp11aumpa4o3uf33ip9du7x9grz Translations:Wikifunctions:Status updates/2026-09-03/26/en 1198 93134 309058 308396 2026-09-05T17:02:24Z FuzzyBot 207 Importing a new version from external source 309058 wikitext text/x-wiki The next Volunteers’ Corner will be on [$1 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [$2 Google Meet]. 69zlm1uoeohwp10p4bmcxug492qeqs5 Z41075 0 93176 309507 308568 2026-09-06T11:51:01Z 鈴音雨 101019 309507 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41075" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41063", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z33328", "Z33328K1": { "Z1K1": "Z89", "Z89K1": "" }, "Z33328K2": { "Z1K1": "Z89", "Z89K1": "" }, "Z33328K3": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z37644", "Z37644K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37644K2": "smartphone", "Z37644K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P176" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P6251" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P179" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P13789" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z41070", "Z41070K1": { "Z1K1": "Z7", "Z7K1": "Z37782", "Z37782K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37782K2": { "Z1K1": "Z6092", "Z6092K1": "P5204" }, "Z37782K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z41070K2": { "Z1K1": "Z7", "Z7K1": "Z37782", "Z37782K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37782K2": { "Z1K1": "Z6092", "Z6092K1": "P577" }, "Z37782K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P155" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P156" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z41064", "Z41064K1": { "Z1K1": "Z7", "Z7K1": "Z36514", "Z36514K1": { "Z1K1": "Z6091", "Z6091K1": "Q322481" }, "Z36514K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z41064K2": { "Z1K1": "Z7", "Z7K1": "Z37640", "Z37640K1": { "Z1K1": "Z7", "Z7K1": "Z12846", "Z12846K1": { "Z1K1": "Z7", "Z7K1": "Z19202", "Z19202K1": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z19306", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z22220", "Z22220K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" }, { "Z1K1": "Z6092", "Z6092K1": "P2048" }, { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] } } } }, "Z12846K2": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" }, { "Z1K1": "Z6092", "Z6092K1": "P2048" }, { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z37640K2": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, " × ", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, " × ", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } } ] } }, "Z37640K3": "Z32729" } } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "スマートフォンのインフォボックス、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "infobox for smartphone, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ok66r28i656cd56zc34scxlunpfpcpq 309510 309507 2026-09-06T11:54:55Z 鈴音雨 101019 fix 309510 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41075" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41063", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z33328", "Z33328K1": { "Z1K1": "Z89", "Z89K1": "" }, "Z33328K2": { "Z1K1": "Z89", "Z89K1": "" }, "Z33328K3": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z37644", "Z37644K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37644K2": "smartphone", "Z37644K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P176" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P6251" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P179" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P13789" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z41070", "Z41070K1": { "Z1K1": "Z7", "Z7K1": "Z37782", "Z37782K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37782K2": { "Z1K1": "Z6092", "Z6092K1": "P5204" }, "Z37782K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z41070K2": { "Z1K1": "Z7", "Z7K1": "Z37782", "Z37782K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37782K2": { "Z1K1": "Z6092", "Z6092K1": "P577" }, "Z37782K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P155" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z37623", "Z37623K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z37623K2": { "Z1K1": "Z6092", "Z6092K1": "P156" }, "Z37623K3": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, { "Z1K1": "Z7", "Z7K1": "Z41064", "Z41064K1": { "Z1K1": "Z7", "Z7K1": "Z36514", "Z36514K1": { "Z1K1": "Z6091", "Z6091K1": "Q322481" }, "Z36514K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } }, "Z41064K2": { "Z1K1": "Z7", "Z7K1": "Z37640", "Z37640K1": { "Z1K1": "Z7", "Z7K1": "Z12846", "Z12846K1": { "Z1K1": "Z7", "Z7K1": "Z19202", "Z19202K1": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z19306", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z22220", "Z22220K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" }, { "Z1K1": "Z6092", "Z6092K1": "P2048" }, { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] } } } }, "Z12846K2": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" }, { "Z1K1": "Z6092", "Z6092K1": "P2048" }, { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z37640K2": { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2049" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2049" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, " × ", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2048" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2048" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, " × ", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13381", "Z13381K1": { "Z1K1": "Z6091", "Z6091K1": "Q60070514" }, "Z13381K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z28297", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z28312", "Z28312K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } }, "Z28312K2": { "Z1K1": "Z6092", "Z6092K1": "P1480" } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z41341", "Z41341K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } } }, "Z41341K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z7", "Z7K1": "Z19308", "Z19308K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z29694", "Z29694K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41063K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P2610" } ] }, "Z29694K2": { "Z1K1": "Z6092", "Z6092K1": "P2610" } } } }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41063K2" } } } ] } }, "Z37640K3": "Z32729" } } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "スマートフォンのインフォボックス、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "infobox for smartphone, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } czbbgd413e1ja4om87yy6r5jxtnlci2 Wikifunctions:Status updates/2026-09-03/zh-hans 4 93260 309060 308816 2026-09-05T17:02:25Z FuzzyBot 207 Updating to match new version of source page 309060 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span> | prev = 2026-08-28 | nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span> | next = }} <div lang="en" dir="ltr" class="mw-content-ltr"> === 5,000 Functions, passing Z40000 === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] 0in38ngws6n4je6w4vlob0exxrgxo01 Z41157 0 93266 308996 308841 2026-09-05T15:31:29Z Denny 81 308996 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41157" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "comparative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "superlative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41157K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41157K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41158" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41157" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for adjective from three forms and degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, comparative and superlative, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } l0izif9nidinm985koshsurkj3nrhre 308997 308996 2026-09-05T15:31:37Z Denny 81 Added Z41201 to the approved list of implementations 308997 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41157" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "comparative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "superlative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41157K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41157K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41158" ], "Z8K4": [ "Z14", "Z41201" ], "Z8K5": "Z41157" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for adjective from three forms and degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, comparative and superlative, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } nnjck1x6tyjmroqmd6hja7qirv8dexk 309244 308997 2026-09-06T06:44:21Z Denny 81 309244 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41157" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "comparative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41157K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "superlative" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41157K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41157K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41158" ], "Z8K4": [ "Z14", "Z41201" ], "Z8K5": "Z41157" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from 3 forms \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, comparative and superlative, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } tcu500wo3460w7x8rx24acnffqi48zi Z41162 0 93271 308949 308859 2026-09-05T14:18:39Z Brynn Who Likes Editing 102113 308949 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41162" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6001", "Z17K2": "Z41162K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Subject - X" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Sujet - X" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41162K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "In past tense?" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Le passé composé, ou non?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z7", "Z17K2": "Z41162K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Thought - Y" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Pensé(e) - Y" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41162" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "X thinks Y" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "X pense que Y" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "thought", "thinks", "think" ] }, { "Z1K1": "Z31", "Z31K1": "Z1004", "Z31K2": [ "Z6", "pense", "pensé", "pense que", "a pensé que", "pensée" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[X] thinks [Y]" }, { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "[X] pense que [Y]" } ] } } sf4h39t51k7g31h7jq3j5a2gmuvexz8 Z41163 0 93272 308886 308861 2026-09-05T12:35:20Z 鈴音雨 101019 Added Z41177 to the approved list of implementations 308886 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41163" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41163K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41163K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41163K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41177" ], "Z8K5": "Z41163" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 4ph56lpzoefpjj1gj03x4fpy7q2riu0 308888 308886 2026-09-05T12:38:35Z 鈴音雨 101019 Added Z41178 to the approved list of test cases 308888 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41163" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41163K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41163K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41163K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41178" ], "Z8K4": [ "Z14", "Z41177" ], "Z8K5": "Z41163" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dpha9a9rvjfma258anmg6pdvjfcspas 308890 308888 2026-09-05T12:41:32Z 鈴音雨 101019 Added Z41179 to the approved list of test cases 308890 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41163" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41163K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41163K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41163K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41178", "Z41179" ], "Z8K4": [ "Z14", "Z41177" ], "Z8K5": "Z41163" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } j2qbzbetwnzjw5w0tu56lsxhi1993w9 309003 308890 2026-09-05T15:34:41Z YoshiRulz 10156 Added Z41200 to the approved list of implementations 309003 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41163" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41163K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41163K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41163K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41178", "Z41179" ], "Z8K4": [ "Z14", "Z41177", "Z41200" ], "Z8K5": "Z41163" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 10oolrv40o5qdbaphwz8dfgwamae0xc 309251 309003 2026-09-06T06:51:44Z 鈴音雨 101019 Added Z41253 to the approved list of test cases 309251 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41163" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41163K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41163K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41163K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41178", "Z41179", "Z41253" ], "Z8K4": [ "Z14", "Z41177", "Z41200" ], "Z8K5": "Z41163" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } l1lk3n722z61vs1azm2eulbxo9iyvzr Z41164 0 93273 308864 308862 2026-09-05T12:04:59Z 鈴音雨 101019 Added Z41165 to the approved list of implementations 308864 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41164" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41164K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41164K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41164K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41165" ], "Z8K5": "Z41164" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bdtrbin116cwfnuklhz9ehm0m27ekro 308867 308864 2026-09-05T12:08:16Z 鈴音雨 101019 Added Z41166 および Z41167 to the approved list of test cases 308867 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41164" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41164K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41164K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41164K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41166", "Z41167" ], "Z8K4": [ "Z14", "Z41165" ], "Z8K5": "Z41164" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } g3gr3hwcz1mtp0duwook93gmykdw82d Z41165 0 93274 308863 2026-09-05T12:04:20Z 鈴音雨 101019 308863 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41165" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41164", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z18084", "Z18084K1": { "Z1K1": "Z7", "Z7K1": "Z19065", "Z19065K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41164K1" } } } }, "Z802K2": "", "Z802K3": "紀元前" }, { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41164K1" } } }, "年", { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z16230", "Z16230K1": { "Z1K1": "Z18", "Z18K1": "Z41164K2" } } }, "月" ], "Z12899K2": "" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (日本語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, Japanese, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bnmyivkw4ma0bd8qta9njf448aihpic 308977 308863 2026-09-05T14:35:47Z 鈴音雨 101019 lighter 308977 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41165" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41164", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z41192", "Z41192K1": { "Z1K1": "Z18", "Z18K1": "Z41164K1" } }, { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z16230", "Z16230K1": { "Z1K1": "Z18", "Z18K1": "Z41164K2" } } }, "月" ], "Z12899K2": "" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (日本語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, Japanese, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lpzgq5a66xrv4f4x2iakr9z7ih12nhj Z41166 0 93275 308865 2026-09-05T12:06:53Z 鈴音雨 101019 308865 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41166" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41164", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41164", "Z41164K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2026" } }, "Z41164K2": "Z16109", "Z41164K3": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "2026年9月" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「2026年9月」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"September 2026\" in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fr8nfeni0whj48nokzzyc9oy274fdij Z41167 0 93276 308866 2026-09-05T12:07:51Z 鈴音雨 101019 308866 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41167" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41164", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41164", "Z41164K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17815" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "22" } }, "Z41164K2": "Z16104", "Z41164K3": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "紀元前22年4月" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「紀元前22年4月」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"April 22 BC\" in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } thee52pf51vcad50zprrh2vgo08cjyc Z41168 0 93277 308871 2026-09-05T12:11:32Z 鈴音雨 101019 308871 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41168" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41168K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41168K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41168K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41168" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } e1uxxh5wnjr1k7j52y1xle8kwbx3h9c 308873 308871 2026-09-05T12:15:43Z 鈴音雨 101019 Added Z41169 to the approved list of implementations 308873 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41168" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41168K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41168K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41168K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41169" ], "Z8K5": "Z41168" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } igbmiiokl9k860cxp7i8cb7hz7i7o4b 308876 308873 2026-09-05T12:17:42Z 鈴音雨 101019 Added Z41170 および Z41171 to the approved list of test cases 308876 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41168" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41168K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41168K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41168K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41170", "Z41171" ], "Z8K4": [ "Z14", "Z41169" ], "Z8K5": "Z41168" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qt791ttnenl6vtaxx6kjxamh6ua0q9f Z41169 0 93278 308872 2026-09-05T12:15:30Z 鈴音雨 101019 308872 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41169" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41168", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36804", "Z36804K1": { "Z1K1": "Z7", "Z7K1": "Z13596", "Z13596K1": { "Z1K1": "Z18", "Z18K1": "Z41168K2" } }, "Z36804K2": { "Z1K1": "Z7", "Z7K1": "Z28824", "Z28824K1": { "Z1K1": "Z18", "Z18K1": "Z41168K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (英語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, English, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ordcay8fb35foy1isaxbw0wkfnm9ii7 Z41170 0 93279 308874 2026-09-05T12:16:36Z 鈴音雨 101019 308874 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41170" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41168", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41168", "Z41168K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2026" } }, "Z41168K2": "Z16109", "Z41168K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "September 2026" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「September 2026」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"September 2026\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } tdh7rkh1bgph9jckj9arxhwkbb2perl Z41171 0 93280 308875 2026-09-05T12:17:19Z 鈴音雨 101019 308875 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41171" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41168", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41168", "Z41168K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17815" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "21" } }, "Z41168K2": "Z16103", "Z41168K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "March 21 BC" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「March 21 BC」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"March 21 BC\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1cc8iuxt4bodpg46k7qhf8d2z58xjph Z41172 0 93281 308877 2026-09-05T12:22:39Z 鈴音雨 101019 308877 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41172" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41172K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41172K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41172K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41172" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (汎用)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, general" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ckq55jlr6yj03t4rwp6w0fsqj5dwppp 308879 308877 2026-09-05T12:26:20Z 鈴音雨 101019 Added Z41173 to the approved list of implementations 308879 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41172" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41172K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41172K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41172K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41173" ], "Z8K5": "Z41172" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (汎用)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, general" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } k71htxg1zcbjbx3apadnbhklvxpv8v1 308881 308879 2026-09-05T12:31:06Z 鈴音雨 101019 Added Z41174 to the approved list of test cases 308881 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41172" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41172K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16098", "Z17K2": "Z41172K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "月" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "month" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41172K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41174" ], "Z8K4": [ "Z14", "Z41173" ], "Z8K5": "Z41172" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (汎用)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, general" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } eivohosqvngpk0grxdpeoxctvqp6jbn Z41173 0 93282 308878 2026-09-05T12:24:53Z 鈴音雨 101019 308878 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41173" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41172", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z22920", "Z22920K1": { "Z1K1": "Z18", "Z18K1": "Z41172K1" } }, "/", { "Z1K1": "Z7", "Z7K1": "Z14770", "Z14770K1": { "Z1K1": "Z7", "Z7K1": "Z13713", "Z13713K1": { "Z1K1": "Z7", "Z7K1": "Z16230", "Z16230K1": { "Z1K1": "Z18", "Z18K1": "Z41172K2" } } }, "Z14770K2": { "Z1K1": "Z13518", "Z13518K1": "2" }, "Z14770K3": "0" } ], "Z12899K2": "Z11853" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示 (汎用)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, general, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ic6vryxhtud83sjvoiayt1yanf2djas Z41174 0 93283 308880 2026-09-05T12:27:11Z 鈴音雨 101019 308880 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41174" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41172", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41172", "Z41172K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2026" } }, "Z41172K2": "Z16109", "Z41172K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "2026/09" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「2026/09」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"2026/09\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qz4ziajj74mff1m0hipk6gxak3tsg71 Z41175 0 93284 308883 2026-09-05T12:33:23Z 鈴音雨 101019 308883 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41175" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41168", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z41164", "Z14293K2": "Z34003" } ], "Z14294K2": "Z41172" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示言語別設定" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for displaying Gregorian year and month" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "文字列を返す必要があります" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "must return string" } ] } } 8nelbok41aoc6u9b77afs0ze5cj2f57 Z41176 0 93285 308884 2026-09-05T12:34:31Z Brynn Who Likes Editing 102113 Created a short draft implementation 308884 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41176" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41162", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z18", "Z18K1": "Z41162K1" }, { "Z1K1": "Z7", "Z7K1": "Z11542", "Z11542K1": { "Z1K1": "Z18", "Z18K1": "Z41162K2" }, "Z11542K2": "thinks", "Z11542K3": "thought" }, { "Z1K1": "Z18", "Z18K1": "Z41162K3" } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mj0gyx278jqa4u908vjw1higlix9rk7 308954 308884 2026-09-05T14:21:16Z Brynn Who Likes Editing 102113 publish 308954 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41176" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41162", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z18", "Z18K1": "Z41162K1" }, { "Z1K1": "Z7", "Z7K1": "Z11542", "Z11542K1": { "Z1K1": "Z18", "Z18K1": "Z41162K2" }, "Z11542K2": "thinks", "Z11542K3": "thought" }, { "Z1K1": "Z18", "Z18K1": "Z41162K3" } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Implementation 0.1.1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "XTY 0.1.1" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Very quick draft implementation. It'll get better, don't worry!" } ] } } cs90pvuuduj944sufb6sie4wrqj74h1 308963 308954 2026-09-05T14:26:16Z Brynn Who Likes Editing 102113 changed name 308963 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41176" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41162", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z21394", "Z21394K1": [ "Z6", { "Z1K1": "Z18", "Z18K1": "Z41162K1" }, { "Z1K1": "Z7", "Z7K1": "Z11542", "Z11542K1": { "Z1K1": "Z18", "Z18K1": "Z41162K2" }, "Z11542K2": "thinks", "Z11542K3": "thought" }, { "Z1K1": "Z18", "Z18K1": "Z41162K3" } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "XTY Implementation 0.1.1" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "XTY 0.1.1" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Very quick draft implementation. It'll get better, don't worry!" } ] } } q88pxpo6ev0j3gwg17omn0d79wncv68 Z41177 0 93286 308885 2026-09-05T12:35:00Z 鈴音雨 101019 308885 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41177" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41163", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z21216", "Z21216K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41175", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41163K3" } }, "Z21216K2": { "Z1K1": "Z18", "Z18K1": "Z41163K1" }, "Z21216K3": { "Z1K1": "Z18", "Z18K1": "Z41163K2" }, "Z21216K4": { "Z1K1": "Z18", "Z18K1": "Z41163K3" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦の年月を表示、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year and month, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rdd1dlbc05rrp0mevikki3hmoukqesk Z41178 0 93287 308887 2026-09-05T12:36:21Z 鈴音雨 101019 308887 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41178" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41163", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41163", "Z41163K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2026" } }, "Z41163K2": "Z16110", "Z41163K3": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "2026年10月" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[ja] 2026年10月" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mqtkn3zilxnbavu79ordtd0fiei90qm Z41179 0 93288 308889 2026-09-05T12:40:43Z 鈴音雨 101019 308889 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41179" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41163", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41163", "Z41163K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2032" } }, "Z41163K2": "Z16105", "Z41163K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "May 2032" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[en] May 2032" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bcw4d27tmobeiozcnsitf0qa0wh4q39 Z41181 0 93290 308904 2026-09-05T12:59:32Z Ornithorynque liminaire 1539 fr 308904 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41181" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z32169", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z32169", "Z32169K1": { "Z1K1": "Z6091", "Z6091K1": "Q42810" }, "Z32169K2": "Z1004" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "Le Havre" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Le Havre (article déjà inclus)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bf5xrmvesi0md7n1oiqs28njdqxxvhd 309487 308904 2026-09-06T11:23:05Z HenkvD 1290 English label 309487 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41181" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z32169", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z32169", "Z32169K1": { "Z1K1": "Z6091", "Z6091K1": "Q42810" }, "Z32169K2": "Z1004" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "Le Havre" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1004", "Z11K2": "Le Havre (article déjà inclus)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[fr] Le Havre" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } sto8sj991b19i9ns35371bouia2hyq9 Talk:Z38415 1 93291 308906 2026-09-05T13:02:30Z YoshiRulz 10156 Create redirect 308906 wikitext text/x-wiki #REDIRECT [[Talk:Z39250]] fb3v6q4i4gldgjn3so8imar9pwzzw6e Talk:Z39250 1 93292 308907 2026-09-05T13:04:37Z YoshiRulz 10156 Add to category 308907 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 308909 308907 2026-09-05T13:06:30Z YoshiRulz 10156 Add function tree 308909 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] <onlyinclude>{{show function tree|hardcoded=Z39250;Z38458;z38415;Z38402}}</onlyinclude> b5bghkzvde8j89hgqcegk3e0u2h57kc Talk:Z38458 1 93293 308908 2026-09-05T13:05:03Z YoshiRulz 10156 Add to category 308908 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 308910 308908 2026-09-05T13:06:37Z YoshiRulz 10156 Add function tree 308910 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] {{Talk:Z39250}} radj3uboif3bz02vhy79nbcs29i8eo1 Talk:Z37761 1 93294 308912 2026-09-05T13:12:05Z YoshiRulz 10156 Add to categories 308912 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] [[Category:Semantic_fragments_used_for_creative_works]] e6dx6sr366ls1itqlppsedlfoycvjsr 308916 308912 2026-09-05T13:17:02Z YoshiRulz 10156 Add function tree and preview table 308916 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] [[Category:Semantic_fragments_used_for_creative_works]] {{Talk:Z39277}} {{#function:Z40885|{{PAGENAME}}|Z37760|Q19819228|{{int:lang}}}} g09rhsgkkqx59rg8rjmngnphhi1ranp Talk:Z39277 1 93295 308913 2026-09-05T13:12:11Z YoshiRulz 10156 Add to categories 308913 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] [[Category:Semantic_fragments_used_for_creative_works]] e6dx6sr366ls1itqlppsedlfoycvjsr 308915 308913 2026-09-05T13:16:14Z YoshiRulz 10156 Add function tree 308915 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] [[Category:Semantic_fragments_used_for_creative_works]] <onlyinclude>{{show function tree|hardcoded=Z39277;Z37761;z37760;Z40695}}</onlyinclude> t38up21nndf92ewbr6oicji2knlbd94 Z41182 0 93296 308922 2026-09-05T13:35:35Z 99of9 1622 308922 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41182" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41182K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41182K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41182K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41182" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence in English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hg0650vk45ox5uliaflb66x2qeyjpej 308925 308922 2026-09-05T13:40:22Z 99of9 1622 Added Z41183 to the approved list of test cases 308925 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41182" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41182K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41182K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41182K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41183" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41182" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence in English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ivr5ylalwkz53b8j0twb8gql62rd0sr 308939 308925 2026-09-05T14:05:47Z 99of9 1622 Added Z41184 to the approved list of implementations 308939 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41182" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41182K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41182K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41182K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41182K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41183" ], "Z8K4": [ "Z14", "Z41184" ], "Z8K5": "Z41182" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence in English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6fhckcpwt7di7vjizo8rd4pzrm8yq44 Z41183 0 93297 308924 2026-09-05T13:39:55Z 99of9 1622 308924 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41183" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41182", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41182", "Z41182K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41182K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1065" }, { "Z1K1": "Z6091", "Z6091K1": "Q19771" }, { "Z1K1": "Z6091", "Z6091K1": "Q41550" }, { "Z1K1": "Z6091", "Z6091K1": "Q7825" }, { "Z1K1": "Z6091", "Z6091K1": "Q170481" }, { "Z1K1": "Z6091", "Z6091K1": "Q757276" }, { "Z1K1": "Z6091", "Z6091K1": "Q871511" }, { "Z1K1": "Z6091", "Z6091K1": "Q7785" } ], "Z41182K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41182K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41182K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Australia is a member of: the United Nations, the G20, the OECD, the World Trade Organization, Asia-Pacific Economic Cooperation, the Pacific Islands Forum, the Pacific Community and the Commonwealth of Nations." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Australia is a member of: ..." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ptvp6eps6yl1lni23ohhye06du0pw0y 308940 308924 2026-09-05T14:06:45Z 99of9 1622 expand some acronyms 308940 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41183" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41182", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41182", "Z41182K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41182K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1065" }, { "Z1K1": "Z6091", "Z6091K1": "Q19771" }, { "Z1K1": "Z6091", "Z6091K1": "Q41550" }, { "Z1K1": "Z6091", "Z6091K1": "Q7825" }, { "Z1K1": "Z6091", "Z6091K1": "Q170481" }, { "Z1K1": "Z6091", "Z6091K1": "Q757276" }, { "Z1K1": "Z6091", "Z6091K1": "Q871511" }, { "Z1K1": "Z6091", "Z6091K1": "Q7785" } ], "Z41182K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41182K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41182K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Australia is a member of: the United Nations, the G20, the Organization for Economic Cooperation and Development, the World Trade Organization, the Asia-Pacific Economic Cooperation, the Pacific Islands Forum, the Pacific Community and the Commonwealth of Nations." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Australia is a member of: ..." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qzy27lp2rsv4o248jchxwwxdzwt3hze Z41184 0 93298 308926 2026-09-05T13:48:01Z 99of9 1622 start composition 308926 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41184" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41182", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41182K3" }, "Z802K2": "it", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41182K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41182K4" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "was a member of", "Z802K3": "was a member of:" } }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "is a member of", "Z802K3": "is a member of:" } } }, { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z32308", "Z32308K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z36270", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z41182K2" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } }, "Z32308K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": "" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, English, compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 11d1yqzh753zz8o1ko7auuauh3zsp64 308933 308926 2026-09-05T13:59:32Z 99of9 1622 308933 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41184" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41182", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41182K3" }, "Z802K2": "it", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41182K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41182K4" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "was a member of", "Z802K3": "was a member of:" } }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "is a member of", "Z802K3": "is a member of:" } } }, { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z32308", "Z32308K1": { "Z1K1": "Z7", "Z7K1": "Z13436", "Z13436K1": "Z27182", "Z13436K2": "the", "Z13436K3": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z36270", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z41182K2" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } }, "Z32308K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z11K2": "" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, English, compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } l5p45o6larftojj2hx9in6roau5ay7g 308938 308933 2026-09-05T14:05:11Z 99of9 1622 simpler 308938 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41184" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41182", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z41182K5" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z22514", "Z22514K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41182K3" }, "Z802K2": "it", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41182K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41182K4" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "was a member of", "Z802K3": "was a member of:" }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z12755", "Z12755K1": { "Z1K1": "Z18", "Z18K1": "Z41182K2" } }, "Z802K2": "is a member of", "Z802K3": "is a member of:" } }, { "Z1K1": "Z7", "Z7K1": "Z32308", "Z32308K1": { "Z1K1": "Z7", "Z7K1": "Z13436", "Z13436K1": "Z27182", "Z13436K2": "the", "Z13436K3": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z36270", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z41182K2" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } }, "Z32308K2": { "Z1K1": "Z18", "Z18K1": "Z41182K5" } } ] } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, English, compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dtovv0ee63u9f3hh3omdcj6yvpls4t9 Z41185 0 93303 308941 2026-09-05T14:08:29Z 99of9 1622 308941 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41185" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41182", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41182" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for is a member of, sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } p2mis2b8lfgttb8dhtpilswaxe0ejd4 309227 308941 2026-09-06T03:59:27Z 99of9 1622 default 309227 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41185" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41182", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41245" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for is a member of, sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8dxtdtzkwxsy4e23zga9vg6r1uabrov Z41186 0 93304 308942 2026-09-05T14:11:11Z 99of9 1622 308942 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41186" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41186K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41186K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41186K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41186" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bvbtbbhoreps1u6226suh1e2makgkq6 308945 308942 2026-09-05T14:13:45Z 99of9 1622 Added Z41187 to the approved list of implementations 308945 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41186" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41186K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41186K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41186K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41187" ], "Z8K5": "Z41186" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2d1aszsoke56zy3jhrhg8da0xlpoak5 308947 308945 2026-09-05T14:17:28Z 99of9 1622 Added Z41188 to the approved list of test cases 308947 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41186" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41186K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41186K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41186K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "variant of English" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41188" ], "Z8K4": [ "Z14", "Z41187" ], "Z8K5": "Z41186" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ly5mgtldm7krpa2eopfjau46hu542x7 308955 308947 2026-09-05T14:21:36Z 99of9 1622 308955 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41186" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41186K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41186K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41186K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41186K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41188" ], "Z8K4": [ "Z14", "Z41187" ], "Z8K5": "Z41186" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 23xxfpjkuu5eajqo4xcnl7z6sdg0kcp Z41187 0 93305 308943 2026-09-05T14:12:40Z 99of9 1622 308943 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41187" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41186", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34122", "Z34122K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z38424", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41186K5" } }, "Z34122K2": { "Z1K1": "Z18", "Z18K1": "Z41186K1" }, "Z34122K3": { "Z1K1": "Z18", "Z18K1": "Z41186K2" }, "Z34122K4": { "Z1K1": "Z18", "Z18K1": "Z41186K3" }, "Z34122K5": { "Z1K1": "Z18", "Z18K1": "Z41186K4" }, "Z34122K6": { "Z1K1": "Z18", "Z18K1": "Z41186K5" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of (monolingual), compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 67p28817runsbf04l1x9r4y3et75z9s 308944 308943 2026-09-05T14:13:22Z 99of9 1622 308944 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41187" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41186", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34122", "Z34122K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41185", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41186K5" } }, "Z34122K2": { "Z1K1": "Z18", "Z18K1": "Z41186K1" }, "Z34122K3": { "Z1K1": "Z18", "Z18K1": "Z41186K2" }, "Z34122K4": { "Z1K1": "Z18", "Z18K1": "Z41186K3" }, "Z34122K5": { "Z1K1": "Z18", "Z18K1": "Z41186K4" }, "Z34122K6": { "Z1K1": "Z18", "Z18K1": "Z41186K5" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of (monolingual), compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } et1ky7ijao71jhiwwdo71mmcub5qw7z Z41188 0 93306 308946 2026-09-05T14:17:00Z 99of9 1622 308946 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41188" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41186", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41186", "Z41186K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41186K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q170481" }, { "Z1K1": "Z6091", "Z6091K1": "Q757276" }, { "Z1K1": "Z6091", "Z6091K1": "Q871511" } ], "Z41186K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41186K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41186K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Australia is a member of: the Asia-Pacific Economic Cooperation, the Pacific Islands Forum and the Pacific Community." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English: Australia is a member of: ..." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } sye72u830bom1hshwz4n7wyjilyg1kt Z41189 0 93307 308948 2026-09-05T14:17:55Z ReXLer 39813 function 308948 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41189" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41189K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41189K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "role" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41189K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dependency" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41189K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41189" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "defining role sentence (HTML) generic" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "is a ", "is a of ", "is an", "is an of", "of", "X is a Y of Z", "X is an Y of Z", "defining role sentence generic" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Sentences of the type \"USA is a country of NATO.\" or \"Elisabeth II is the mother of Charles III.\" (with a definite article, like \"the\")" } ] } } pecsnr93vxagju7l92fv7jvmuepuqvx Talk:Z39335 1 93308 308950 2026-09-05T14:20:22Z YoshiRulz 10156 Add to category 308950 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_creative_works]] 9jzvurwvu2r7rzxn5bqyis2jl4iesdp 308957 308950 2026-09-05T14:23:18Z YoshiRulz 10156 Add function tree 308957 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_creative_works]] {{Talk:Z39339}} 3a0sahd6q5wulywzy0uc3jjv59l0y2b Talk:Z39339 1 93309 308951 2026-09-05T14:20:29Z YoshiRulz 10156 Add to category 308951 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_creative_works]] 9jzvurwvu2r7rzxn5bqyis2jl4iesdp 308956 308951 2026-09-05T14:22:43Z YoshiRulz 10156 Add function tree 308956 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_creative_works]] <onlyinclude>{{show function tree|hardcoded=Z39339;Z39335;z39338;Z39332}}</onlyinclude> 6et5dvoqtb5jfqpwefzznc7w3e3crqo Talk:Z39338 1 93310 308952 2026-09-05T14:20:48Z YoshiRulz 10156 Create redirect 308952 wikitext text/x-wiki #REDIRECT [[Talk:Z39339]] 3u99d32dnnuefnt324pzivxumd8ev3d Z41190 0 93311 308953 2026-09-05T14:21:13Z 99of9 1622 308953 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41190" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41190K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41190K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41190K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41190" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of sentence (choosing list)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9766rupwoi4i0m0qkbo75ds5v4mddl1 308959 308953 2026-09-05T14:24:40Z 99of9 1622 Added Z41191 to the approved list of implementations 308959 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41190" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41190K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41190K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41190K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41191" ], "Z8K5": "Z41190" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of sentence (choosing list)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qzphyokkzjpul6o6zay66edu837xd2a 308964 308959 2026-09-05T14:26:25Z 99of9 1622 Added Z41193 to the approved list of test cases 308964 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41190" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41190K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41190K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41190K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41190K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z41193" ], "Z8K4": [ "Z14", "Z41191" ], "Z8K5": "Z41190" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of sentence (choosing list)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rl8billa2zjwy1incjnupd4qyib0jxj Z41191 0 93312 308958 2026-09-05T14:24:22Z 99of9 1622 308958 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41191" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41190", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z41186", "Z41186K1": { "Z1K1": "Z18", "Z18K1": "Z41190K1" }, "Z41186K2": { "Z1K1": "Z18", "Z18K1": "Z41190K2" }, "Z41186K3": { "Z1K1": "Z18", "Z18K1": "Z41190K3" }, "Z41186K4": { "Z1K1": "Z18", "Z18K1": "Z41190K4" }, "Z41186K5": { "Z1K1": "Z18", "Z18K1": "Z41190K5" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z41185" } }, "Z37464K3": { "Z1K1": "Z18", "Z18K1": "Z41190K2" }, "Z37464K4": { "Z1K1": "Z18", "Z18K1": "Z41190K2" }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41190K5" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of (choosing), compose" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bd1j1q9kcq6meeyxtaxomrgz1ugmrda Z41192 0 93313 308960 2026-09-05T14:25:04Z 鈴音雨 101019 308960 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41192" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41192K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41192" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年の日本語表示" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ffr7vx5s6sdzatqz81dgr5mo99teu44 308968 308960 2026-09-05T14:29:58Z 鈴音雨 101019 japanese 308968 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41192" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41192K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41192" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7qbzixiog6nqvstgdmidodn3vgrhu0y 308969 308968 2026-09-05T14:30:09Z 鈴音雨 101019 Added Z41195 to the approved list of implementations 308969 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41192" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41192K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41195" ], "Z8K5": "Z41192" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gyzhkbvwkxrbn30u5w5lurstytzht7b 308972 308969 2026-09-05T14:32:03Z 鈴音雨 101019 Added Z41196 および Z41197 to the approved list of test cases 308972 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41192" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41192K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20", "Z41196", "Z41197" ], "Z8K4": [ "Z14", "Z41195" ], "Z8K5": "Z41192" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year in Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } nlh3h8ox3ipgc2cr13u9hz8zx5z97qc Z41193 0 93314 308961 2026-09-05T14:25:58Z 99of9 1622 308961 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41193" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41190", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41190", "Z41190K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41190K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q170481" }, { "Z1K1": "Z6091", "Z6091K1": "Q41550" } ], "Z41190K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41190K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41190K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "Australia is a member of: the \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q170481\"\u003EAsia-Pacific Economic Cooperation\u003C/a\u003E and the \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q41550\"\u003EOrganization for Economic Cooperation and Development\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English: Australia is a member of APEC \u0026 OECD" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jfn6rq8yhkml33f5mp1wfbmr6ej3h46 Z41194 0 93315 308962 2026-09-05T14:26:11Z ReXLer 39813 create test case 308962 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41194" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41189", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41189", "Z41189K1": { "Z1K1": "Z6091", "Z6091K1": "Q8776414" }, "Z41189K2": { "Z1K1": "Z6091", "Z6091K1": "Q21146257" }, "Z41189K3": { "Z1K1": "Z6091", "Z6091K1": "Q194431" }, "Z41189K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q8776414\"\u003ELead paragraph\u003C/a\u003E is a \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q21146257\"\u003Etype\u003C/a\u003E of \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q194431\"\u003Eparagraph\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Lead paragraph is a type of paragraph." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3yanz06zo3dax0yikmr7bsgrntdhyli Talk:Z40803 1 93316 308966 2026-09-05T14:27:34Z YoshiRulz 10156 Create redirect 308966 wikitext text/x-wiki #REDIRECT [[Talk:Z40804]] ic4q44pgm0x4qdtv65b4clm9vd95e7o Z41195 0 93317 308967 2026-09-05T14:29:36Z 鈴音雨 101019 308967 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41195" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41192", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41192K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41192K1" } } }, "Z10000K2": "年" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "グレゴリオ暦年を表示 (日本語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Gregorian year in Japanese, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } a0kfs2wkf1dvdbrbwni9zzl6qe7n4gk Z41196 0 93318 308970 2026-09-05T14:30:50Z 鈴音雨 101019 308970 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41196" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41192", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41192", "Z41192K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2026" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "2026年" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「2026年」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"2026年\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ew1aieyl2cm4d41nn95whfenisdcidu Z41197 0 93319 308971 2026-09-05T14:31:45Z 鈴音雨 101019 308971 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41197" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41192", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41192", "Z41192K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17815" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "123457" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "紀元前12万3457年" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「紀元前12万3457年」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"紀元前12万3457年\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ebpwbvszx2jrtny9ut9arnzze63mern Z41198 0 93320 308979 2026-09-05T14:44:58Z ReXLer 39813 308979 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41198" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41189", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41189", "Z41189K1": { "Z1K1": "Z6091", "Z6091K1": "Q11574" }, "Z41189K2": { "Z1K1": "Z6091", "Z6091K1": "Q189962" }, "Z41189K3": { "Z1K1": "Z6091", "Z6091K1": "Q11471" }, "Z41189K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q11574\"\u003ESecond\u003C/a\u003E is an \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q189962\"\u003Einterval\u003C/a\u003E of \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q11471\"\u003Etime\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Second is an interval of time." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5vdi0fnrpdq49kp6p1fud88qs1zkday 309220 308979 2026-09-06T02:29:15Z Carnildo 54460 Fix grammar 309220 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41198" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41189", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41189", "Z41189K1": { "Z1K1": "Z6091", "Z6091K1": "Q11574" }, "Z41189K2": { "Z1K1": "Z6091", "Z6091K1": "Q189962" }, "Z41189K3": { "Z1K1": "Z6091", "Z6091K1": "Q11471" }, "Z41189K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "A \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q11574\"\u003Esecond\u003C/a\u003E is an \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q189962\"\u003Einterval\u003C/a\u003E of \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q11471\"\u003Etime\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Second is an interval of time." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } agh7to0ge0lacebyl0xmvtq970j8is1 Z41199 0 93321 308990 2026-09-05T15:22:07Z GrounderUK 50 [[Z40974]]➕[[Z14]]: error avoidance, fall back to (en) or entered value 308990 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41199" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z40974", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z10196", "Z10196K1": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } }, "Z10196K2": "^Z[1-9][0-9]*$" }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z30928", "Z30928K1": { "Z1K1": "Z99", "Z99K1": { "Z1K1": "Z7", "Z7K1": "Z39080", "Z39080K1": [ "Z39", { "Z1K1": "Z39", "Z39K1": "Z2K3" }, { "Z1K1": "Z39", "Z39K1": "Z12K1" } ], "Z39080K2": { "Z1K1": "Z7", "Z7K1": "Z828", "Z828K1": { "Z1K1": "Z7", "Z7K1": "Z29113", "Z29113K1": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } } } } } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z813", "Z813K1": { "Z1K1": "Z7", "Z7K1": "Z36554", "Z36554K1": { "Z1K1": "Z7", "Z7K1": "Z39080", "Z39080K1": [ "Z39", { "Z1K1": "Z39", "Z39K1": "Z2K3" }, { "Z1K1": "Z39", "Z39K1": "Z12K1" } ], "Z39080K2": { "Z1K1": "Z7", "Z7K1": "Z828", "Z828K1": { "Z1K1": "Z7", "Z7K1": "Z29113", "Z29113K1": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } } } } }, "Z36554K2": [ "Z60", { "Z1K1": "Z18", "Z18K1": "Z40974K2" }, "Z1002" ] } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z21583", "Z21583K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z36554", "Z36554K1": { "Z1K1": "Z7", "Z7K1": "Z39080", "Z39080K1": [ "Z39", { "Z1K1": "Z39", "Z39K1": "Z2K3" }, { "Z1K1": "Z39", "Z39K1": "Z12K1" } ], "Z39080K2": { "Z1K1": "Z7", "Z7K1": "Z828", "Z828K1": { "Z1K1": "Z7", "Z7K1": "Z29113", "Z29113K1": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } } } } }, "Z36554K2": [ "Z60", { "Z1K1": "Z18", "Z18K1": "Z40974K2" }, "Z1002" ] } }, "Z21583K2": { "Z1K1": "Z18", "Z18K1": "Z40974K2" } } } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z18", "Z18K1": "Z40974K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display label for Z96, Composition: if better" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 17rka25okf2ld08phcepr4gsofyd3jk Z41200 0 93322 308994 2026-09-05T15:29:23Z YoshiRulz 10156 Create implementation 308994 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41200" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41163", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z20780", "Z20780K1": { "Z1K1": "Z7", "Z7K1": "Z24962", "Z24962K1": { "Z1K1": "Z7", "Z7K1": "Z20591", "Z20591K1": { "Z1K1": "Z18", "Z18K1": "Z41163K2" }, "Z20591K2": { "Z1K1": "Z13518", "Z13518K1": "0" } }, "Z24962K2": { "Z1K1": "Z18", "Z18K1": "Z41163K1" } }, "Z20780K2": { "Z1K1": "Z18", "Z18K1": "Z41163K3" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "display Year and Month, via-Date composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9nl6w49k2gzkqnyggqwl2hl60xlsamq Z41201 0 93323 308995 2026-09-05T15:31:12Z Denny 81 308995 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41201" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41157", "Z14K2": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41157K4" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1817208" } }, "Z802K2": { "Z1K1": "Z18", "Z18K1": "Z41157K3" }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41157K4" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q14169499" } }, "Z802K2": { "Z1K1": "Z18", "Z18K1": "Z41157K2" }, "Z802K3": { "Z1K1": "Z18", "Z18K1": "Z41157K1" } } } } ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "return per degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } aiyd95653nspunnoyjrbzshyy3oqioc Z41202 0 93324 308998 2026-09-05T15:31:58Z YoshiRulz 10156 Create test 308998 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41202" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z39861", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z39861", "Z39861K1": { "Z1K1": "Z20342", "Z20342K1": "Z16106", "Z20342K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "6月" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "June (unk. day) -\u003E \"6月\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0c36fuwkbb3f6plggxigapozndarlof Talk:Z41175 1 93325 309004 2026-09-05T15:35:54Z YoshiRulz 10156 /* Possibly redundant */ new section 309004 wikitext text/x-wiki == Possibly redundant == I believe this config (not [[Z41163|the outer Function]]) and its language-specific Functions don't need to exist, because {{Z|20780}} ([[Z20779]]) already covers dates which exclude the day component. I've made [[Z41200|an alternate Implementation]] which demonstrates this. [[User:YoshiRulz|YoshiRulz]] ([[User talk:YoshiRulz|talk]]) 15:35, 5 September 2026 (UTC) gpy0jerosm2b6ai20cz8lsscpm9b351 Z41203 0 93326 309005 2026-09-05T15:37:18Z Jsamwrites 938 309005 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41203" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41203K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z41203K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41203K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41203" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } h14an1rhh4lc661wx1phaswxya66x3x 309010 309005 2026-09-05T15:40:53Z Jsamwrites 938 Added Z41206 to the approved list of implementations 309010 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41203" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41203K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z41203K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41203K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41206" ], "Z8K5": "Z41203" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } i09p27pfm1xh3qqoyuht59699l9ylpo 309025 309010 2026-09-05T16:27:19Z Jsamwrites 938 Added Z41210 to the approved list of test cases 309025 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41203" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41203K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z41203K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41203K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z8K3": [ "Z20", "Z41210" ], "Z8K4": [ "Z14", "Z41206" ], "Z8K5": "Z41203" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qzs4njxibqgkhu156idt09gvtlenrzd Z41204 0 93327 309006 2026-09-05T15:37:23Z Denny 81 309006 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41204" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41204K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41204K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41204K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41204" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for adjective from one forms and degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, the function chooses based on the degree, and returns a listed HTML fragment. The comparative and superlative are regularly formed." } ] } } qw45gtn8yhr0anmjikgi9rl9bj6tbnt 309008 309006 2026-09-05T15:40:23Z Denny 81 Added Z41205 to the approved list of test cases 309008 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41204" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41204K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41204K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41204K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41205" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41204" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for adjective from one forms and degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, the function chooses based on the degree, and returns a listed HTML fragment. The comparative and superlative are regularly formed." } ] } } r03hftajdvhljbv9tz5gb9nif88jmq8 309012 309008 2026-09-05T15:45:16Z Denny 81 Added Z41207 to the approved list of implementations 309012 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41204" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41204K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41204K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41204K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41205" ], "Z8K4": [ "Z14", "Z41207" ], "Z8K5": "Z41204" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for adjective from one forms and degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, the function chooses based on the degree, and returns a listed HTML fragment. The comparative and superlative are regularly formed." } ] } } a3nigrt4drvgc5pydmsodikawmul4b9 309245 309012 2026-09-06T06:44:51Z Denny 81 309245 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41204" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41204K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41204K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41204K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41205" ], "Z8K4": [ "Z14", "Z41207" ], "Z8K5": "Z41204" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from string \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a string for the normal, the function chooses based on the degree, and returns a listed HTML fragment. The comparative and superlative are regularly formed." } ] } } m78g68uecs882ky0vxggqnw95mai9tr Z41205 0 93328 309007 2026-09-05T15:39:27Z Denny 81 309007 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41205" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41204", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41204", "Z41204K1": "large", "Z41204K2": { "Z1K1": "Z6091", "Z6091K1": "Q14169499" }, "Z41204K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z89", { "Z1K1": "Z89", "Z89K1": "larger" } ], "Z18646K3": "Z877" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "large, comparative -\u003E larger" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } p5ldncrsdc2rwrom1bqkqmmu1xz0xqa Z41206 0 93329 309009 2026-09-05T15:40:41Z Jsamwrites 938 309009 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41206" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41203", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z18", "Z18K1": "Z41203K1" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z18", "Z18K1": "Z41203K2" }, "Z882K2": { "Z1K1": "Z18", "Z18K1": "Z41203K3" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9lax5d40ps9vth50m6anfm3srfyjzil 309031 309009 2026-09-05T16:34:37Z Jsamwrites 938 309031 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41206" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41203", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30414", "Z30414K1": { "Z1K1": "Z18", "Z18K1": "Z41203K1" }, "Z30414K2": { "Z1K1": "Z7", "Z7K1": "Z30414", "Z30414K1": { "Z1K1": "Z18", "Z18K1": "Z41203K2" }, "Z30414K2": { "Z1K1": "Z18", "Z18K1": "Z41203K3" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 56dpmvgagqqy5vg1kfh68dre5femzis Z41207 0 93330 309011 2026-09-05T15:44:23Z Denny 81 309011 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41207" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41204", "Z14K2": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41204K2" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1817208" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z12203", "Z12203K1": { "Z1K1": "Z18", "Z18K1": "Z41204K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41204K2" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q14169499" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z11795", "Z11795K1": { "Z1K1": "Z18", "Z18K1": "Z41204K1" } }, "Z802K3": { "Z1K1": "Z18", "Z18K1": "Z41204K1" } } } } ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use regular form generators" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3ktjvas2h63rhi6duqkw7kv40b6b28w Z41208 0 93331 309015 2026-09-05T15:49:37Z GrounderUK 50 [[Z40974]]➕[[Z14]] 309015 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41208" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z40974", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z40974", "Z40974K1": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z10000" } }, "Z40974K2": { "Z1K1": "Z60", "Z60K1": "qqqq", "Z60K2": [ "Z6" ] } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": { "Z1K1": "Z7", "Z7K1": "Z21583", "Z21583K1": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z40974", "Z40974K1": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z10000" } }, "Z40974K2": "Z1002" } }, "Z21583K2": { "Z1K1": "Z60", "Z60K1": "qqqq", "Z60K2": [ "Z6" ] } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fall back to (en) for non-existent language" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } doehzrr0tll74ryglgc62gl3aaiq5ka Wikifunctions talk:Status updates/2026-09-03 5 93332 309019 2026-09-05T16:10:43Z Strobilomyces 193 /* Date of Volunteers' Corner */ new section 309019 wikitext text/x-wiki == Date of Volunteers' Corner == Volunteers' Corner is scheduled for Monday 6th September, but 6th September is a Sunday, not a Monday. [[User:Strobilomyces|Strobilomyces]] ([[User talk:Strobilomyces|talk]]) 16:10, 5 September 2026 (UTC) l3bacygjeqkx5qxdfb3i5tnas4pqi01 Z41209 0 93333 309022 2026-09-05T16:25:51Z GrounderUK 50 [[Z41015]]➕[[Z14]] digits affordance 309022 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41209" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41015", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z10196", "Z10196K1": { "Z1K1": "Z18", "Z18K1": "Z41015K1" }, "Z10196K2": "^[1-9][0-9]*$" }, "Z802K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": "Z", "Z10000K2": { "Z1K1": "Z18", "Z18K1": "Z41015K1" } } }, "Z802K3": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z18", "Z18K1": "Z41015K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "read Wikifunctions ZID, Composition: digits option" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2u36qseew20jvfsy2klo4y7bkoluti4 Z41210 0 93334 309024 2026-09-05T16:27:08Z Jsamwrites 938 309024 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41210" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41203", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z7", "Z7K1": "Z41203", "Z41203K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z41203K2": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "Z41203K3": [ "Z1", { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } ] } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "C, Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } exvinz709f2ssvfbndi3g10rv1blg7m 309032 309024 2026-09-05T16:37:11Z Jsamwrites 938 309032 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41210" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41203", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z7", "Z7K1": "Z41203", "Z41203K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z41203K2": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "Z41203K3": { "Z1K1": "Z7", "Z7K1": "Z17895", "Z17895K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "C, Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1opfgsa2iakkbar5bstsuo3u4wo9nw6 309136 309032 2026-09-05T19:03:23Z Jsamwrites 938 309136 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41210" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41203", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z1", { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } ] } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z13052", "Z13052K2": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "C, Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8q342l02pmdlisbks6f8y6eregftk0j 309137 309136 2026-09-05T19:04:42Z Jsamwrites 938 309137 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41210" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41203", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z13052", "Z13052K2": { "Z1K1": "Z6091", "Z6091K1": "Q45575" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "C, Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } sbb9cklx14gbhohy4x4g7nja5hp0w5n Z41211 0 93335 309026 2026-09-05T16:30:09Z GrounderUK 50 [[Z41015]]➕[[Z20]] 309026 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41211" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41015", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41015", "Z41015K1": "42", "Z41015K2": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z40327", "Z40327K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z42" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object reference for Z42/True from \"42\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } px85i4i4tolw5g310y12s7pi9guoq8n Z41212 0 93336 309033 2026-09-05T16:43:25Z Jsamwrites 938 309033 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ariok0pu10znqnweur0aqqp5o198j2u 309035 309033 2026-09-05T16:44:24Z Jsamwrites 938 Added Z41213 to the approved list of implementations 309035 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41213" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8qack5qpffz99ifiw4fggvwvyhpebkv 309036 309035 2026-09-05T16:45:40Z Jsamwrites 938 Removed Z41213 from the approved list of implementations 309036 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ariok0pu10znqnweur0aqqp5o198j2u 309037 309036 2026-09-05T16:45:59Z Jsamwrites 938 309037 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pa4bgmlm96t24il8p6w4wmjlkuhbr7z 309038 309037 2026-09-05T16:46:05Z Jsamwrites 938 Added Z41213 to the approved list of implementations 309038 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41213" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ipdx830x50y8j8lya863gtx4h0gmeak 309042 309038 2026-09-05T16:52:32Z Jsamwrites 938 Added Z41214 to the approved list of test cases 309042 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41212" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41212K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20", "Z41214" ], "Z8K4": [ "Z14", "Z41213" ], "Z8K5": "Z41212" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 058qj6lcyowxnyfmccyjv8tj2pd3dq7 Z41213 0 93337 309034 2026-09-05T16:44:13Z Jsamwrites 938 309034 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41213" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41212", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z18", "Z18K1": "Z41212K1" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } c0mtrhsx8cr43gc0av76ciymzuf2b9t Z41214 0 93338 309039 2026-09-05T16:48:15Z Jsamwrites 938 309039 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41214" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41212", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41212", "Z41212K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject-Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rx7hik88rtequ25cyxrtzz8wzk9rpns 309040 309039 2026-09-05T16:49:20Z Jsamwrites 938 309040 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41214" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41212", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41212", "Z41212K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject-Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mai1p00bwmwkmsfoe6gikr5qppo4xt9 309041 309040 2026-09-05T16:50:21Z Jsamwrites 938 309041 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41214" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41212", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41212", "Z41212K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject-Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 23lolgiat7bezasfdfz2ybogd78pcp5 Z41215 0 93339 309043 2026-09-05T16:53:12Z Jsamwrites 938 Create function: property of Wikidata proposition 309043 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hhykbhgrbuvti0mnftqzxgtoqel2kon 309045 309043 2026-09-05T16:53:52Z Jsamwrites 938 Added Z41216 to the approved list of implementations 309045 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41216" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } h9t0jinhnjrwvxm4w8s5w0smsyk9bop 309049 309045 2026-09-05T16:57:21Z Jsamwrites 938 Added Z41217 to the approved list of test cases 309049 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20", "Z41217" ], "Z8K4": [ "Z14", "Z41216" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qwiubh5h1poqf69z1vzoy0ufhnsvihl 309177 309049 2026-09-05T19:47:38Z Jsamwrites 938 Removed Z41216 from the approved list of implementations 309177 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20", "Z41217" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1gqn6dqnladi0sh0xrvg39xgo7qjw7s 309178 309177 2026-09-05T19:47:41Z Jsamwrites 938 Removed Z41217 from the approved list of test cases 309178 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hhykbhgrbuvti0mnftqzxgtoqel2kon 309179 309178 2026-09-05T19:47:58Z Jsamwrites 938 309179 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z6092", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } t0742mf7vnshly6fw1y151qlvdbytda 309180 309179 2026-09-05T19:48:04Z Jsamwrites 938 Added Z41216 to the approved list of implementations 309180 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z6092", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41216" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lk2w4es7vtopvuc1cl4pbu39j16sabg 309181 309180 2026-09-05T19:48:07Z Jsamwrites 938 Added Z41217 to the approved list of test cases 309181 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41215" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41215K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z6092", "Z8K3": [ "Z20", "Z41217" ], "Z8K4": [ "Z14", "Z41216" ], "Z8K5": "Z41215" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fyftkdjan4dnqppr3spoyb2eocix9d0 Z41216 0 93340 309044 2026-09-05T16:53:15Z Jsamwrites 938 Create implementation for Z41215 309044 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41216" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41215", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z18", "Z18K1": "Z41215K1" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6rr9bho1zow3w1t67lri3p9tn407wto 309046 309044 2026-09-05T16:54:51Z Jsamwrites 938 309046 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41216" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41215", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z7", "Z7K1": "Z822", "Z822K1": { "Z1K1": "Z18", "Z18K1": "Z41215K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7lb6ptqx5obsguw95hjkjingwnpfma2 Z41217 0 93341 309047 2026-09-05T16:55:57Z Jsamwrites 938 Create test for Z41215 309047 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41217" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41215", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property-Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gkc6uvroqph6cl41ffzjvh1q8hf0r9h 309048 309047 2026-09-05T16:57:08Z Jsamwrites 938 309048 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41217" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41215", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z19267", "Z19267K2": { "Z1K1": "Z6092", "Z6092K1": "P178" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property-Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5u62plxxib1t0sw40iv8wavbm95rdhm Z41218 0 93342 309050 2026-09-05T16:59:20Z Jsamwrites 938 Create function: values of Wikidata proposition 309050 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41218" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41218K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41218" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } j8xpxssjwm51e7kmhynj28vvlbe3wt5 309052 309050 2026-09-05T17:00:13Z Jsamwrites 938 Added Z41219 to the approved list of implementations 309052 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41218" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41218K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41219" ], "Z8K5": "Z41218" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6lfuj9m4tlk8aeif1fgjkrz2vf5rrys 309054 309052 2026-09-05T17:00:44Z Jsamwrites 938 Added Z41220 to the approved list of test cases 309054 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41218" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z17K2": "Z41218K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20", "Z41220" ], "Z8K4": [ "Z14", "Z41219" ], "Z8K5": "Z41218" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } h2berjgp94c4btaqthx9f1ociz92g1q Z41219 0 93343 309051 2026-09-05T16:59:23Z Jsamwrites 938 Create implementation for Z41218 309051 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41219" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41218", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z821", "Z821K1": { "Z1K1": "Z18", "Z18K1": "Z41218K1" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0ga4ivplvm4xugyrj40qt205pt9zypt 309055 309051 2026-09-05T17:01:32Z Jsamwrites 938 309055 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41219" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41218", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z822", "Z822K1": { "Z1K1": "Z7", "Z7K1": "Z822", "Z822K1": { "Z1K1": "Z18", "Z18K1": "Z41218K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } by5bcsutu5ns1kun6pmelrcdsahjn0t Z41220 0 93344 309053 2026-09-05T17:00:28Z Jsamwrites 938 Create test for Z41218 309053 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41220" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41218", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mf0oncf340t79gsbv6ua09cnsib2hyu 309056 309053 2026-09-05T17:02:18Z Jsamwrites 938 309056 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41220" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41218", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ], "Z18646K3": "Z19316" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values of Wikidata proposition, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ds8jmhg1m7dcjycmh6s0lhgqd6sme2e Talk:Z39271 1 93345 309061 2026-09-05T17:09:40Z YoshiRulz 10156 Add to category 309061 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] 6yk1ukx4ym5k4mxx1ju7d3bf1hv2np9 309063 309061 2026-09-05T17:14:03Z YoshiRulz 10156 Add function tree 309063 wikitext text/x-wiki [[Category:Semantic_fragments_needing_no_extra_arguments]] <onlyinclude>{{show function tree|hardcoded=Z39271;Z37005;z37017;Z37286}}</onlyinclude> o5pt9p4owxik4t7st7p9uxtv2e7h8zc Z41221 0 93346 309065 2026-09-05T17:37:12Z HenkvD 1290 depicted by-sentence, Default 309065 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41221" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41221K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect (tense)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41221K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41221" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "depicted by-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6ycoqaw84a7q4m92s104xxr74n5ptbq 309067 309065 2026-09-05T17:39:05Z HenkvD 1290 Added Z41222 to the approved list of test cases 309067 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41221" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41221K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect (tense)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41221K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41222" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41221" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "depicted by-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 48jww5dnze0thb74shjgvy232zvfp9d 309071 309067 2026-09-05T17:45:44Z HenkvD 1290 Added Z41223 to the approved list of implementations 309071 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41221" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41221K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41221K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect (tense)" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41221K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41222" ], "Z8K4": [ "Z14", "Z41223" ], "Z8K5": "Z41221" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "depicted by-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } a8947s85v1spcz6dszxu4j3pvevgjyh Z41222 0 93347 309066 2026-09-05T17:38:53Z HenkvD 1290 309066 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41222" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41221", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41221", "Z41221K1": { "Z1K1": "Z6091", "Z6091K1": "Q3766029" }, "Z41221K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41221K3": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" }, "Z41221K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "tbd" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tbd" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0yjpeaun98ndfgfzmk9z0xcwviz9fr2 309072 309066 2026-09-05T17:49:39Z HenkvD 1290 [nl] ❌≪Giotto di Bondone (is depicted by) Vijf Meesters, Q104560265 en Via veritas.≫❌ 309072 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41222" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41221", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41221", "Z41221K1": { "Z1K1": "Z6091", "Z6091K1": "Q3766029" }, "Z41221K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41221K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41221K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "❌≪Giotto di Bondone (is depicted by) Vijf Meesters, Q104560265 en Via veritas.≫❌" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪Giotto (is depicted by) Vijf Meesters, Q en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪Giotto di Bondone (is depicted by) Vijf Meesters, Q104560265 en Via veritas.≫❌" } ] } } lnlrwqapbh76vgr0dedvt16o4yti6pv 309073 309072 2026-09-05T17:52:54Z HenkvD 1290 corrected entity 309073 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41222" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41221", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41221", "Z41221K1": { "Z1K1": "Z6091", "Z6091K1": "Q7814" }, "Z41221K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41221K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41221K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "❌≪Giotto di Bondone (is depicted by) Vijf Meesters, Q104560265 en Via veritas.≫❌" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪Giotto (is depicted by) Vijf Meesters, Q en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪Giotto di Bondone (is depicted by) Vijf Meesters, Q104560265 en Via veritas.≫❌" } ] } } mz06vii6mxmto4lxzqbj77bkhht7fk4 Z41223 0 93348 309070 2026-09-05T17:45:28Z HenkvD 1290 depicted by-sentence, Default, Composition 309070 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41223" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41221", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41221K2" }, "Z802K2": "(It)", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41221K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41221K4" } } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41221K3" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": "(was depicted by)" }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": "(is depicted by)" } }, { "Z1K1": "Z7", "Z7K1": "Z37870", "Z37870K1": { "Z1K1": "Z18", "Z18K1": "Z41221K1" }, "Z37870K2": { "Z1K1": "Z6092", "Z6092K1": "P1299" }, "Z37870K3": { "Z1K1": "Z18", "Z18K1": "Z41221K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41221K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "depicted by-sentence, Default, Composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } k6guccpi62o09dktjzvpfzv01uha8qr Z41224 0 93349 309075 2026-09-05T17:57:45Z HenkvD 1290 main subject-sentence, Default 309075 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41224" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41224K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41224K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41224" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "main subject-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } k2ix5juiifwq0x750423agatxr73s2y 309077 309075 2026-09-05T17:59:07Z HenkvD 1290 Added Z41225 to the approved list of test cases 309077 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41224" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41224K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41224K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41225" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41224" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "main subject-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qmjqlryoflty6qjf40qgus88oe51oz5 309080 309077 2026-09-05T18:04:54Z HenkvD 1290 Added Z41226 to the approved list of implementations 309080 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41224" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41224K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41224K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41224K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41225" ], "Z8K4": [ "Z14", "Z41226" ], "Z8K5": "Z41224" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "main subject-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ihx6jh3bv8ooecb7b1qhv1h52q47zel Z41225 0 93350 309076 2026-09-05T17:58:52Z HenkvD 1290 309076 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41225" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41224", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41224", "Z41224K1": { "Z1K1": "Z6091", "Z6091K1": "Q2017" }, "Z41224K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41224K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41224K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "tbd" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tbd" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 4nubm6ym9spjfayoq18cu9j9llcg7cf 309079 309076 2026-09-05T18:04:44Z HenkvD 1290 [nl] ❌≪(The main subjects of) Wikitravel (include) reisgids.≫❌ 309079 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41225" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41224", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41224", "Z41224K1": { "Z1K1": "Z6091", "Z6091K1": "Q2017" }, "Z41224K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41224K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41224K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "❌≪(The main subjects of) Wikitravel (include) reisgids.≫❌" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪(The main subjects of) Wikitravel (include)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪(The main subjects of) Wikitravel (include) reisgids.≫❌" } ] } } 2tctj90ixh05iknhrk9u23pmfejz0ts Z41226 0 93351 309078 2026-09-05T18:03:31Z HenkvD 1290 main subject-sentence, Default, Composition 309078 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41226" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41224", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41224K2" }, "Z802K2": "(Its main subjects)", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z15175", "Z15175K1": "(The main subjects of)", "Z15175K2": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41224K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41224K4" } }, "Z15175K3": " " } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41224K3" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": "(included)" }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": "(include)" } }, { "Z1K1": "Z7", "Z7K1": "Z37870", "Z37870K1": { "Z1K1": "Z18", "Z18K1": "Z41224K1" }, "Z37870K2": { "Z1K1": "Z6092", "Z6092K1": "P921" }, "Z37870K3": { "Z1K1": "Z18", "Z18K1": "Z41224K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41224K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "main subject-sentence, Default, Composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jdju7fpyw6wrgulqlphmqqlwvitjpln Translations:Wikifunctions:Status updates/2026-09-03/Page display title/de 1198 93352 309082 2026-09-05T18:05:42Z Ameisenigel 44 Created page with "Wikifunctions:Status-Updates/2026-09-13" 309082 wikitext text/x-wiki Wikifunctions:Status-Updates/2026-09-13 teaenff9sd9xghfxansmoxoz1v3sias Wikifunctions:Status updates/2026-09-03/de 4 93353 309083 2026-09-05T18:05:43Z Ameisenigel 44 Created page with "Wikifunctions:Status-Updates/2026-09-13" 309083 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Previous update</span> | prev = 2026-08-28 | nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span> | next = }} <div lang="en" dir="ltr" class="mw-content-ltr"> === 5,000 Functions, passing Z40000 === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] 0in38ngws6n4je6w4vlob0exxrgxo01 309085 309083 2026-09-05T18:05:46Z Ameisenigel 44 Created page with "Vorheriges Update" 309085 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = <span lang="en" dir="ltr" class="mw-content-ltr">Next update</span> | next = }} <div lang="en" dir="ltr" class="mw-content-ltr"> === 5,000 Functions, passing Z40000 === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] cn78tk450cw2yuy7iihojmyupzfjclk 309087 309085 2026-09-05T18:05:48Z Ameisenigel 44 Created page with "Nächstes Update" 309087 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <div lang="en" dir="ltr" class="mw-content-ltr"> === 5,000 Functions, passing Z40000 === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] qalqzh0o2nf4871w4qfjfj9oqkp1fc8 309089 309087 2026-09-05T18:06:12Z Ameisenigel 44 Created page with "=== 5.000 Funktionen, Z40000 überschritten ===" 309089 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === <div lang="en" dir="ltr" class="mw-content-ltr"> These days we crossed 5,000 Functions, and we passed the ZID Z40000. Both are little, symbolic milestones that give us an opportunity to reflect and to try to put these numbers in context. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] 2p3q3kizkdznp5h71ahjfvd9r1r1q6a 309091 309089 2026-09-05T18:07:35Z Ameisenigel 44 Created page with "Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen." 309091 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. <div lang="en" dir="ltr" class="mw-content-ltr"> The ZID is obviously the more meaningless of the two numbers, but the more visible one, as we see the ZID in the URL and on most pages on Wikifunctions. We always try to display labels instead or in addition, nevertheless we can see the steady progression of ZIDs going through the five digit space, now starting with a '4'. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] lw7na3yadx43v3r858pc8q878lbg67y 309093 309091 2026-09-05T18:09:01Z Ameisenigel 44 Created page with "Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'." 309093 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. <div lang="en" dir="ltr" class="mw-content-ltr"> Why is the ZID number so much higher than the number of Functions? Isn’t Wikifunctions all about Functions? </div> <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] l9ewgsm4cs7muref5s0kc8r9ez1eq21 309095 309093 2026-09-05T18:09:17Z Ameisenigel 44 Created page with "Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen?" 309095 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? <div lang="en" dir="ltr" class="mw-content-ltr"> That’s a very healthy sign. First, community created Functions and content started at Z10000, all ZIDs shorter than five digits are pre-loaded, special content. The bulk of them are the languages that Wikifunctions supports, more than a thousand, as well as the basic Types and a number of Built-in Functions that allow special capabilities like fetching Items or Lexemes from Wikidata. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] ltd0jtbpmd10obt6nnc4zwj195hm2rt 309097 309095 2026-09-05T18:10:50Z Ameisenigel 44 Created page with "Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten..." 309097 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. <div lang="en" dir="ltr" class="mw-content-ltr"> Second, every Function comes with supporting Objects, and these Objects each get their own ZID. So the 5,000 Functions are accompanied by more than 15,000 Test cases. The Test cases are the best way to ensure the meaning of a Function, that is, to capture what a Function should return given a specific input. Test cases are a great way to document and understand a Function, especially communicating this across languages. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] owqdd7a0myn5vyawv4wry9wb13hv954 309107 309097 2026-09-05T18:22:37Z Ameisenigel 44 Created page with "Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikat..." 309107 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. <div lang="en" dir="ltr" class="mw-content-ltr"> The other Type of Objects supporting a Function are its Implementations. We currently have more than 9,000 Implementations for the Functions we have. Implementations are available in JavaScript, Python, or in Compositions (which allows to compose other Function calls together). A full test run of all Tests of a Function against all Implementations of a Functions for all Functions leads to '''more than 25,000 test runs'''. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] tsvx0j6j065ectw3ca4uo0qod7axv6g 309109 309107 2026-09-05T18:24:28Z Ameisenigel 44 Created page with "Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000..." 309109 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000 Testdurchläufe'''. <div lang="en" dir="ltr" class="mw-content-ltr"> Having said that, there are [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 more than a hundred Functions that do not have a single connected Test]. Some of these Functions might well be candidates for a little cleanup, but others seem to be good candidates for getting their Tests connected! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] o8884c8558zdiwlt2rfcgq230at7qr4 309116 309109 2026-09-05T18:27:54Z Ameisenigel 44 Created page with "Dabei gibt es [$1 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden!" 309116 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000 Testdurchläufe'''. Dabei gibt es [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden! <div lang="en" dir="ltr" class="mw-content-ltr"> Thanks to all contributors to Wikifunctions! These milestones are not goals, but they mark your incredible work. I am particularly happy to have these reflections following a week that marked a record 178 new Functions being created! Wow. A selection of new Functions you can find further below. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] r3kqxndn8zfhe1j17d0an3zzxt9m56c 309121 309116 2026-09-05T18:42:23Z Ameisenigel 44 Created page with "Danke an alle, die zu Wikifunctions beitragen! Diese Meilensteine ​​sind keine bloßen Ziele, sondern würdigen eure großartige Arbeit. Ich freue mich besonders über diesen Rückblick nach einer Woche, in der mit 178 neu erstellten Funktionen ein Rekord aufgestellt wurde! Wow. Eine Auswahl der neuen Funktionen findet sich weiter unten." 309121 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000 Testdurchläufe'''. Dabei gibt es [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden! Danke an alle, die zu Wikifunctions beitragen! Diese Meilensteine ​​sind keine bloßen Ziele, sondern würdigen eure großartige Arbeit. Ich freue mich besonders über diesen Rückblick nach einer Woche, in der mit 178 neu erstellten Funktionen ein Rekord aufgestellt wurde! Wow. Eine Auswahl der neuen Funktionen findet sich weiter unten. <div lang="en" dir="ltr" class="mw-content-ltr"> === Recent Changes in the software === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] jy6x4kig624b344di30k1ujezwdptow 309123 309121 2026-09-05T18:42:26Z Ameisenigel 44 Created page with "=== Letzte Änderungen an der Software ===" 309123 wikitext text/x-wiki <languages/> {{Wikifunctions updates | prevlabel = Vorheriges Update | prev = 2026-08-28 | nextlabel = Nächstes Update | next = }} <span id="5,000_Functions,_passing_Z40000"></span> === 5.000 Funktionen, Z40000 überschritten === Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000 Testdurchläufe'''. Dabei gibt es [https://www.wikifunctions.org/w/index.php?title=Special:ListFunctionsByTests&max=0&min=&status%5B0%5D=connected&wpFormIdentifier=testfilters&offset=&limit=250 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden! Danke an alle, die zu Wikifunctions beitragen! Diese Meilensteine ​​sind keine bloßen Ziele, sondern würdigen eure großartige Arbeit. Ich freue mich besonders über diesen Rückblick nach einer Woche, in der mit 178 neu erstellten Funktionen ein Rekord aufgestellt wurde! Wow. Eine Auswahl der neuen Funktionen findet sich weiter unten. <span id="Recent_Changes_in_the_software"></span> === Letzte Änderungen an der Software === <div lang="en" dir="ltr" class="mw-content-ltr"> On Abstract Wikipedia, we fixed an issue affecting longer articles: the column will now scroll to keep the preview within the viewport. This is the first step toward addressing wider issues with viewing and editing long Abstract articles ([[:phab:T429214|T429214]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> On Wikifunctions, Function read pages now have a Usage widget beneath the About widget, showing how many pages and wikis use the Function, either on Abstract Wikipedia or embedded in wikitext ([[:phab:T434141|T434141]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We also added [[Z869|Z869]] to convert inputs such as “Z1234” into references, replacing [[Z32144|Z32144]] with simpler, faster code ([[:phab:T436107|T436107]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Finally, clicking on a link inside a pasteable item on the clipboard will now paste the item, rather than follow the link (and potentially lose your edit). If you wish to follow the link, you can use a key modifier (like shift-click, depending on your browser) to open in a new tab or window, which is unaffected ([[:phab:T433743|T433743]]). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === News in Types: Grapheme === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> “In linguistics, a grapheme is the smallest functional unit of a writing system.”, says [[:en:Grapheme|English Wikipedia]]. “A user-perceived character; smallest functional writing unit, the grapheme. Includes not just the "base" character but also the sequence of combiners.”, summarizes the [[Wikifunctions:Type proposals/Grapheme|Type proposal]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> Quoting the use cases from the proposal: Often, we need to process Strings by user-perceived character. "1️⃣" should be processed as one grapheme, not three characters (1+variation selector+combining keycap⃣). When the user wants to select the last character of "I won't decline this proposal 1️⃣", they want to select the full 1️⃣, not just the ⃣. Likewise, we don't want nonsense like ⃣1 to emerge when we reverse the String. This doesn't just apply to keycap emojis. It also applies to real natural-language writing systems, like the grapheme "A̧" (A+̧). </div> <div lang="en" dir="ltr" class="mw-content-ltr"> To do all of that, we need to split a String into graphemes, and to do that, we need the grapheme type. Such a splitter would fix [[Z22735|characters with diacritics (Z22735)]]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The Type is now available: [[Z40783|Grapheme (Z40783)]]. We invite contributors to write Functions with the new Type. Thanks to everyone who contributed to the proposal: [[User:Aaron Liu|Aaron Liu]] for writing it, and [[User:YoshiRulz|YoshiRulz]], [[User:So9q|So9q]], [[User:Jsamwrites|Jsamwrites]], [[User:Feeglgeef|Feeglgeef]], [[User:Ameisenigel|Ameisenigel]], and [[User:JhowieNitnek|JhowieNitnek]] for participating in the proposal. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> We invite you all to create new and discuss the existing [[Wikifunctions:Type proposals|Type proposals]] so we can keep on creating new Types. Thanks to all the community members contributing to the discussion and writing proposals, making it possible to extend Wikifunctions to new domains! </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Volunteers’ Corner on 7 September === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1788802200 Monday, 7 September 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a Function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet]. </div> <div lang="en" dir="ltr" class="mw-content-ltr"> === Fresh Functions weekly: 178 new Functions (!) === </div> <div lang="en" dir="ltr" class="mw-content-ltr"> This week we had 178 new functions – a record number of new Functions!. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing! </div> * {{Z|Z39948}} * {{Z|Z39952}} * {{Z|Z39957}} * {{Z|Z39963}} * {{Z|Z39972}} * {{Z|Z39981}} * {{Z|Z39986}} * {{Z|Z39989}} * {{Z|Z40000}} * {{Z|Z40002}} * {{Z|Z40004}} * {{Z|Z40010}} * {{Z|Z40019}} * {{Z|Z40039}} * {{Z|Z40048}} * {{Z|Z40056}} * {{Z|Z40059}} * {{Z|Z40065}} * {{Z|Z40069}} * {{Z|Z40072}} * {{Z|Z40075}} * {{Z|Z40081}} * {{Z|Z40089}} * {{Z|Z40096}} * {{Z|Z40102}} * {{Z|Z40112}} * {{Z|Z40120}} * {{Z|Z40128}} * {{Z|Z40131}} * {{Z|Z40136}} * {{Z|Z40144}} * {{Z|Z40148}} * {{Z|Z40152}} * {{Z|Z40161}} * {{Z|Z40170}} * {{Z|Z40179}} * {{Z|Z40181}} * {{Z|Z40186}} * {{Z|Z40199}} * {{Z|Z40206}} * {{Z|Z40210}} * {{Z|Z40214}} * {{Z|Z40218}} * {{Z|Z40234}} * {{Z|Z40239}} * {{Z|Z40249}} * {{Z|Z40253}} * {{Z|Z40261}} * {{Z|Z40263}} * {{Z|Z40268}} * {{Z|Z40287}} * {{Z|Z40292}} * {{Z|Z40297}} * {{Z|Z40298}} * {{Z|Z40299}} * {{Z|Z40307}} * {{Z|Z40316}} * {{Z|Z40320}} * {{Z|Z40327}} * {{Z|Z40335}} * {{Z|Z40340}} * {{Z|Z40344}} * {{Z|Z40345}} * {{Z|Z40348}} * {{Z|Z40351}} * {{Z|Z40352}} * {{Z|Z40358}} * {{Z|Z40361}} * {{Z|Z40374}} * {{Z|Z40378}} * {{Z|Z40382}} * {{Z|Z40384}} * {{Z|Z40388}} * {{Z|Z40392}} * {{Z|Z40395}} * {{Z|Z40397}} * {{Z|Z40402}} * {{Z|Z40410}} * {{Z|Z40416}} * {{Z|Z40417}} * {{Z|Z40418}} * {{Z|Z40427}} * {{Z|Z40438}} * {{Z|Z40439}} * {{Z|Z40440}} * {{Z|Z40450}} * {{Z|Z40454}} * {{Z|Z40457}} * {{Z|Z40459}} * {{Z|Z40471}} * {{Z|Z40482}} * {{Z|Z40483}} * {{Z|Z40489}} * {{Z|Z40490}} * {{Z|Z40496}} * {{Z|Z40502}} * {{Z|Z40505}} * {{Z|Z40511}} * {{Z|Z40517}} * {{Z|Z40518}} * {{Z|Z40520}} * {{Z|Z40524}} * {{Z|Z40529}} * {{Z|Z40550}} * {{Z|Z40560}} * {{Z|Z40561}} * {{Z|Z40570}} * {{Z|Z40571}} * {{Z|Z40576}} * {{Z|Z40596}} * {{Z|Z40603}} * {{Z|Z40631}} * {{Z|Z40641}} * {{Z|Z40644}} * {{Z|Z40645}} * {{Z|Z40650}} * {{Z|Z40656}} * {{Z|Z40659}} * {{Z|Z40662}} <span lang="en" dir="ltr" class="mw-content-ltr">A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.</span> [[Category:Status updates{{#translation:}}|2026-08-28]] cmmi5nnm86kkj32w7zjhhwyfkthnlxz Translations:Wikifunctions:Status updates/2026-09-03/1/de 1198 93354 309084 2026-09-05T18:05:45Z Ameisenigel 44 Created page with "Vorheriges Update" 309084 wikitext text/x-wiki Vorheriges Update gip3hi7u0wf8jv7dena73ndlrx52ohv Translations:Wikifunctions:Status updates/2026-09-03/2/de 1198 93355 309086 2026-09-05T18:05:47Z Ameisenigel 44 Created page with "Nächstes Update" 309086 wikitext text/x-wiki Nächstes Update srj2pwwjkwr7a3zol9puxaaqvo0drwd Translations:Wikifunctions:Status updates/2026-09-03/3/de 1198 93356 309088 2026-09-05T18:06:12Z Ameisenigel 44 Created page with "=== 5.000 Funktionen, Z40000 überschritten ===" 309088 wikitext text/x-wiki === 5.000 Funktionen, Z40000 überschritten === lw9q9yocexw53tbuu8508wzd6iljk3j Translations:Wikifunctions:Status updates/2026-09-03/23/de 1198 93357 309090 2026-09-05T18:07:34Z Ameisenigel 44 Created page with "Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen." 309090 wikitext text/x-wiki Vor Kurzem haben wir die Marke von 5.000 Funktionen sowie die ZID Z40000 überschritten. Beides sind kleine, symbolische Meilensteine, die uns Gelegenheit geben, innezuhalten und zu versuchen, diese Zahlen in einen Kontext zu setzen. 503mhfp3uqheds4rvelfyq75av0jydg Translations:Wikifunctions:Status updates/2026-09-03/4/de 1198 93358 309092 2026-09-05T18:09:01Z Ameisenigel 44 Created page with "Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'." 309092 wikitext text/x-wiki Die ZID ist offensichtlich die weniger aussagekräftige der beiden Zahlen, aber die sichtbarere, da sie in der URL und auf den meisten Seiten auf Wikifunctions erscheint. Wir bemühen uns stets, stattdessen oder zusätzlich Bezeichnungen anzuzeigen, dennoch lässt sich der stetige Anstieg der ZIDs im fünfstelligen Zahlenraum beobachten, mittlerweile beginnen sie mit einer '4'. iqc5anq309sn3lyty3jtdii9v0cpcbo Translations:Wikifunctions:Status updates/2026-09-03/5/de 1198 93359 309094 2026-09-05T18:09:16Z Ameisenigel 44 Created page with "Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen?" 309094 wikitext text/x-wiki Warum ist die ZID-Nummer so viel höher als die Anzahl der Funktionen? Dreht sich bei Wikifunctions nicht alles um Funktionen? 3838g1lkckznrgbr2b1i3ip3x52jo4v Translations:Wikifunctions:Status updates/2026-09-03/6/de 1198 93360 309096 2026-09-05T18:10:50Z Ameisenigel 44 Created page with "Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten..." 309096 wikitext text/x-wiki Das ist ein sehr positives Zeichen. Zunächst einmal beginnen die von der Community erstellten Funktionen und Inhalte bei Z10000, alle ZIDs mit weniger als fünf Stellen beinhalten vorinstallierte, spezielle Inhalte. Den Großteil davon machen die von Wikifunctions unterstützten Sprachen aus, mehr als tausend an der Zahl, gefolgt von grundlegenden Typen sowie einer Reihe integrierter Funktionen, die spezielle Möglichkeiten bieten, wie etwa das Abrufen von Datenobjekten oder Lexemen aus Wikidata. j9puxcomjd8dl8h7ywzp2blkeak0v91 Talk:Z39170 1 93361 309101 2026-09-05T18:14:19Z YoshiRulz 10156 Add to category 309101 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 309103 309101 2026-09-05T18:18:19Z YoshiRulz 10156 Add function tree 309103 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] <onlyinclude>{{show function tree|hardcoded=Z39170;Z38916;z38917;Z38913}}</onlyinclude> cxdlxkcvbpv1ymg0ailov42dpsdozy1 Talk:Z38917 1 93362 309102 2026-09-05T18:14:30Z YoshiRulz 10156 Create redirect 309102 wikitext text/x-wiki #REDIRECT [[Talk:Z39170]] qwzq3sdr6q24t51fk27kbqy76dzv41e Translations:Wikifunctions:Status updates/2026-09-03/7/de 1198 93363 309106 2026-09-05T18:22:36Z Ameisenigel 44 Created page with "Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikat..." 309106 wikitext text/x-wiki Zweitens gehen mit jeder Funktion unterstützende Objekte einher, die jeweils eine eigene ZID erhalten. Somit stehen den 5.000 Funktionen mehr als 15.000 Tests gegenüber. Tests sind das beste Mittel, um die Bedeutung einer Funktion klarzustellen, also festzuhalten, welches Ergebnis eine Funktion bei einer bestimmten Eingabe liefern soll. Zudem eignen sich Tests hervorragend dazu, eine Funktion zu dokumentieren und verständlich zu machen, insbesondere bei der Kommunikation über Sprachgrenzen hinweg. 6zd98yecivdx4cmmra6zhogcl8ywnso Translations:Wikifunctions:Status updates/2026-09-03/8/de 1198 93364 309108 2026-09-05T18:24:27Z Ameisenigel 44 Created page with "Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000..." 309108 wikitext text/x-wiki Die andere Art von Objekten, die eine Funktion unterstützen, sind ihre Implementierungen. Derzeit verfügen wir über mehr als 9.000 Implementierungen für unsere Funktionen. Implementierungen sind in JavaScript, Python oder als Kompositionen verfügbar (wobei Letztere die Zusammenstellung mehrerer Funktionsaufrufe ermöglichen). Ein vollständiger Testlauf aller Tests einer Funktion gegen alle ihre Implementierungen für sämtliche Funktionen umfasst '''mehr als 25.000 Testdurchläufe'''. 7i5ehb3ld4lbwkchozwsc76oi1ebyf0 Talk:Z40701 1 93365 309110 2026-09-05T18:25:09Z YoshiRulz 10156 Add to category 309110 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_software]] 5ezbek82eql2m9po930s2aklgewz9s4 309114 309110 2026-09-05T18:27:45Z YoshiRulz 10156 Add function tree 309114 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_software]] {{Talk:Z40710}} k65xqcqzdzvy66mnaa9c9dp59l4jy19 Talk:Z40710 1 93366 309111 2026-09-05T18:25:12Z YoshiRulz 10156 Add to category 309111 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_software]] 5ezbek82eql2m9po930s2aklgewz9s4 309113 309111 2026-09-05T18:27:36Z YoshiRulz 10156 Add function tree 309113 wikitext text/x-wiki [[Category:Semantic_fragments_used_for_software]] <onlyinclude>{{show function tree|hardcoded=Z40710;Z40701;z40704;Z40703}}</onlyinclude> a0xhw0xccayiwq1npx5iozdnfamc55x Talk:Z40704 1 93367 309112 2026-09-05T18:25:25Z YoshiRulz 10156 Create redirect 309112 wikitext text/x-wiki #REDIRECT [[Talk:Z40710]] 0afjbi2yz6d8c9nqxxo22kcuxvwnkdi Translations:Wikifunctions:Status updates/2026-09-03/9/de 1198 93368 309115 2026-09-05T18:27:54Z Ameisenigel 44 Created page with "Dabei gibt es [$1 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden!" 309115 wikitext text/x-wiki Dabei gibt es [$1 mehr als hundert Funktionen, die keinen einzigen verbundenen Test haben]. Einige dieser Funktionen wären durchaus Kandidaten für eine kleine Bereinigung, doch andere sind hervorragend dafür geeignet, dass ihre Tests verbunden werden! iielhaqk7eoo8u1yncqqx3h2ji9hmef Translations:Wikifunctions:Status updates/2026-09-03/10/de 1198 93369 309120 2026-09-05T18:42:23Z Ameisenigel 44 Created page with "Danke an alle, die zu Wikifunctions beitragen! Diese Meilensteine ​​sind keine bloßen Ziele, sondern würdigen eure großartige Arbeit. Ich freue mich besonders über diesen Rückblick nach einer Woche, in der mit 178 neu erstellten Funktionen ein Rekord aufgestellt wurde! Wow. Eine Auswahl der neuen Funktionen findet sich weiter unten." 309120 wikitext text/x-wiki Danke an alle, die zu Wikifunctions beitragen! Diese Meilensteine ​​sind keine bloßen Ziele, sondern würdigen eure großartige Arbeit. Ich freue mich besonders über diesen Rückblick nach einer Woche, in der mit 178 neu erstellten Funktionen ein Rekord aufgestellt wurde! Wow. Eine Auswahl der neuen Funktionen findet sich weiter unten. ee69dfl5lcexixj1sqdajmjyzamtfg1 Translations:Wikifunctions:Status updates/2026-09-03/11/de 1198 93370 309122 2026-09-05T18:42:26Z Ameisenigel 44 Created page with "=== Letzte Änderungen an der Software ===" 309122 wikitext text/x-wiki === Letzte Änderungen an der Software === owrlw2m6o36leoohdu60use5kie2fbo Talk:Z38508 1 93371 309125 2026-09-05T18:47:51Z YoshiRulz 10156 Add to category 309125 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 309129 309125 2026-09-05T18:50:06Z YoshiRulz 10156 Add function tree 309129 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] {{Talk:Z39235}} 0mr801nzjpol82ezc5t6l5xmimj5mv3 Talk:Z39235 1 93372 309126 2026-09-05T18:47:53Z YoshiRulz 10156 Add to category 309126 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 309128 309126 2026-09-05T18:49:25Z YoshiRulz 10156 Add function tree 309128 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] <onlyinclude>{{show function tree|hardcoded=Z39235;Z38508;z38419;Z38406}}</onlyinclude> pxbovnepneioq2u81q4i7xoll4qfvnw Talk:Z38419 1 93373 309127 2026-09-05T18:48:17Z YoshiRulz 10156 Create redirect 309127 wikitext text/x-wiki #REDIRECT [[Talk:Z39235]] lm9buhg4vkg9ycacoszumhp7auxjckh Talk:Z38488 1 93374 309130 2026-09-05T18:52:31Z YoshiRulz 10156 Add to category 309130 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 309135 309130 2026-09-05T18:57:58Z YoshiRulz 10156 Add function tree 309135 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] {{Talk:Z39238}} btdjs5sj2vm8r0u80l0qtvnm1wpq1qo Talk:Z39238 1 93375 309131 2026-09-05T18:52:39Z YoshiRulz 10156 Add to category 309131 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] 1is2r4v24ovuhzzk2tcvj9q89qiih43 309134 309131 2026-09-05T18:57:40Z YoshiRulz 10156 Add function tree 309134 wikitext text/x-wiki [[Category:Semantic_fragment_functions]] <onlyinclude>{{show function tree|hardcoded=Z39238;Z38488;z38418;Z38405}}</onlyinclude> si6y5muae5827dr7aol2ihho7mln7qv Talk:Z38418 1 93376 309133 2026-09-05T18:56:03Z YoshiRulz 10156 Create redirect 309133 wikitext text/x-wiki #REDIRECT [[Talk:Z39238]] accv4a8kjqu9pdsleuzyrp6advu49aq Z41227 0 93377 309138 2026-09-05T19:08:31Z GrounderUK 50 [[Z140]]➕[[Z20]]: [[Z869]] <~ [[Z96]] 309138 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41227" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z140", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z140", "Z140K1": { "Z1K1": "Z7", "Z7K1": "Z30805", "Z30805K1": "Z869.Z8K2 != Z40 (==Z9)", "Z30805K2": { "Z1K1": "Z7", "Z7K1": "Z869", "Z869K1": { "Z1K1": "Z7", "Z7K1": "Z40256", "Z40256K1": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z41" } } } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Boolean: Z869( \"Z41\" )" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mrwic4ydqq80n14xihtg14tcifb6z5p Z41228 0 93378 309143 2026-09-05T19:15:38Z Jsamwrites 938 Create function: Wikidata proposition has Wikidata item values 309143 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41228" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41228K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subjects" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6092", "Z17K2": "Z41228K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "property" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41228K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "values" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" } } }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41228" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition has Wikidata item values" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } prlxaumrd8e6ltpgawj3oyvdqkgowz2 309148 309143 2026-09-05T19:17:36Z Jsamwrites 938 309148 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41228" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41228K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41228" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition has Wikidata item values" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } szrheh59gaubsb5k8m4qjej05chqijv 309153 309148 2026-09-05T19:19:28Z Jsamwrites 938 Added Z41229 to the approved list of implementations 309153 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41228" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41228K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41229" ], "Z8K5": "Z41228" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition has Wikidata item values" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 94rdazoh4b7h2i88fb86lwaah8wqd6p 309160 309153 2026-09-05T19:21:37Z Jsamwrites 938 Added Z41230 to the approved list of test cases 309160 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41228" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41228K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z41230" ], "Z8K4": [ "Z14", "Z41229" ], "Z8K5": "Z41228" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition has Wikidata item values" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 875zu3yzs5n1lhheb7ryxatffvkyb0j Z41229 0 93379 309152 2026-09-05T19:19:15Z Jsamwrites 938 309152 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41229" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41228", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z19352", "Z19352K1": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": "Z18", "Z18K1": "Z41228K1" } }, "Z19352K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition has Wikidata item values, com" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } am1sbzve3ffp5lly9cu148es7elucz3 Z41230 0 93380 309158 2026-09-05T19:21:25Z Jsamwrites 938 309158 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41230" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41228", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41228", "Z41228K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q45575" } ] } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "C, Wikidata proposition values, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7rdaqb5emx0vna6jfzqwmp4saphvxpf Z41231 0 93381 309164 2026-09-05T19:23:13Z Jsamwrites 938 309164 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41231" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41231K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41231" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object as Wikidata item reference list" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5zz342ukkrs1dyp5wdroo1dmnluivpl 309167 309164 2026-09-05T19:26:38Z Jsamwrites 938 Added Z41232 to the approved list of implementations 309167 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41231" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41231K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41232" ], "Z8K5": "Z41231" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object as Wikidata item reference list" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 44xdk8nhhallj8l2uwjauzv9j1t6wt4 309173 309167 2026-09-05T19:35:38Z Jsamwrites 938 Added Z41233 to the approved list of test cases 309173 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41231" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41231K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20", "Z41233" ], "Z8K4": [ "Z14", "Z41232" ], "Z8K5": "Z41231" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object as Wikidata item reference list" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } e8rizgsa6h0v8dvrmdnislqp4zko3y4 Z41232 0 93382 309166 2026-09-05T19:26:28Z Jsamwrites 938 309166 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41232" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41231", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19352", "Z19352K1": { "Z1K1": "Z18", "Z18K1": "Z41231K1" }, "Z19352K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41231", "Z41231K1": { "Z1K1": "Z18", "Z18K1": "Z41231K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z851", "Z851K1": "Z516", "Z851K2": [ "Z1" ] } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object as Wikidata item reference list, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1p7ofa7yadwza6eiyombvwhzllpiavr 309171 309166 2026-09-05T19:32:48Z Jsamwrites 938 309171 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41232" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41231", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19352", "Z19352K1": { "Z1K1": "Z18", "Z18K1": "Z41231K1" }, "Z19352K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } }, "Z802K2": { "Z1K1": "Z18", "Z18K1": "Z41231K1" }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z851", "Z851K1": "Z516", "Z851K2": [ "Z1" ] } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object as Wikidata item reference list, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } g56zut5f0drnnxaxv8uwku4x0na0023 Z41233 0 93383 309172 2026-09-05T19:35:28Z Jsamwrites 938 309172 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41233" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41231", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41231", "Z41231K1": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ] }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z13052", "Z13052K2": [ "Z1", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object as Wikidata item reference list, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } b6x8fbi8ulv06nrr5elh8gskblk61do 309174 309172 2026-09-05T19:36:27Z Jsamwrites 938 309174 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41233" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41231", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41231", "Z41231K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ] }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z13052", "Z13052K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Object as Wikidata item reference list, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dl69pt1uoliqpmfvyl8ipmkewz00kxg Z41234 0 93384 309175 2026-09-05T19:41:53Z Jsamwrites 938 Create function: English relational predicate body for WD prop 309175 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41234" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41234K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41234" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 92klyyjpjwqzq2dfcbq12rlrk71c16t 309176 309175 2026-09-05T19:42:20Z Jsamwrites 938 309176 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41234" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41234K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41234" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } i97ygi4iodpdjkpmtr4bgravv3y0mf5 309189 309176 2026-09-05T19:55:40Z Jsamwrites 938 Added Z41237 to the approved list of implementations 309189 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41234" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41234K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41237" ], "Z8K5": "Z41234" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ev3ub4sgrcomsfesegs41d5bj3xb9re 309193 309189 2026-09-05T20:04:29Z Jsamwrites 938 Added Z41238 to the approved list of test cases 309193 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41234" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41234K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41238" ], "Z8K4": [ "Z14", "Z41237" ], "Z8K5": "Z41234" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ghr7rko8opj1ic160nmb7wdzbhojiqj 309194 309193 2026-09-05T20:24:19Z Jsamwrites 938 309194 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41234" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41234K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41238" ], "Z8K4": [ "Z14", "Z41237" ], "Z8K5": "Z41234" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate body (passiv) for WD prop, En" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate (passive) body for Wikidata prop" } ] } } 6db18r2teg71g4tiapf1m3blighcx29 Z41235 0 93385 309182 2026-09-05T19:52:29Z Jsamwrites 938 Create function: Wikidata item values of Wikidata proposition 309182 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41235" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41235K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41235" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1j85n665i70xldf6wjmcb8rpg4nzhye 309184 309182 2026-09-05T19:53:55Z Jsamwrites 938 Added Z41236 to the approved list of implementations 309184 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41235" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41235K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41236" ], "Z8K5": "Z41235" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5arnbm20yq1lqv20sz58s7xpmo5rg8n 309185 309184 2026-09-05T19:54:46Z Jsamwrites 938 Removed Z41236 from the approved list of implementations 309185 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41235" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41235K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41235" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1j85n665i70xldf6wjmcb8rpg4nzhye 309186 309185 2026-09-05T19:55:09Z Jsamwrites 938 309186 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41235" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41235K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41235" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } m05je2ogj3kag74845wl2azmlc1yb2z 309187 309186 2026-09-05T19:55:15Z Jsamwrites 938 Added Z41236 to the approved list of implementations 309187 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41235" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41235K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41236" ], "Z8K5": "Z41235" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3yjllsvr9mbrlss1y1zhatxs3o04me8 Z41236 0 93386 309183 2026-09-05T19:53:44Z Jsamwrites 938 309183 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41236" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41235", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z41231", "Z41231K1": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": "Z18", "Z18K1": "Z41235K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata item values of Wikidata proposition, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ruberl4kxdb5ukcll5ylevbprn5ddpy Z41237 0 93387 309188 2026-09-05T19:55:29Z Jsamwrites 938 309188 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41237" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41234", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37289", "Z37289K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q12717679" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } } } ], "Z37289K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop, com" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qzo06k18w9xkwxchqfnw3zshhphefda 309190 309188 2026-09-05T20:00:12Z Jsamwrites 938 309190 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41237" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41234", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37289", "Z37289K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1230649" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } } } ], "Z37289K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop, com" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 25mx11qh7qdhq24yn4mnxythbpemrbr 309191 309190 2026-09-05T20:01:47Z Jsamwrites 938 309191 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41237" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41234", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1230649" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate body for WD prop, com" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } aotlb491jdjc4binqlwxw2h70s6g2ib 309195 309191 2026-09-05T20:24:53Z Jsamwrites 938 309195 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41237" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41234", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1230649" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41234K1" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (passiv) for WD prop, en, com" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } i1dtbkwi9re18ehowhx1ehcfobv03nh Z41238 0 93388 309192 2026-09-05T20:04:18Z Jsamwrites 938 309192 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41238" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41234", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z41234", "Z41234K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P178" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q639292" } ] } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "developed by Dennis" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "developed by Dennis, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8zew7g5w9h9fpsq29ztvqvgzxmbdf3r Z41239 0 93389 309196 2026-09-05T20:25:39Z Jsamwrites 938 Create function: relational predicate (active) for WD prop, en 309196 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41239" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41239K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41239" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (active) for WD prop, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate (passive) body for Wikidata prop" } ] } } jwvi8oq1l1u8gyphvzhnow0isax41lz 309198 309196 2026-09-05T20:26:36Z Jsamwrites 938 Added Z41240 to the approved list of implementations 309198 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41239" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41239K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41240" ], "Z8K5": "Z41239" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (active) for WD prop, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational predicate (passive) body for Wikidata prop" } ] } } o43u2i43rershzq97segl06fu14d7a2 Z41240 0 93390 309197 2026-09-05T20:26:30Z Jsamwrites 938 Create implementation for Z41239 309197 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41240" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41239", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q1230649" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (active) for WD prop, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3e25pnl1yl5v9lolshd0tgs3cpzimj1 309199 309197 2026-09-05T20:27:57Z Jsamwrites 938 309199 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41240" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41239", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q10345583" } ] }, { "Z1K1": "Z7", "Z7K1": "Z39610", "Z39610K1": { "Z1K1": "Z7", "Z7K1": "Z41235", "Z41235K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } }, "Z39610K2": { "Z1K1": "Z7", "Z7K1": "Z39736", "Z39736K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (active) for WD prop, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1khcbdjgu7sek9vlqo1kzeq7ecs88fx 309209 309199 2026-09-05T20:55:25Z Jsamwrites 938 309209 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41240" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41239", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z39537", "Z39537K1": { "Z1K1": "Z7", "Z7K1": "Z40131", "Z40131K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } } }, "Z39537K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q10345583" } ] }, { "Z1K1": "Z7", "Z7K1": "Z37289", "Z37289K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z41218", "Z41218K1": { "Z1K1": "Z18", "Z18K1": "Z41239K1" } }, "Z13464K3": "Z1002" }, "Z37289K2": "Z1002" } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "relational predicate (active) for WD prop, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ojnzacxjgfsa4jwbxvucwz0aih84q8t Z41241 0 93391 309210 2026-09-05T21:29:30Z Jsamwrites 938 Create function: English relational reduced predicate for Wikidata proposition 309210 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pvyayc8ope0li09psse7lm85f7hlkgr 309212 309210 2026-09-05T21:33:49Z Jsamwrites 938 Added Z41242 to the approved list of implementations 309212 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41242" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } egnu4gw1yi33b2akd5mnforl8v2qa7v 309214 309212 2026-09-05T21:40:23Z Jsamwrites 938 Removed Z41242 from the approved list of implementations 309214 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pvyayc8ope0li09psse7lm85f7hlkgr 309215 309214 2026-09-05T21:40:38Z Jsamwrites 938 309215 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 08ss9n4nvl3dg2e4kk6b3mt75owaj52 309216 309215 2026-09-05T21:40:45Z Jsamwrites 938 Added Z41242 to the approved list of implementations 309216 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41242" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rdan6xf8xxgom2i4ya2vwoob7hhbxs9 309218 309216 2026-09-05T21:42:05Z Jsamwrites 938 Added Z41243 to the approved list of test cases 309218 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41241" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41241K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41243" ], "Z8K4": [ "Z14", "Z41242" ], "Z8K5": "Z41241" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced predicate for Wikidata proposition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ng0m043ox9vw8raeaiq88u37gb86pzb Z41242 0 93392 309211 2026-09-05T21:33:36Z Jsamwrites 938 309211 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41242" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41241", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z7", "Z7K1": "Z40128", "Z40128K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } } }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1194697" } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41234", "Z41234K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z41239", "Z41239K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced pred for WD prop, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } g0hece8r77wm2id08wmojjd86571jcw 309213 309211 2026-09-05T21:39:27Z Jsamwrites 938 309213 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41242" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41241", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z13052", "Z13052K1": { "Z1K1": "Z7", "Z7K1": "Z40128", "Z40128K1": { "Z1K1": "Z7", "Z7K1": "Z41215", "Z41215K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } } }, "Z13052K2": { "Z1K1": "Z32789", "Z32789K1": { "Z1K1": "Z6091", "Z6091K1": "Q1194697" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z41234", "Z41234K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z41239", "Z41239K1": { "Z1K1": "Z18", "Z18K1": "Z41241K1" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English relational reduced pred for WD prop, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } oclmhd4ghab0zvvo6k7ke4fabr5vhax Z41243 0 93393 309217 2026-09-05T21:41:54Z Jsamwrites 938 309217 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41243" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41241", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z41241", "Z41241K1": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "K1": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q164573" } ], "K2": { "Z1K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } }, "K1": { "Z1K1": "Z6092", "Z6092K1": "P2283" }, "K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q15777" }, { "Z1K1": "Z6091", "Z6091K1": "Q2407" } ] } } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "using C and C++" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "using C and C++, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 44f80q9rsgtn9jt06smv3vvlj9nhhe2 Z41244 0 93394 309219 2026-09-05T21:43:36Z Jsamwrites 938 Create function: finite relational pred. for Wikidata proposition, en 309219 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41244" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z882", "Z882K1": "Z6092", "Z882K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" } } }, "Z17K2": "Z41244K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Wikidata proposition" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41244" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "finite relational pred. for Wikidata proposition, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0md9txg5giarw7hl30usyc8g42jrosh Talk:Z41162 1 93395 309221 2026-09-06T03:07:00Z Carnildo 54460 /* What sort of thinking are you doing? */ new section 309221 wikitext text/x-wiki == What sort of thinking are you doing? == If I were to create a Spanish version of this function, would I use "pensar" (objective thoughts and plans) or "creer" (beliefs, opinions, and judgments)? For the past tense, were those thoughts held continuously (pensó/pensaron and creyó/creyeron), or were they given up (pensaba/pensaban and creía/creían)? [[User:Carnildo|Carnildo]] ([[User talk:Carnildo|talk]]) 03:07, 6 September 2026 (UTC) 6r94ai6u5viz4ya8in074690adivj2t Z41245 0 93396 309225 2026-09-06T03:47:39Z 99of9 1622 309225 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41245" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41245K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41245K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41245K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41245" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gz3fbaos78b1darieg4hqn8x6itpc3x 309228 309225 2026-09-06T03:59:33Z 99of9 1622 Added Z41246 to the approved list of implementations 309228 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41245" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41245K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41245K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41245K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41246" ], "Z8K5": "Z41245" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 35lbw7d6x5vh9tdlwt1mtfz07ttfuu6 309232 309228 2026-09-06T04:02:34Z 99of9 1622 Added Z41247 to the approved list of test cases 309232 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41245" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member item QID" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6091" }, "Z17K2": "Z41245K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "list of membership organizations" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41245K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "member entity repeated from prior text?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41245K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41245K5", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41247" ], "Z8K4": [ "Z14", "Z41246" ], "Z8K5": "Z41245" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, sentence default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dxv6puf74abyvhrsvl4py7xikdh023d Z41246 0 93397 309226 2026-09-06T03:58:30Z 99of9 1622 309226 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41246" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41245", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": "Z1360", "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z22514", "Z22514K1": [ "Z6", { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41245K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41245K5" } }, { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40253", "Z40253K1": { "Z1K1": "Z18", "Z18K1": "Z41245K5" }, "Z40253K2": { "Z1K1": "Z6092", "Z6092K1": "P463" } } }, { "Z1K1": "Z7", "Z7K1": "Z32308", "Z32308K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z36270", "Z13464K2": { "Z1K1": "Z18", "Z18K1": "Z41245K2" }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41245K5" } }, "Z32308K2": { "Z1K1": "Z18", "Z18K1": "Z41245K5" } } ] } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is a member of, default, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } a59jsv40cgsbjvk85e96cnf6whedl2m Z41247 0 93398 309229 2026-09-06T04:01:02Z 99of9 1622 309229 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41247" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41245", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41245", "Z41245K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41245K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q41550" }, { "Z1K1": "Z6091", "Z6091K1": "Q170481" } ], "Z41245K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41245K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41245K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": " Australia member Organization for Economic Cooperation and Development and Asia-Pacific Economic Cooperation." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English: \"Australia member OECD APEC.\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 194iep1pu5a0xd4w6vlukt30t8vceix 309230 309229 2026-09-06T04:01:24Z 99of9 1622 309230 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41247" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41245", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41245", "Z41245K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41245K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q41550" }, { "Z1K1": "Z6091", "Z6091K1": "Q170481" } ], "Z41245K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41245K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41245K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": " Australia member Organization for Economic Cooperation and Development and Asia-Pacific Economic Cooperation." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English: \"Australia member OECD \u0026 APEC.\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 38ov0n8uyfteclinrs00cf2hb4uw2hs 309231 309230 2026-09-06T04:02:16Z 99of9 1622 309231 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41247" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41245", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41245", "Z41245K1": { "Z1K1": "Z6091", "Z6091K1": "Q408" }, "Z41245K2": [ "Z6091", { "Z1K1": "Z6091", "Z6091K1": "Q41550" }, { "Z1K1": "Z6091", "Z6091K1": "Q170481" } ], "Z41245K3": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41245K4": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41245K5": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "Australia member Organization for Economic Cooperation and Development and Asia-Pacific Economic Cooperation." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English: \"Australia member OECD \u0026 APEC.\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5lgfgi9knftpp321ovivss9h3u2b5n9 Z41248 0 93399 309235 2026-09-06T04:58:37Z GZWDer 186 309235 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41248" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z8", "Z17K2": "Z41248K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "function" } ] } } ], "Z8K2": "Z38546", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41248" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "negate (for predicate)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returning the complement of the unary predicate" } ] } } lxriux8h074yxpijo737y4h78b7iidr 309237 309235 2026-09-06T05:14:29Z GZWDer 186 Added Z41249 to the approved list of implementations 309237 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41248" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z8", "Z17K2": "Z41248K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "function" } ] } } ], "Z8K2": "Z38546", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41249" ], "Z8K5": "Z41248" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "negate (for predicate)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returning the complement of the unary predicate" } ] } } n9b2xrqwuopxxy7q9frtd042xj5uf7m 309239 309237 2026-09-06T05:16:07Z GZWDer 186 Added Z41250 to the approved list of test cases 309239 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41248" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z8", "Z17K2": "Z41248K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "function" } ] } } ], "Z8K2": "Z38546", "Z8K3": [ "Z20", "Z41250" ], "Z8K4": [ "Z14", "Z41249" ], "Z8K5": "Z41248" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "negate (for predicate)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returning the complement of the unary predicate" } ] } } qo0jmf92czz74izmzh6wwralnumff0r 309463 309239 2026-09-06T10:33:26Z GZWDer 186 Removed Z41249 from the approved list of implementations 309463 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41248" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z8", "Z17K2": "Z41248K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "function" } ] } } ], "Z8K2": "Z38546", "Z8K3": [ "Z20", "Z41250" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41248" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "negate (for predicate)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "returning the complement of the unary predicate" } ] } } gfwju4907w2nh8pxgo943ddokqmaolm Z41249 0 93400 309236 2026-09-06T05:13:50Z GZWDer 186 309236 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41249" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41248", "Z14K2": { "Z1K1": "Z38546", "Z38546K1": { "Z1K1": "Z7", "Z7K1": "Z14779", "Z14779K1": "Z38881", "Z14779K2": { "Z1K1": "Z7", "Z7K1": "Z13831", "Z13831K1": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z13831K2": { "Z1K1": "Z7", "Z7K1": "Z12681", "Z12681K1": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } } }, "Z14779K3": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } }, "Z38546K2": { "Z1K1": "Z7", "Z7K1": "Z10112", "Z10112K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } }, "Z38546K3": [ "Z1", "Z10216", { "Z1K1": "Z7", "Z7K1": "Z810", "Z810K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" }, "Z810K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z38641", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z13831", "Z13831K1": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z13831K2": { "Z1K1": "Z7", "Z7K1": "Z12681", "Z12681K1": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } } } } } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bib0wwfe3qi87j81ib40q32s7p8aw4a 309486 309236 2026-09-06T11:21:44Z HenkvD 1290 label 309486 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41249" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41248", "Z14K2": { "Z1K1": "Z38546", "Z38546K1": { "Z1K1": "Z7", "Z7K1": "Z14779", "Z14779K1": "Z38881", "Z14779K2": { "Z1K1": "Z7", "Z7K1": "Z13831", "Z13831K1": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z13831K2": { "Z1K1": "Z7", "Z7K1": "Z12681", "Z12681K1": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } } }, "Z14779K3": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } }, "Z38546K2": { "Z1K1": "Z7", "Z7K1": "Z10112", "Z10112K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } }, "Z38546K3": [ "Z1", "Z10216", { "Z1K1": "Z7", "Z7K1": "Z810", "Z810K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" }, "Z810K2": { "Z1K1": "Z7", "Z7K1": "Z873", "Z873K1": "Z38641", "Z873K2": { "Z1K1": "Z7", "Z7K1": "Z13831", "Z13831K1": { "Z1K1": "Z13518", "Z13518K1": "1" }, "Z13831K2": { "Z1K1": "Z7", "Z7K1": "Z12681", "Z12681K1": { "Z1K1": "Z7", "Z7K1": "Z21177", "Z21177K1": { "Z1K1": "Z18", "Z18K1": "Z41248K1" } } } } } } ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "negate (for predicate), composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } f9u05fmsj6faounnt2o40ftdnhzkqjf Z41250 0 93401 309238 2026-09-06T05:15:44Z GZWDer 186 309238 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41250" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41248", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z38864", "Z38864K1": { "Z1K1": "Z7", "Z7K1": "Z41248", "Z41248K1": "Z12427" }, "Z38864K2": { "Z1K1": "Z13518", "Z13518K1": "6" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } e5d04634wwvzuruc88yr2ijm3p8oqdd 309485 309238 2026-09-06T11:21:11Z HenkvD 1290 label 309485 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41250" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41248", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z38864", "Z38864K1": { "Z1K1": "Z7", "Z7K1": "Z41248", "Z41248K1": "Z12427" }, "Z38864K2": { "Z1K1": "Z13518", "Z13518K1": "6" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "6, is prime -\u003E true" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gjljrs7ivlzpqgny4ly4sj5uhda39zk Z41251 0 93402 309247 2026-09-06T06:47:01Z Denny 81 309247 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme and Degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } gl831cl49gpms1jhluawvi8chn4n8y4 309249 309247 2026-09-06T06:49:14Z Denny 81 Added Z41252 to the approved list of test cases 309249 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme and Degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } 32z1o2nvp7eewz5cq8c8a7m5zxhdnkc 309273 309249 2026-09-06T07:02:56Z Denny 81 Added Z41264 to the approved list of implementations 309273 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252" ], "Z8K4": [ "Z14", "Z41264" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme and Degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } 5myvucudf83e4g671hnfenpolzngs97 309276 309273 2026-09-06T07:04:08Z Denny 81 Added Z41265 to the approved list of test cases 309276 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252", "Z41265" ], "Z8K4": [ "Z14", "Z41264" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme and Degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } n340n3v4yw3l79z4lxpanwlxpyma3ak 309348 309276 2026-09-06T09:04:15Z Denny 81 309348 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252", "Z41265" ], "Z8K4": [ "Z14", "Z41264" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lex ref \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } 4dhfsiijtidj5dnwgdhxx1nymgvuxpk 309350 309348 2026-09-06T09:04:53Z Denny 81 309350 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252", "Z41265" ], "Z8K4": [ "Z14", "Z41264" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lex ref \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme reference to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } 9x3vmnndmjloh9fwmogqecz375vlc34 309361 309350 2026-09-06T09:11:41Z Denny 81 Added Z41308 to the approved list of implementations 309361 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41251" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41251K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41251K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41251K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41252", "Z41265" ], "Z8K4": [ "Z14", "Z41264", "Z41308" ], "Z8K5": "Z41251" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lex ref \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme reference to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } ohcgvl74h142y3rtlq24vnydp6vwzoh Z41252 0 93403 309248 2026-09-06T06:49:03Z Denny 81 309248 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41252" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41251", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41251", "Z41251K1": { "Z1K1": "Z6095", "Z6095K1": "L3201" }, "Z41251K2": { "Z1K1": "Z6091", "Z6091K1": "Q14169499" }, "Z41251K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z89", { "Z1K1": "Z89", "Z89K1": "better" } ], "Z18646K3": "Z877" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "good, comparative -\u003E better" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } e9kn8rrg7qfkzax5a2q007x5bzvio4m Z41253 0 93404 309250 2026-09-06T06:51:09Z 鈴音雨 101019 309250 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41253" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41163", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41163", "Z41163K1": { "Z1K1": "Z20159", "Z20159K1": { "Z1K1": "Z17813", "Z17813K1": "Z17814" }, "Z20159K2": { "Z1K1": "Z13518", "Z13518K1": "2000" } }, "Z41163K2": "Z16102", "Z41163K3": "Z1360" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "2000/02" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[mul (fallback)] 2000/02" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2tdf32mrnjpfzw0qakf9r6w7cuo4gt2 Z41254 0 93405 309252 2026-09-06T06:53:42Z Jsamwrites 938 Create function: area-sentence, en 309252 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41254" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41254K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41254K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41254K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41254K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41254" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } s59w7646oc5sc7ujs0jbecu9xuel2qc 309274 309252 2026-09-06T07:03:49Z Jsamwrites 938 Added Z41255 to the approved list of implementations 309274 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41254" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41254K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41254K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41254K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41254K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41255" ], "Z8K5": "Z41254" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } q6ssbd7as3uhni8d9rrzoowt8wipr5e Z41255 0 93406 309253 2026-09-06T06:53:45Z Jsamwrites 938 Create implementation for Z41254 309253 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41255" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41254", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41254K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41254K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9852z8n4qnucp6v46pbs91sb0ecde39 309277 309253 2026-09-06T07:04:19Z Jsamwrites 938 309277 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41255" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41254", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41254K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41254K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } f15olcvta63mu8b0dfi8soxu3bwj4nq 309280 309277 2026-09-06T07:07:11Z Jsamwrites 938 309280 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41255" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41254", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40517", "Z40517K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "" } }, "Z40517K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" }, "Z40517K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z40517K4": { "Z1K1": "Z18", "Z18K1": "Z41254K2" }, "Z40517K5": { "Z1K1": "Z18", "Z18K1": "Z41254K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } tcm99p9cvi1vbbig032h1dryv6wl5bf 309281 309280 2026-09-06T07:07:56Z Jsamwrites 938 309281 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41255" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41254", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40517", "Z40517K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z40517K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" }, "Z40517K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z40517K4": { "Z1K1": "Z18", "Z18K1": "Z41254K2" }, "Z40517K5": { "Z1K1": "Z18", "Z18K1": "Z41254K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8a3ifg1w6jkpgtdvfyi4zvkb8z4v9zl 309282 309281 2026-09-06T07:12:33Z Jsamwrites 938 309282 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41255" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41254", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40517", "Z40517K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z40517K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" }, "Z40517K3": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z25326", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41254K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41254K4" } }, "Z40517K4": { "Z1K1": "Z18", "Z18K1": "Z41254K2" }, "Z40517K5": { "Z1K1": "Z18", "Z18K1": "Z41254K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dan9iywbsjxczfi4673z19m6nr2f2mx Z41256 0 93407 309254 2026-09-06T06:53:48Z Jsamwrites 938 Create function: manufacturer-sentence, en 309254 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41256" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41256K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41256K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41256K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41256K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41256" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } msw61ttxjc2wnapjzxlt78y3sdqn1ei 309270 309254 2026-09-06T07:02:01Z Jsamwrites 938 Added Z41257 to the approved list of implementations 309270 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41256" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41256K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41256K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41256K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41256K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41257" ], "Z8K5": "Z41256" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gp32obp6nz3a8saobc2dp4z416sxwj0 Z41257 0 93408 309255 2026-09-06T06:53:51Z Jsamwrites 938 Create implementation for Z41256 309255 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41257" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41256", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41256K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41256K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41256K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41256K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } feac8za1o6nikhrugqbtr05e11am7je 309271 309255 2026-09-06T07:02:36Z Jsamwrites 938 309271 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41257" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41256", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41256K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P176" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41256K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P176" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41256K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41256K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0gbvq86f228mx7wquiw3wo1e9ysj4fs Z41258 0 93409 309256 2026-09-06T06:53:54Z Jsamwrites 938 Create function: brand-sentence, en 309256 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41258" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41258K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41258K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41258K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41258K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41258" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } num25rwq2z3cmt1tzplx0p9czfdil3f 309269 309256 2026-09-06T07:00:02Z Jsamwrites 938 Added Z41259 to the approved list of implementations 309269 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41258" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41258K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41258K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41258K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41258K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41259" ], "Z8K5": "Z41258" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } i629hwx5fmzdwz3j36jtiddcaawt7v9 Z41259 0 93410 309257 2026-09-06T06:53:57Z Jsamwrites 938 Create implementation for Z41258 309257 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41259" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41258", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41258K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41258K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41258K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41258K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } k3fmfdedjfxyqvu7g379jiga20mwwfq 309268 309257 2026-09-06T06:59:53Z Jsamwrites 938 309268 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41259" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41258", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41258K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P1716" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41258K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P1716" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41258K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41258K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fg6gut7kn1p556avhxse48gxnu5sc3u Z41260 0 93411 309258 2026-09-06T06:54:00Z Jsamwrites 938 Create function: genre-sentence, en 309258 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41260" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41260K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41260K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41260K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41260K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41260" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bv7ytqohcebb0wq9gv0u7ln76n1v8h9 309267 309258 2026-09-06T06:58:04Z Jsamwrites 938 Added Z41261 to the approved list of implementations 309267 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41260" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41260K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41260K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41260K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41260K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41261" ], "Z8K5": "Z41260" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9amfnaaq65qplk6q8b241ugw04j4wl5 Z41261 0 93412 309259 2026-09-06T06:54:03Z Jsamwrites 938 Create implementation for Z41260 309259 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41261" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41260", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41260K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41260K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41260K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41260K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3ntsct4d4r9p8ev4lnqznore6os2851 309266 309259 2026-09-06T06:57:53Z Jsamwrites 938 309266 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41261" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41260", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41260K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P136" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41260K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P136" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41260K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41260K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lvj8rlu6fynvwlnhr1wymaqar24q5d2 Z41262 0 93413 309260 2026-09-06T06:54:06Z Jsamwrites 938 Create function: operating system-sentence, en 309260 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41262" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41262K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41262K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41262K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41262K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41262" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7dnpvt1tu0b4w2g926xymmj5y6tjtyz 309263 309260 2026-09-06T06:55:19Z Jsamwrites 938 Added Z41263 to the approved list of implementations 309263 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41262" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41262K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41262K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41262K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41262K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41263" ], "Z8K5": "Z41262" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, en" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } eq4grcdppjqx5zzsxufaeg3v45iha6j Z41263 0 93414 309261 2026-09-06T06:54:09Z Jsamwrites 938 Create implementation for Z41262 309261 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41263" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41262", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41262K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41262K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P3033" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41262K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41262K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 563rimi4111us0twrhrvvylimrvac5w 309262 309261 2026-09-06T06:55:09Z Jsamwrites 938 309262 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41263" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41262", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z22511", "Z22511K1": { "Z1K1": "Z7", "Z7K1": "Z14396", "Z14396K1": { "Z1K1": "Z7", "Z7K1": "Z40511", "Z40511K1": { "Z1K1": "Z7", "Z7K1": "Z14046", "Z14046K1": { "Z1K1": "Z18", "Z18K1": "Z41262K1" } }, "Z40511K2": { "Z1K1": "Z6092", "Z6092K1": "P306" }, "Z40511K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41262K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z40511K4": { "Z1K1": "Z18", "Z18K1": "Z41262K2" }, "Z40511K5": { "Z1K1": "Z18", "Z18K1": "Z41262K3" } } } }, "Z861K2": "Z1002" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, en, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } d7k2hwhym7zwm0kj5aozdqf118pr11e Z41264 0 93415 309272 2026-09-06T07:02:37Z Denny 81 309272 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41264" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41251", "Z14K2": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z27410", "Z27410K1": { "Z1K1": "Z7", "Z7K1": "Z6825", "Z6825K1": { "Z1K1": "Z18", "Z18K1": "Z41251K1" } }, "Z27410K2": [ "Z6091", { "Z1K1": "Z18", "Z18K1": "Z41251K2" } ] } } ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use degree for search directly" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } quxnp1f0yvjun8rkz97d0en65rtuyha Z41265 0 93416 309275 2026-09-06T07:03:55Z Denny 81 309275 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41265" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41251", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41251", "Z41251K1": { "Z1K1": "Z6095", "Z6095K1": "L22646" }, "Z41251K2": { "Z1K1": "Z6091", "Z6091K1": "Q3482678" }, "Z41251K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z89", { "Z1K1": "Z89", "Z89K1": "cranky" } ], "Z18646K3": "Z877" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "cranky, positive -\u003E cranky" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7gjt3slqf24qcj5idbh9m22mj6hb43w Z41266 0 93417 309283 2026-09-06T07:14:49Z Denny 81 309283 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41266" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41266K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41266" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for English adjective from item \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Wikidata item, it finds the English adjective lexeme, and then the function chooses a form based on the degree, and returns it as a listed HTML fragment" } ] } } pa9t2lxpdgp98abnve4i9oajc1xm29a 309337 309283 2026-09-06T09:02:04Z Denny 81 Added Z41293 to the approved list of test cases 309337 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41266" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41266K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41293" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41266" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for English adjective from item \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Wikidata item, it finds the English adjective lexeme, and then the function chooses a form based on the degree, and returns it as a listed HTML fragment" } ] } } okslag78trbgg6r031bmdmyzscfgy5z 309363 309337 2026-09-06T09:14:25Z Denny 81 Added Z41309 to the approved list of implementations 309363 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41266" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41266K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41266K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41293" ], "Z8K4": [ "Z14", "Z41309" ], "Z8K5": "Z41266" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for English adjective from item \u0026 degree" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Wikidata item, it finds the English adjective lexeme, and then the function chooses a form based on the degree, and returns it as a listed HTML fragment" } ] } } e817x3rnw6bzqg4lszbypfryf2azrtt Z41267 0 93418 309284 2026-09-06T07:15:52Z Jsamwrites 938 Create function: area-sentence, default 309284 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41267" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41267K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41267K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41267K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41267K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41267" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fbwjn5wus552azhux0zt22ncydbzw58 309304 309284 2026-09-06T07:25:11Z Jsamwrites 938 Added Z41268 to the approved list of implementations 309304 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41267" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41267K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41267K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41267K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41267K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41268" ], "Z8K5": "Z41267" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1gpjive6yjfdfs3mwirhsjpiz4yn2ly Z41268 0 93419 309285 2026-09-06T07:15:55Z Jsamwrites 938 Create implementation for Z41267 309285 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41268" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41267", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "(original language of work)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } nleba5f8mcksjd4uvwe7utjwcmqbsc0 309307 309285 2026-09-06T07:28:12Z Jsamwrites 938 309307 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41268" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41267", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "(area)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z25326", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5ee2kkj42zpb7b9uh3qofg6ns351klk 309308 309307 2026-09-06T07:28:44Z Jsamwrites 938 309308 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41268" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41267", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "(area)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z25326", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ev21arnwztotxrlzeb3zpipabul2bkr 309309 309308 2026-09-06T07:34:47Z Jsamwrites 938 309309 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41268" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41267", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "(area)" }, { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z18779", "Z18779K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z25326", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z13464K3": { "Z1K1": "Z9", "Z9K1": "" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } kaq8ittujxcgee39mafq7dhb1m4yu8g 309310 309309 2026-09-06T07:35:45Z Jsamwrites 938 309310 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41268" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41267", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "(area)" }, { "Z1K1": "Z7", "Z7K1": "Z26107", "Z26107K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z26107K2": { "Z1K1": "Z7", "Z7K1": "Z18779", "Z18779K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z25326", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41267K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P2046" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41267K4" } } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41267K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } d0ba8i1mhm4ekp0bgg8kjg7mi3o2zwo Z41269 0 93420 309286 2026-09-06T07:15:58Z Jsamwrites 938 Create function: manufacturer-sentence, default 309286 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41269" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41269K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41269K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41269K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41269K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41269" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gussq6x7a8et0t854nkwzm0v1dxemdu 309302 309286 2026-09-06T07:23:50Z Jsamwrites 938 Added Z41270 to the approved list of implementations 309302 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41269" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41269K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41269K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41269K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41269K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41270" ], "Z8K5": "Z41269" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1138k9zudxlbs73ff3mr3jjcyo8jw5h Z41270 0 93421 309287 2026-09-06T07:16:01Z Jsamwrites 938 Create implementation for Z41269 309287 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41270" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41269", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41269K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "(original language of work)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41269K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mcrsuo0r19s3tl2m0150qxi90561adv 309303 309287 2026-09-06T07:24:31Z Jsamwrites 938 309303 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41270" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41269", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41269K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "(manufacturer)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41269K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P176" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41269K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41269K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3hr0g1xtbodx0vrd2ybzglm1kitioi6 Z41271 0 93422 309288 2026-09-06T07:16:04Z Jsamwrites 938 Create function: brand-sentence, default 309288 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41271" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41271K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41271K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41271K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41271K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41271" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } mgcc7qye863sdlvyskqfkwucj3x9dp4 309300 309288 2026-09-06T07:22:20Z Jsamwrites 938 Added Z41272 to the approved list of implementations 309300 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41271" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41271K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41271K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41271K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41271K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41272" ], "Z8K5": "Z41271" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } q91649l3sogrgsydgzfsn4ilizxb3qq Z41272 0 93423 309289 2026-09-06T07:16:07Z Jsamwrites 938 Create implementation for Z41271 309289 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41272" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41271", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41271K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "(original language of work)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41271K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } em0lphcjc0jygnfdv6xn921zx0g9zs4 309301 309289 2026-09-06T07:22:55Z Jsamwrites 938 309301 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41272" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41271", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41271K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "(brand)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41271K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P1716" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41271K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41271K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } tbhevt0isnotvms331q42ntnoupt3j2 Z41273 0 93424 309290 2026-09-06T07:16:10Z Jsamwrites 938 Create function: genre-sentence, default 309290 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41273" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41273K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41273K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41273K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41273K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41273" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 89p1q0im4iczfzhjmc9z3nyfmk8pmhi 309297 309290 2026-09-06T07:19:44Z Jsamwrites 938 Added Z41274 to the approved list of implementations 309297 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41273" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41273K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41273K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41273K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41273K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41274" ], "Z8K5": "Z41273" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } s13dpj3y6nmszdbvig6em05p3rskvut Z41274 0 93425 309291 2026-09-06T07:16:14Z Jsamwrites 938 Create implementation for Z41273 309291 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41274" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41273", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41273K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "(original language of work)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41273K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2kpeq0y181d8yfg4d87hgqu7k9rjeye 309298 309291 2026-09-06T07:20:29Z Jsamwrites 938 309298 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41274" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41273", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41273K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "(genre)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41273K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P136" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41273K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41273K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 4cqmmhy8lccyjw6emssur28e2j19dqs Z41275 0 93426 309292 2026-09-06T07:16:16Z Jsamwrites 938 Create function: operating system-sentence, default 309292 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41275" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41275K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41275K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41275K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41275K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41275" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } k17l24u0p44brm85e12lrusmzegurvf 309295 309292 2026-09-06T07:17:39Z Jsamwrites 938 Added Z41276 to the approved list of implementations 309295 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41275" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41275K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41275K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41275K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41275K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41276" ], "Z8K5": "Z41275" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } b0ox6009eixocbyivborf4q8nyaqrrp Z41276 0 93427 309293 2026-09-06T07:16:20Z Jsamwrites 938 Create implementation for Z41275 309293 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41276" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41275", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41275K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "(original language of work)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41275K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P364" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 14dxk4ouc1kl1ranlmbjuekilv19zts 309294 309293 2026-09-06T07:17:28Z Jsamwrites 938 309294 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41276" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41275", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41275K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "(operating system)" }, { "Z1K1": "Z7", "Z7K1": "Z34644", "Z34644K1": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z31676", "Z13464K2": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z6821", "Z6821K1": { "Z1K1": "Z18", "Z18K1": "Z41275K1" } }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z13464K3": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } }, "Z34644K2": { "Z1K1": "Z18", "Z18K1": "Z41275K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41275K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, default, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 49ip58gahmaq8yl9fgj6o8e69fide3t Z41277 0 93428 309296 2026-09-06T07:18:49Z Jsamwrites 938 309296 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41277" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41262", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41275" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for operating system-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9b8i43izypedi2fndben36qds1tebu5 Z41278 0 93429 309299 2026-09-06T07:21:34Z Jsamwrites 938 309299 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41278" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41260", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41273" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for genre-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } cnd4qes80l2j9pst7psg1qzxjtg9cfy Z41279 0 93430 309305 2026-09-06T07:26:00Z Jsamwrites 938 309305 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41279" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41256", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41269" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for manufacturer-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 84ctwpvo34mum7sqlefveuu5b9ufcxv Z41280 0 93431 309306 2026-09-06T07:27:01Z Jsamwrites 938 309306 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41280" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41258", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41271" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for brand-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } j9nwcmqk66vk7hh91a9wn6u0uov96vv Z41281 0 93432 309311 2026-09-06T07:37:03Z Jsamwrites 938 309311 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41281" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41254", "Z14293K2": "Z33034" } ], "Z14294K2": "Z41267" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for area-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qzrhw33ke1qwdzfmxndpaamogdacuwe Z41282 0 93433 309312 2026-09-06T07:38:57Z Jsamwrites 938 Create function: area-sentence 309312 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41282" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41282K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41282K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41282K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41282K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41282" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jvy3j9b2se905yjc9rj0wn9ecyv2aog 309323 309312 2026-09-06T07:41:11Z Jsamwrites 938 Added Z41283 to the approved list of implementations 309323 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41282" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41282K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41282K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41282K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41282K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41283" ], "Z8K5": "Z41282" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jz8lr3hr4smb6ts4uw26ozpq49gfirm Z41283 0 93434 309313 2026-09-06T07:39:00Z Jsamwrites 938 Create implementation for Z41282 309313 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41283" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41282", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40855", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41282K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41282K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41282K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41282K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41282K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8j1f85notg59j2bfju4kmsjrf4p9irs 309322 309313 2026-09-06T07:40:23Z Jsamwrites 938 309322 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41283" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41282", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41281", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41282K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41282K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41282K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41282K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41282K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jxaqeya1410jw8q4lfv615enyli5euo Z41284 0 93435 309314 2026-09-06T07:39:03Z Jsamwrites 938 Create function: manufacturer-sentence 309314 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41284" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41284K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41284K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41284K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41284K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41284" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fjjbvrlj5j1lnkee0fthlkr1iplw7uj 309334 309314 2026-09-06T09:00:12Z Jsamwrites 938 Added Z41285 to the approved list of implementations 309334 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41284" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41284K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41284K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41284K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41284K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41285" ], "Z8K5": "Z41284" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9y0junybkjfro4zi8whzm3v7w812xbc Z41285 0 93436 309315 2026-09-06T07:39:06Z Jsamwrites 938 Create implementation for Z41284 309315 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41285" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41284", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40855", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41284K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41284K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41284K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41284K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41284K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bthepovip2pbiu5j5rj50my3jm4nfqo 309335 309315 2026-09-06T09:00:32Z Jsamwrites 938 309335 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41285" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41284", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41279", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41284K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41284K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41284K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41284K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41284K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dxmm777sarrc86s16s5uuzpxicyxnb7 Z41286 0 93437 309316 2026-09-06T07:39:09Z Jsamwrites 938 Create function: brand-sentence 309316 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41286" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41286K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41286K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41286K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41286K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41286" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } e5hgfvat9itkz66dpqylcv3xqoyapxd 309332 309316 2026-09-06T08:58:53Z Jsamwrites 938 Added Z41287 to the approved list of implementations 309332 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41286" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41286K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41286K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41286K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41286K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41287" ], "Z8K5": "Z41286" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } flegk83bjwcrogac8h5hvi9pdl3w08s Z41287 0 93438 309317 2026-09-06T07:39:12Z Jsamwrites 938 Create implementation for Z41286 309317 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41287" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41286", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40855", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41286K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41286K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41286K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41286K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41286K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8aj6wjvqfjvcrazrpg26d9cso0g5d4e 309333 309317 2026-09-06T08:59:12Z Jsamwrites 938 309333 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41287" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41286", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41280", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41286K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41286K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41286K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41286K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41286K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bn4t7uv1qvcxqhqahn8yczye36srycr Z41288 0 93439 309318 2026-09-06T07:39:14Z Jsamwrites 938 Create function: genre-sentence 309318 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41288" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41288K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41288K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41288K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41288K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41288" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 62p1gfj8fzj7rpmri9mqfpngfdho8qh 309330 309318 2026-09-06T08:56:58Z Jsamwrites 938 Added Z41289 to the approved list of implementations 309330 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41288" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41288K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41288K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41288K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41288K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41289" ], "Z8K5": "Z41288" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jvda8e2qunrgc9h95npe1sqnm39bgxg Z41289 0 93440 309319 2026-09-06T07:39:17Z Jsamwrites 938 Create implementation for Z41288 309319 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41289" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41288", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40855", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41288K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41288K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41288K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41288K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41288K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 60q1pbrq4e4wyzd11p1d9z71szuwb6b 309331 309319 2026-09-06T08:57:51Z Jsamwrites 938 309331 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41289" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41288", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41278", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41288K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41288K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41288K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41288K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41288K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } n8xto1dx2vq8oz0q8rgtvqqsh4udu9e Z41290 0 93441 309320 2026-09-06T07:39:20Z Jsamwrites 938 Create function: operating system-sentence 309320 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41290" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41290K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41290K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41290K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41290K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41290" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1uvqpi8drlroe3afh2ve0dm6ham2uc1 309325 309320 2026-09-06T07:42:38Z Jsamwrites 938 Added Z41291 to the approved list of implementations 309325 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41290" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41290K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41290K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41290K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41290K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41291" ], "Z8K5": "Z41290" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ayqb3n0d7w48tcakr4i01ppnfxcd6p0 Z41291 0 93442 309321 2026-09-06T07:39:23Z Jsamwrites 938 Create implementation for Z41290 309321 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41291" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41290", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40855", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41290K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41290K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41290K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41290K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41290K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5h51bb0hmidfr2pf4opslsassqc3smg 309324 309321 2026-09-06T07:42:25Z Jsamwrites 938 309324 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41291" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41290", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41277", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41290K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41290K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41290K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41290K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41290K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } kgrj47j60ks6tb3nm4swr8af21fhwda Z41292 0 93443 309327 2026-09-06T08:06:25Z 鈴音雨 101019 309327 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41292" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41292K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z41292K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "precision" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41292K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41292" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってグレゴリオ暦年を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Gregorian year limited by precision, Japanes" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } m6i09ptv8txmr1uybn2asntzcznwpev 309373 309327 2026-09-06T09:18:38Z 鈴音雨 101019 Added Z41310 to the approved list of implementations 309373 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41292" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z20159", "Z17K2": "Z41292K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "年" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "year" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6062", "Z17K2": "Z41292K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "precision" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41292K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41310" ], "Z8K5": "Z41292" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってグレゴリオ暦年を表示 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Gregorian year limited by precision, Japanes" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bnogiqyurfwgtvs2vhlv8ze505kkrbv Z41293 0 93444 309336 2026-09-06T09:01:54Z Denny 81 309336 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41293" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41266", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41266", "Z41266K1": { "Z1K1": "Z6091", "Z6091K1": "Q1427962" }, "Z41266K2": { "Z1K1": "Z6091", "Z6091K1": "Q3482678" }, "Z41266K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z89", { "Z1K1": "Z89", "Z89K1": "diligent" } ], "Z18646K3": "Z877" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "diligence, positive -\u003E diligent" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jdxgrcm9de3ha64n0ja3b6q6tp8mchb Z41294 0 93445 309338 2026-09-06T09:03:10Z Jsamwrites 938 Create function: area-sentence (HTML) 309338 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41294" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41294K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41294K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41294K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41294K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41294" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } o5gq3ayyb1pg6xb4ulv45btz5gxu1zq 309368 309338 2026-09-06T09:16:46Z Jsamwrites 938 Added Z41295 to the approved list of implementations 309368 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41294" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41294K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41294K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41294K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41294K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41295" ], "Z8K5": "Z41294" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0bow5vxd7bho3euxbim30db4pkt9vtg Z41295 0 93446 309339 2026-09-06T09:03:13Z Jsamwrites 938 Create implementation for Z41294 309339 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41295" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41294", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41294K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41294K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41294K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41294K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41294K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 65jl2hzdq5tybdnxiu876tiqlmw3a0p 309370 309339 2026-09-06T09:18:11Z Jsamwrites 938 309370 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41295" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41294", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41281", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41294K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41294K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41294K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } }, "Z37464K2": { "Z1K1": "Z6", "Z6K1": "Z40704" }, "Z37464K3": [ "Z6091" ], "Z37464K4": [ "Z6091" ], "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0m48ootvuuw8xlid8kyhj875yvs13u1 309372 309370 2026-09-06T09:18:27Z Jsamwrites 938 309372 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41295" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41294", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41281", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41294K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41294K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41294K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } }, "Z37464K2": { "Z1K1": "Z6", "Z6K1": "Z40704" }, "Z37464K3": [ "Z6091" ], "Z37464K4": [ "Z6091" ], "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41294K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "area-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 79zar1k240d0u9kljhkw42srgrjcg4e Z41296 0 93447 309340 2026-09-06T09:03:16Z Jsamwrites 938 Create function: manufacturer-sentence (HTML) 309340 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41296" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41296K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41296K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41296K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41296K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41296" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0xqlbgf5ve20e37ctgqb948hqtuskkt 309395 309340 2026-09-06T09:35:41Z Jsamwrites 938 Added Z41297 to the approved list of implementations 309395 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41296" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41296K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41296K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41296K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41296K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41297" ], "Z8K5": "Z41296" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } labiod2nv8kwietf0bbz0r5fit516f9 Z41297 0 93448 309341 2026-09-06T09:03:19Z Jsamwrites 938 Create implementation for Z41296 309341 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41297" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41296", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41296K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41296K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dgxu1cmtr6ncfjwalunr214lsga6m4e 309396 309341 2026-09-06T09:36:57Z Jsamwrites 938 309396 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41297" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41296", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41279", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41296K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41296K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z41279" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P176" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P176" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41296K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P176" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P176" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41296K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "manufacturer-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } a6tphuswo8kq3v778z8vj5gq6f50z63 Z41298 0 93449 309342 2026-09-06T09:03:22Z Jsamwrites 938 Create function: brand-sentence (HTML) 309342 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41298" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41298K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41298K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41298K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41298K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41298" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ndphc201ngz4arj0wbvuyq7dgakhh2d 309390 309342 2026-09-06T09:32:00Z Jsamwrites 938 Added Z41299 to the approved list of implementations 309390 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41298" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41298K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41298K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41298K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41298K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41299" ], "Z8K5": "Z41298" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } jt4wmdl4rucmdozm8okornaptogkejd Z41299 0 93450 309343 2026-09-06T09:03:25Z Jsamwrites 938 Create implementation for Z41298 309343 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41299" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41298", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41298K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41298K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } b1ycvcvujy9zl1m5xblldfh9rpbk5iz 309393 309343 2026-09-06T09:33:11Z Jsamwrites 938 309393 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41299" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41298", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41280", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41298K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41298K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P1716" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P1716" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41298K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P1716" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P1716" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41298K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "brand-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rv71s1ch634xrql2jkcen6zjzpf23fn Z41300 0 93451 309344 2026-09-06T09:03:27Z Jsamwrites 938 Create function: genre-sentence (HTML) 309344 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41300" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41300K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41300K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41300" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } o2patihlclt7qycq3bgbeic7vh6xxfg 309379 309344 2026-09-06T09:25:28Z Jsamwrites 938 Added Z41301 to the approved list of implementations 309379 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41300" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41300K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41300K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41301" ], "Z8K5": "Z41300" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fj02ydphq3o2sha72t89dnsh19hpum6 309387 309379 2026-09-06T09:30:21Z Jsamwrites 938 Added Z41313 to the approved list of test cases 309387 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41300" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41300K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41300K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41300K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z41313" ], "Z8K4": [ "Z14", "Z41301" ], "Z8K5": "Z41300" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } c3mgwibrkz66i0mem7pvgxtjo6dy2qf Z41301 0 93452 309345 2026-09-06T09:03:30Z Jsamwrites 938 Create implementation for Z41300 309345 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41301" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41300", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41300K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41300K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rncwwn1y8wjown2m9eofgl60up9mwc9 309383 309345 2026-09-06T09:26:55Z Jsamwrites 938 309383 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41301" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41300", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41278", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41300K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41300K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": "" }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P136" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P136" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41300K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P136" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P136" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41300K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "genre-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } p5tkdf9rhig9d2jwjqvd6s1cdpxbubs Z41302 0 93453 309346 2026-09-06T09:03:33Z Jsamwrites 938 Create function: operating system-sentence (HTML) 309346 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41302" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41302K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41302K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41302" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 57nzbb1yg20mnv2x253hdfr2d0yaq2t 309349 309346 2026-09-06T09:04:36Z Jsamwrites 938 Added Z41303 to the approved list of implementations 309349 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41302" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41302K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41302K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41303" ], "Z8K5": "Z41302" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1l6wsben8edg381i1nxkimwz34pomk0 309359 309349 2026-09-06T09:10:34Z Jsamwrites 938 Added Z41306 to the approved list of test cases 309359 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41302" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "subject" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41302K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use pronoun" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41302K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "temporal aspect" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41302K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20", "Z41306" ], "Z8K4": [ "Z14", "Z41303" ], "Z8K5": "Z41302" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } rsqnnbujj5y4z4y7s2kbwzqov7aoaey Z41303 0 93454 309347 2026-09-06T09:03:36Z Jsamwrites 938 Create implementation for Z41302 309347 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41303" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41302", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41302K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41302K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P407" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P407" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fa67j7ysqxge6u4n0jafxy2qw0wpxvl 309351 309347 2026-09-06T09:05:29Z Jsamwrites 938 309351 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41303" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41302", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z40810", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41302K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41302K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P306" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P306" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6icijtqy3wovbofdlteoql5b338ekux 309354 309351 2026-09-06T09:06:54Z Jsamwrites 938 309354 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41303" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41302", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z37464", "Z37464K1": { "Z1K1": "Z7", "Z7K1": "Z30438", "Z30438K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41277", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z30438K2": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30438K3": { "Z1K1": "Z18", "Z18K1": "Z41302K2" }, "Z30438K4": { "Z1K1": "Z18", "Z18K1": "Z41302K3" }, "Z30438K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } }, "Z37464K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z40579" } }, "Z37464K3": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P306" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z37464K4": { "Z1K1": "Z7", "Z7K1": "Z22978", "Z22978K1": { "Z1K1": "Z7", "Z7K1": "Z30120", "Z30120K1": { "Z1K1": "Z18", "Z18K1": "Z41302K1" }, "Z30120K2": [ "Z6030", "Z6036" ], "Z30120K3": [ "Z60" ], "Z30120K4": [ "Z6092", { "Z1K1": "Z6092", "Z6092K1": "P306" } ] }, "Z22978K2": { "Z1K1": "Z6092", "Z6092K1": "P306" } }, "Z37464K5": { "Z1K1": "Z18", "Z18K1": "Z41302K4" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "operating system-sentence (HTML), comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } p3ueeyfs6u7a3qzfb3ku7n9r0nctdmx Z41304 0 93455 309352 2026-09-06T09:05:49Z Denny 81 309352 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41304" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z41304K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41304K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41304K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41304" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme \u0026 degree " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } pl9791skam1tpbtqkrj3ubjl9313nx7 309355 309352 2026-09-06T09:07:40Z Denny 81 Added Z41305 to the approved list of test cases 309355 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41304" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z41304K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41304K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41304K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41305" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41304" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme \u0026 degree " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } f7dney877o1cybl2w2mf9lzt1jbg577 309358 309355 2026-09-06T09:10:16Z Denny 81 Added Z41307 to the approved list of implementations 309358 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41304" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6005", "Z17K2": "Z41304K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41304K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "degree of comparison" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41304K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z8K3": [ "Z20", "Z41305" ], "Z8K4": [ "Z14", "Z41307" ], "Z8K5": "Z41304" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "fragment for Engl adjective from Lexeme \u0026 degree " } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given a Lexeme to an English adjective, the function chooses based on the degree, and returns a listed HTML fragment" } ] } } 5bd0zn6nm6d53uskhz8euq04lr1m02k Z41305 0 93456 309353 2026-09-06T09:06:47Z Denny 81 309353 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41305" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41304", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41304", "Z41304K1": { "Z1K1": "Z7", "Z7K1": "Z6825", "Z6825K1": { "Z1K1": "Z6095", "Z6095K1": "L5958" } }, "Z41304K2": { "Z1K1": "Z6091", "Z6091K1": "Q1817208" }, "Z41304K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z18646", "Z18646K2": [ "Z89", { "Z1K1": "Z89", "Z89K1": "richest" } ], "Z18646K3": "Z877" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "rich, superlative -\u003E richest" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } t2bov3nore7zwtbr8wtbopxba8lwbvb Z41306 0 93457 309356 2026-09-06T09:09:08Z Jsamwrites 938 309356 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41306" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41302", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41302", "Z41302K1": { "Z1K1": "Z6091", "Z6091K1": "Q850" }, "Z41302K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41302K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41302K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "The OSes of MySQL are \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q14656\"\u003EUnix-like operating system\u003C/a\u003E, \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1406\"\u003EMicrosoft Windows\u003C/a\u003E, \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q34236\"\u003EFreeBSD\u003C/a\u003E, \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q14646\"\u003ESolaris\u003C/a\u003E, \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q388\"\u003ELinux\u003C/a\u003E and \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q14116\"\u003EmacOS\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "MySQL-OS, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bpexfsofb85othv970jcoorpzzl6wnm Z41307 0 93458 309357 2026-09-06T09:09:57Z Denny 81 309357 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41307" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41304", "Z14K2": [ "Z89", { "Z1K1": "Z7", "Z7K1": "Z27868", "Z27868K1": { "Z1K1": "Z7", "Z7K1": "Z27410", "Z27410K1": { "Z1K1": "Z18", "Z18K1": "Z41304K1" }, "Z27410K2": [ "Z6091", { "Z1K1": "Z18", "Z18K1": "Z41304K2" } ] } } ] }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use better matching representation string from lex" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ttr1q1nxx2zasy5829c28u185q189z0 Z41308 0 93459 309360 2026-09-06T09:11:10Z Denny 81 309360 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41308" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41251", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z41304", "Z41304K1": { "Z1K1": "Z7", "Z7K1": "Z6825", "Z6825K1": { "Z1K1": "Z18", "Z18K1": "Z41251K1" } }, "Z41304K2": { "Z1K1": "Z18", "Z18K1": "Z41251K2" }, "Z41304K3": { "Z1K1": "Z18", "Z18K1": "Z41251K3" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use fragment for Adjective from Lexeme" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 2jzrrlepnbgpdk3r2w67gm2erb7lhqh Z41309 0 93460 309362 2026-09-06T09:13:01Z Denny 81 309362 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41309" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41266", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z41304", "Z41304K1": { "Z1K1": "Z7", "Z7K1": "Z33071", "Z33071K1": { "Z1K1": "Z6091", "Z6091K1": "Q34698" }, "Z33071K2": { "Z1K1": "Z18", "Z18K1": "Z41266K1" }, "Z33071K3": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z33071K4": { "Z1K1": "Z18", "Z18K1": "Z41266K3" } }, "Z41304K2": { "Z1K1": "Z18", "Z18K1": "Z41266K2" }, "Z41304K3": { "Z1K1": "Z18", "Z18K1": "Z41266K3" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "use best lexeme for adjective with item for sense" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 03e345sm9glosexfvfneknhttwzqx0g Z41310 0 93461 309366 2026-09-06T09:15:18Z 鈴音雨 101019 super messy 309366 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41310" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41292", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z861", "Z861K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z25733", "Z25733K1": { "Z1K1": "Z18", "Z18K1": "Z41292K2" }, "Z25733K2": { "Z1K1": "Z6062", "Z6062K1": { "Z1K1": "Z6091", "Z6091K1": "Q577" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z26936", "Z26936K1": { "Z1K1": "Z18", "Z18K1": "Z41292K2" }, "Z26936K2": [ "Z1", { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "1000000000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "1000000000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "100000000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "100000000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "10000000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "10000000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "1000000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "1000000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "100000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "100000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "10000" } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z35338", "Z35338K1": { "Z1K1": "Z7", "Z7K1": "Z20257", "Z20257K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z35338K2": { "Z1K1": "Z13518", "Z13518K1": "10000" } } } }, "Z10000K2": "年" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z20053", "Z20053K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "1000" } } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z20053", "Z20053K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "1000" } } } } }, "Z10000K2": "千年紀" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z20053", "Z20053K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "100" } } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z20053", "Z20053K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "100" } } } } }, "Z10000K2": "世紀" } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z16688", "Z16688K1": { "Z1K1": "Z7", "Z7K1": "Z17120", "Z17120K1": { "Z1K1": "Z7", "Z7K1": "Z20032", "Z20032K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } }, "Z17120K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } }, "Z16688K2": { "Z1K1": "Z16683", "Z16683K1": "Z16661", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "0" } } }, "Z802K2": { "Z1K1": "Z7", "Z7K1": "Z20241", "Z20241K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" }, "Z20241K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z28855", "Z28855K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z802K2": "紀元前", "Z802K3": "Z11853" }, "Z10000K2": { "Z1K1": "Z7", "Z7K1": "Z10000", "Z10000K1": { "Z1K1": "Z7", "Z7K1": "Z31454", "Z31454K1": { "Z1K1": "Z7", "Z7K1": "Z17144", "Z17144K1": { "Z1K1": "Z7", "Z7K1": "Z17120", "Z17120K1": { "Z1K1": "Z7", "Z7K1": "Z20032", "Z20032K1": { "Z1K1": "Z7", "Z7K1": "Z27232", "Z27232K1": { "Z1K1": "Z7", "Z7K1": "Z20160", "Z20160K1": { "Z1K1": "Z18", "Z18K1": "Z41292K1" } }, "Z27232K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } }, "Z17120K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "10" } } } } }, "Z10000K2": "年代" } } } ] } }, "Z861K2": { "Z1K1": "Z18", "Z18K1": "Z41292K3" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "精度に従ってグレゴリオ暦年を表示 (日本語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "print Gregorian year limited by precision, Ja, Co" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9ljctmirln7a19asnrd3c95xyjktclu Z41311 0 93462 309381 2026-09-06T09:25:49Z Denny 81 309381 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41311" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41311K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41311K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41311" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from lexeme" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from the lexeme of an English adjective" } ] } } qitpp84zdnq10fmkpwrblzf8pnm513f 309400 309381 2026-09-06T09:42:44Z Denny 81 Added Z41315 to the approved list of test cases 309400 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41311" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41311K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41311K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41315" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41311" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from lexeme" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from the lexeme of an English adjective" } ] } } ev2882odcp3gbiqg7nez4v6ks9puhl2 309403 309400 2026-09-06T09:45:00Z Denny 81 Added Z41316 to the approved list of implementations 309403 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41311" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6095", "Z17K2": "Z41311K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English adjective" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41311K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41315" ], "Z8K4": [ "Z14", "Z41316" ], "Z8K5": "Z41311" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from lexeme" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from the lexeme of an English adjective" } ] } } ebgm27itgelkofzrdiixxgsld3lbltl Z41312 0 93463 309385 2026-09-06T09:29:51Z GrounderUK 50 [[Z41015]]➕[[Z20]] 309385 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41312" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41015", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z13464", "Z13464K1": "Z41015", "Z13464K2": [ "Z6", { "Z1K1": "Z6", "Z6K1": "Z1" }, "1", { "Z1K1": "Z6", "Z6K1": "Z2" }, "2", { "Z1K1": "Z6", "Z6K1": "Z3" }, "3", { "Z1K1": "Z6", "Z6K1": "Z4" }, "4", { "Z1K1": "Z6", "Z6K1": "Z5" }, "5", { "Z1K1": "Z6", "Z6K1": "Z6" }, "6", { "Z1K1": "Z6", "Z6K1": "Z7" }, "7", { "Z1K1": "Z6", "Z6K1": "Z8" }, "8", { "Z1K1": "Z6", "Z6K1": "Z9" }, "9", { "Z1K1": "Z6", "Z6K1": "Z10" }, "10", { "Z1K1": "Z7", "Z7K1": "Z30805", "Z30805K1": "(en) case sensitive", "Z30805K2": "z10" } ], "Z13464K3": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z889", "Z889K2": [ "Z96", { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z1" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z1" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z2" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z2" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z3" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z3" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z4" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z4" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z5" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z5" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z6" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z6" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z7" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z7" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z8" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z8" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z9" } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z9" } }, { "Z1K1": "Z7", "Z7K1": "Z30805", "Z30805K1": { "Z1K1": "Z6", "Z6K1": "Z10" }, "Z30805K2": { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z10" } } }, { "Z1K1": "Z96", "Z96K1": { "Z1K1": "Z6", "Z6K1": "Z10" } }, { "Z1K1": "Z96", "Z96K1": "z10" } ], "Z889K3": "Z40327" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "ZID-list from ZID-strings: Z96/ZIDs" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7gjxq8dt49kv21emuf8gjxogjcpkttk Z41313 0 93464 309386 2026-09-06T09:30:08Z Jsamwrites 938 309386 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41313" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41300", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41300", "Z41300K1": { "Z1K1": "Z6091", "Z6091K1": "Q23619" }, "Z41300K2": { "Z1K1": "Z40", "Z40K1": "Z41" }, "Z41300K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41300K4": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "Its genres are \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q859369\"\u003Ecomedy drama\u003C/a\u003E and \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q85133165\"\u003ELGBT-related television series\u003C/a\u003E." } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Queer as folk-genres, test" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } cxmrz3w74zty1zi3spzwtcsb0rts2kg Z41314 0 93465 309397 2026-09-06T09:41:12Z 鈴音雨 101019 309397 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41314" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41314K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41314K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41314" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 0bvv9wrra7nxw0vcvj7xqua3zks7thh 309398 309397 2026-09-06T09:41:51Z 鈴音雨 101019 japanese 309398 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41314" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41314K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41314K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41314" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } q3fwkta5lb1paixopbyrn1oio7g2w1u 309411 309398 2026-09-06T09:48:19Z 鈴音雨 101019 Added Z41317 to the approved list of implementations 309411 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41314" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41314K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41314K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41317" ], "Z8K5": "Z41314" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fohifk56ou735zjng07b6vzmschqi9z 309417 309411 2026-09-06T09:50:32Z 鈴音雨 101019 Added Z41320 to the approved list of test cases 309417 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41314" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41314K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41314K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41320" ], "Z8K4": [ "Z14", "Z41317" ], "Z8K5": "Z41314" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、日本語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), Japanese" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ophpg20tuu14ck04r17voq8j7mt6vl7 Z41315 0 93466 309399 2026-09-06T09:42:35Z Denny 81 309399 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41315" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41311", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z40459", "Z40459K1": { "Z1K1": "Z7", "Z7K1": "Z41311", "Z41311K1": { "Z1K1": "Z6095", "Z6095K1": "L337139" }, "Z41311K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "gracious" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "gracious" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9l2ibm2sltp7zjr42aao8vwfuyd85vg Z41316 0 93467 309402 2026-09-06T09:44:47Z Denny 81 309402 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41316" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41311", "Z14K2": { "Z1K1": "Z39358", "Z39358K1": { "Z1K1": "Z18", "Z18K1": "Z41311K2" }, "Z39358K2": { "Z1K1": "Z6091", "Z6091K1": "Q34698" }, "Z39358K3": [ "Z39328" ], "Z39358K4": { "Z1K1": "Z38546", "Z38546K1": [ "Z38545" ], "Z38546K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z38546K3": { "Z1K1": "Z7", "Z7K1": "Z41251", "Z41251K1": { "Z1K1": "Z18", "Z18K1": "Z41311K1" }, "Z41251K2": { "Z1K1": "Z6091", "Z6091K1": "Q3482678" }, "Z41251K3": { "Z1K1": "Z18", "Z18K1": "Z41311K2" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "materialize positive via fragment from lex ref" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } oqy9r814pvytsd27mo9e72to4w0vs08 Z41317 0 93468 309405 2026-09-06T09:46:30Z 鈴音雨 101019 309405 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41317" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41314", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41314K2" }, "Z11K2": "約" }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41314K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z18", "Z18K1": "Z41314K1" }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41314K2" } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41314K2" }, "Z11K2": "Z11853" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、日本語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), Japanese, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8aozsklzjz3kdanalv13kkqcpntnrvi Z41318 0 93469 309407 2026-09-06T09:46:58Z GZWDer 186 309407 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimension" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 68t20rvs03d0g6tuflzgce1kbikx7u5 309408 309407 2026-09-06T09:47:07Z GZWDer 186 309408 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 28gykzogikkiof0shdmpp5s7f9npxx9 309412 309408 2026-09-06T09:48:51Z GZWDer 186 309412 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ConstantArray" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } cjejsqjq5my2if5gbr9c4l39aukmge7 309413 309412 2026-09-06T09:49:06Z GZWDer 186 Added Z41319 to the approved list of implementations 309413 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41319" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ConstantArray" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 011e7dd3onrrik8iizkar0ib6fep3s4 309438 309413 2026-09-06T10:00:40Z GZWDer 186 Added Z41331 to the approved list of test cases 309438 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20", "Z41331" ], "Z8K4": [ "Z14", "Z41319" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ConstantArray" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1pt8syaxqjfa0yn6x2sdslv609lb3z4 309441 309438 2026-09-06T10:03:33Z GZWDer 186 Added Z41332 to the approved list of implementations 309441 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41318" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z1", "Z17K2": "Z41318K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "element to repeat" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z13518" }, "Z17K2": "Z41318K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "dimensions" } ] } } ], "Z8K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z8K3": [ "Z20", "Z41331" ], "Z8K4": [ "Z14", "Z41319", "Z41332" ], "Z8K5": "Z41318" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31", { "Z1K1": "Z31", "Z31K1": "Z1002", "Z31K2": [ "Z6", "ConstantArray" ] } ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 1xh55mbdape89k6qcn2n4n8xogwwemo Z41319 0 93470 309410 2026-09-06T09:48:16Z GZWDer 186 309410 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41319" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41318", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z41318(Z41318K1, Z41318K2):\n\ttmp = Z41318K1\n\tfor i in Z41318K2[::-1]:\n\t\ttmp = [tmp] * i\n\treturn tmp" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9cqu1o5ofnqj49y0a6k9d381w7px0ve 309476 309410 2026-09-06T11:13:30Z HenkvD 1290 label 309476 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41319" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41318", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z41318(Z41318K1, Z41318K2):\n\ttmp = Z41318K1\n\tfor i in Z41318K2[::-1]:\n\t\ttmp = [tmp] * i\n\treturn tmp" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions, python" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7xnjr9r8adem31zcxdy1vlum6m8jdkj Z41320 0 93471 309414 2026-09-06T09:49:17Z 鈴音雨 101019 309414 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41320" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41314", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41314", "Z41314K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z9", "Z9K1": "" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z9", "Z9K1": "" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z9", "Z9K1": "" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41314K2": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "約123 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「約123 cm」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"約123 cm\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 9y60a1b8bihamnd0bf2gilqltc5l8v5 309415 309414 2026-09-06T09:49:40Z 鈴音雨 101019 309415 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41320" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41314", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41314", "Z41314K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41314K2": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "約123 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「約123 cm」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"約123 cm\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ryl9v8eplen67wpip1aqbb2i0baui4u 309416 309415 2026-09-06T09:50:12Z 鈴音雨 101019 fix 309416 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41320" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41314", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41314", "Z41314K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41314K2": "Z1830" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "約123 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「約123 cm」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"約123 cm\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bi0rnanenveraivp2p2oxoey4bx1ysd Z41321 0 93472 309418 2026-09-06T09:51:42Z 鈴音雨 101019 309418 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41321" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41321K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41321K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41321" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dxd80961lx6nerqe0jxrl2uq7kk298r 309422 309418 2026-09-06T09:54:44Z 鈴音雨 101019 Added Z41323 to the approved list of implementations 309422 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41321" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41321K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41321K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41323" ], "Z8K5": "Z41321" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ei4az2zv6ooxso7oaekkir4ampepybg 309429 309422 2026-09-06T09:57:17Z 鈴音雨 101019 Added Z41326 to the approved list of test cases 309429 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41321" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41321K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41321K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41326" ], "Z8K4": [ "Z14", "Z41323" ], "Z8K5": "Z41321" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、英語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 6q4le3dqrdjqmhhpw51hjnhqrfexd7u Z41322 0 93473 309419 2026-09-06T09:53:13Z Denny 81 309419 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41322" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41322K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41322K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41322" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from a Wikidata item" } ] } } lh6lp2phszbcckkv4fsq6jsg4uzmel1 309443 309419 2026-09-06T10:05:38Z Denny 81 Added Z41324 to the approved list of test cases 309443 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41322" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41322K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41322K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41324" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41322" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from a Wikidata item" } ] } } k8y4mihcvyrvpgblel5oz15p34avlo4 309446 309443 2026-09-06T10:06:53Z Denny 81 Added Z41333 to the approved list of implementations 309446 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41322" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41322K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41322K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41324" ], "Z8K4": [ "Z14", "Z41333" ], "Z8K5": "Z41322" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "English positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "creates a syntactic phrase function for an English adjective from a Wikidata item" } ] } } bu3mzn3axysrxtiatseel6y7ycxnai0 Z41323 0 93474 309421 2026-09-06T09:54:31Z 鈴音雨 101019 309421 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41323" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41321", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41321K2" }, "Z11K2": "approximately" }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41321K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z18", "Z18K1": "Z41321K1" }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41321K2" } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41321K2" }, "Z11K2": "Z13128" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、英語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), English, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } szo450d03rj2rglt1e5lzh4j555xu7l Z41324 0 93475 309423 2026-09-06T09:55:11Z Denny 81 309423 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41324" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41322", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z40459", "Z40459K1": { "Z1K1": "Z7", "Z7K1": "Z41322", "Z41322K1": { "Z1K1": "Z6091", "Z6091K1": "Q4233718" }, "Z41322K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "anonymous" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "\"anonymous\" in English" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 96tkqlssgy9lllqnsukubzqwom516g5 Z41325 0 93476 309424 2026-09-06T09:55:28Z GZWDer 186 309424 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41325" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41325K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41325K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "expected result" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41325" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "check stringified object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "See Z27057" } ] } } 6ydkxnx50rytfdcu2m36j9mlm5ejas1 309427 309424 2026-09-06T09:56:41Z GZWDer 186 Added Z41327 to the approved list of implementations 309427 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41325" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41325K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41325K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "expected result" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41327" ], "Z8K5": "Z41325" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "check stringified object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "See Z27057" } ] } } qvxwnllc171vq0vxawu53xag00ajtmn 309434 309427 2026-09-06T09:59:17Z GZWDer 186 Added Z41328 and Z41330 to the approved list of test cases 309434 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41325" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z1" }, "Z17K2": "Z41325K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "object" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41325K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "expected result" } ] } } ], "Z8K2": "Z40", "Z8K3": [ "Z20", "Z41328", "Z41330" ], "Z8K4": [ "Z14", "Z41327" ], "Z8K5": "Z41325" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "check stringified object" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "See Z27057" } ] } } h32xyilr8stzdgwbya97u8yse08sqnd Z41326 0 93477 309425 2026-09-06T09:56:26Z 鈴音雨 101019 309425 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41326" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41321", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41321", "Z41321K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41321K2": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximately 123 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「approximately 123 cm」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"approximately 123 cm\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 4mokue8m3mlumnue6co4h3lpp89h3wb 309428 309425 2026-09-06T09:56:50Z 鈴音雨 101019 fix 309428 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41326" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41321", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41321", "Z41321K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": "Z16660", "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "123" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41321K2": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximately 123 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "「approximately 123 cm」を返す" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Return \"approximately 123 cm\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } o47wayam4s668zzbdtnx942vidk8yjd Z41327 0 93478 309426 2026-09-06T09:56:28Z GZWDer 186 309426 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41327" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41325", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K1": { "Z1K1": "Z7", "Z7K1": "Z27057", "Z27057K1": { "Z1K1": "Z18", "Z18K1": "Z41325K1" } }, "Z866K2": { "Z1K1": "Z18", "Z18K1": "Z41325K2" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dkrcmijmruit5zleb8wejosxubbuujt 309477 309426 2026-09-06T11:14:05Z HenkvD 1290 label 309477 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41327" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41325", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K1": { "Z1K1": "Z7", "Z7K1": "Z27057", "Z27057K1": { "Z1K1": "Z18", "Z18K1": "Z41325K1" } }, "Z866K2": { "Z1K1": "Z18", "Z18K1": "Z41325K2" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "check stringified object, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } h00ujm7ngn456sau020oxj04wvr8lyh Z41328 0 93479 309430 2026-09-06T09:57:25Z GZWDer 186 309430 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41328" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41325", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K1": [ "Z1", "hello", "world" ], "Z41325K2": "[\"hello\", \"world\"]" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ledoq421npe7cg8ai7odc31v4zrwo7p 309431 309430 2026-09-06T09:58:29Z GZWDer 186 309431 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41328" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41325", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K1": [ "Z1", "hello", "world" ], "Z41325K2": "[\"hello\",\"world\"]" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } bp7u61jxs61ubequndkfaqx0kj7gik7 309482 309431 2026-09-06T11:17:38Z HenkvD 1290 label 309482 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41328" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41325", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K1": [ "Z1", "hello", "world" ], "Z41325K2": "[\"hello\",\"world\"]" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": " \"[\"hello\",\"world\"]\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7iytrngpda4o4rne2bsn6oiokr90ch0 Z41329 0 93480 309432 2026-09-06T09:58:38Z 鈴音雨 101019 309432 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41329" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41329K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41329K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41329" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、複数言語フォールバック)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), mul fallback" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } sbsetl8chj1km8cq9cb30qao65w6qgc 309465 309432 2026-09-06T10:41:54Z 鈴音雨 101019 Added Z41338 to the approved list of implementations 309465 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41329" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41329K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41329K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41338" ], "Z8K5": "Z41329" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、複数言語フォールバック)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), mul fallback" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } houw2q7k7pyvyiwc622r955s87scwe7 309469 309465 2026-09-06T10:48:44Z 鈴音雨 101019 Added Z41339 to the approved list of test cases 309469 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41329" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41329K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41329K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41339" ], "Z8K4": [ "Z14", "Z41338" ], "Z8K5": "Z41329" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、複数言語フォールバック)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual), mul fallback" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 7o3xp9h0079hpn0jc6xjywxc2hn53i7 Z41330 0 93481 309433 2026-09-06T09:59:04Z GZWDer 186 309433 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41330" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41325", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K1": [ "Z1", { "Z1K1": "Z40", "Z40K1": "Z41" }, { "Z1K1": "Z40", "Z40K1": "Z42" } ], "Z41325K2": "[true,false]" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } j9y8fe6m67fbrb0bl74boxii2boc0tg 309480 309433 2026-09-06T11:16:45Z HenkvD 1290 label 309480 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41330" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41325", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K1": [ "Z1", { "Z1K1": "Z40", "Z40K1": "Z41" }, { "Z1K1": "Z40", "Z40K1": "Z42" } ], "Z41325K2": "[true,false]" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z844", "Z844K2": { "Z1K1": "Z40", "Z40K1": "Z41" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "\"[true,false]\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 17pk4b32pwy9k16une9zc1avwuxml8h Z41331 0 93482 309436 2026-09-06T10:00:18Z GZWDer 186 309436 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41331" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41318", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41318", "Z41318K1": "hi", "Z41318K2": [ "Z13518", { "Z1K1": "Z13518", "Z13518K1": "3" }, { "Z1K1": "Z13518", "Z13518K1": "4" } ] }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K2": "[[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"]]" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } l0tcfe6s0vwzrharcb7kvzqsasesny1 309483 309436 2026-09-06T11:18:48Z HenkvD 1290 label 309483 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41331" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41318", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41318", "Z41318K1": "hi", "Z41318K2": [ "Z13518", { "Z1K1": "Z13518", "Z13518K1": "3" }, { "Z1K1": "Z13518", "Z13518K1": "4" } ] }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z41325", "Z41325K2": "[[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"]]" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "\"[[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "\"[[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"],[\"hi\",\"hi\",\"hi\",\"hi\"]]\"" } ] } } apg6gwdlj5hccm0t4g6x8rdiwrkjoho Z41332 0 93483 309440 2026-09-06T10:03:13Z GZWDer 186 309440 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41332" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41318", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z813", "Z813K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } }, "Z802K2": { "Z1K1": "Z18", "Z18K1": "Z41318K1" }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z41318", "Z41318K1": { "Z1K1": "Z7", "Z7K1": "Z21389", "Z21389K1": { "Z1K1": "Z18", "Z18K1": "Z41318K1" }, "Z21389K2": { "Z1K1": "Z7", "Z7K1": "Z12964", "Z12964K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } } }, "Z41318K2": { "Z1K1": "Z7", "Z7K1": "Z12967", "Z12967K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 86z76zaar8wbocd630nnt3v59v80po5 309484 309440 2026-09-06T11:19:27Z HenkvD 1290 label 309484 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41332" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41318", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z813", "Z813K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } }, "Z802K2": { "Z1K1": "Z18", "Z18K1": "Z41318K1" }, "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z41318", "Z41318K1": { "Z1K1": "Z7", "Z7K1": "Z21389", "Z21389K1": { "Z1K1": "Z18", "Z18K1": "Z41318K1" }, "Z21389K2": { "Z1K1": "Z7", "Z7K1": "Z12964", "Z12964K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } } }, "Z41318K2": { "Z1K1": "Z7", "Z7K1": "Z12967", "Z12967K1": { "Z1K1": "Z18", "Z18K1": "Z41318K2" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "repeat object in multiple dimensions, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hwyvt5d5i3lshe4tfvamoyvw7xkg5c9 Z41333 0 93484 309444 2026-09-06T10:06:41Z Denny 81 309444 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41333" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41322", "Z14K2": { "Z1K1": "Z39358", "Z39358K1": { "Z1K1": "Z18", "Z18K1": "Z41322K2" }, "Z39358K2": { "Z1K1": "Z6091", "Z6091K1": "Q34698" }, "Z39358K3": [ "Z39328" ], "Z39358K4": { "Z1K1": "Z38546", "Z38546K1": [ "Z38545" ], "Z38546K2": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z89" }, "Z38546K3": { "Z1K1": "Z7", "Z7K1": "Z41266", "Z41266K1": { "Z1K1": "Z18", "Z18K1": "Z41322K1" }, "Z41266K2": { "Z1K1": "Z6091", "Z6091K1": "Q3482678" }, "Z41266K3": { "Z1K1": "Z18", "Z18K1": "Z41322K2" } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "from fragment from item and positive set" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 5y6rez633wv84za611i6gq4pvc6bjyg Z41334 0 93485 309452 2026-09-06T10:13:23Z Denny 81 309452 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41334" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41334K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41334K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41334" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given an item, it returns a syntactic phrase function that will realize to an adjective in the given language" } ] } } rjazglo66g0ohqluhuxzm1okkhvj8ge 309455 309452 2026-09-06T10:16:36Z Denny 81 Added Z41335 to the approved list of test cases 309455 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41334" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41334K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41334K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41335" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41334" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given an item, it returns a syntactic phrase function that will realize to an adjective in the given language" } ] } } pzkgrpxmbuebqmy0ckgil1uhyt54kme 309460 309455 2026-09-06T10:25:52Z Denny 81 Added Z41337 to the approved list of implementations 309460 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41334" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41334K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "item reference" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41334K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z39358", "Z8K3": [ "Z20", "Z41335" ], "Z8K4": [ "Z14", "Z41337" ], "Z8K5": "Z41334" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "given an item, it returns a syntactic phrase function that will realize to an adjective in the given language" } ] } } o2qb9kepm386opmejm3q9sdcqjhpw0q Z41335 0 93486 309453 2026-09-06T10:15:28Z Denny 81 309453 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41335" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41334", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41334", "Z41334K1": { "Z1K1": "Z6091", "Z6091K1": "Q139845547" }, "Z41334K2": "Z1002" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "transparent" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "transparent, en -\u003E \"transparent\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 76j956ho65rhtqsjefu1u7yjowz369y 309454 309453 2026-09-06T10:16:28Z Denny 81 309454 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41335" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41334", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z40459", "Z40459K1": { "Z1K1": "Z7", "Z7K1": "Z41334", "Z41334K1": { "Z1K1": "Z6091", "Z6091K1": "Q139845547" }, "Z41334K2": "Z1002" } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z866", "Z866K2": "transparent" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "transparent, en -\u003E \"transparent\"" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 8i1s7aqhltyr6owxwnzqy0wt01a70uy Z41336 0 93487 309456 2026-09-06T10:22:47Z Denny 81 309456 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41336" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41322", "Z14293K2": "Z33034" } ], "Z14294K2": "Z31109" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "configuration for positive adjective" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } eeowd7dxybez2ii7dtrhkdo7yaxh17l 309459 309456 2026-09-06T10:25:40Z Denny 81 309459 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41336" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41322", "Z14293K2": "Z33034" } ], "Z14294K2": "Z31109" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "configuration for positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } plipd2axq4a89w1uqlbhmu2fc74nj79 Z41337 0 93488 309458 2026-09-06T10:25:33Z Denny 81 309458 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41337" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41334", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z13318", "Z13318K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41336", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41334K2" } }, "Z13318K2": { "Z1K1": "Z18", "Z18K1": "Z41334K1" }, "Z13318K3": { "Z1K1": "Z18", "Z18K1": "Z41334K2" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "apply to config for positive adjective from item" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } b0xufzp3wfogljpdtp1j9x39rcu9u9r Z41338 0 93489 309464 2026-09-06T10:41:32Z 鈴音雨 101019 309464 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41338" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41329", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41329K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z813", "Z813K1": { "Z1K1": "Z7", "Z7K1": "Z6830", "Z6830K1": { "Z1K1": "Z6091", "Z6091K1": "Q138852191" }, "Z6830K2": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z6830K3": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } }, "Z802K2": "≈", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z27410", "Z27410K1": { "Z1K1": "Z7", "Z7K1": "Z6825", "Z6825K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z6830", "Z6830K1": { "Z1K1": "Z6091", "Z6091K1": "Q138852191" }, "Z6830K2": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z6830K3": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } } }, "Z27410K2": [ "Z6091" ] } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41329K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z35683", "Z35683K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z35676", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、複数言語フォールバック)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (mono), mul fallback, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } fdwvwvd89ezs7c4tujt5hq90b210vi8 309466 309464 2026-09-06T10:42:52Z 鈴音雨 101019 fix 309466 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41338" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41329", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41329K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z813", "Z813K1": { "Z1K1": "Z7", "Z7K1": "Z6830", "Z6830K1": { "Z1K1": "Z6091", "Z6091K1": "Q138852191" }, "Z6830K2": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z6830K3": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } }, "Z802K2": "≈", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z27410", "Z27410K1": { "Z1K1": "Z7", "Z7K1": "Z6825", "Z6825K1": { "Z1K1": "Z7", "Z7K1": "Z811", "Z811K1": { "Z1K1": "Z7", "Z7K1": "Z6830", "Z6830K1": { "Z1K1": "Z6091", "Z6091K1": "Q138852191" }, "Z6830K2": { "Z1K1": "Z6092", "Z6092K1": "P5137" }, "Z6830K3": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } } }, "Z27410K2": [ "Z6091" ] } } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41329K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z25326", "Z25326K1": { "Z1K1": "Z18", "Z18K1": "Z41329K1" }, "Z25326K2": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41329K2" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z35683", "Z35683K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z35676", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41329K2" } } } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語、複数言語フォールバック)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (mono), mul fallback, comp" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3q66pfac9x2xj7cwdwsk19agyxhi95m Z41339 0 93490 309467 2026-09-06T10:47:41Z 鈴音雨 101019 309467 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41339" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41329", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41329", "Z41329K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41329K2": "Z1360" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "≈ 1243 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[mul] ≈ 1243 cm" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pse4nn3us923mbo78a4m6nelj3n4n8u 309468 309467 2026-09-06T10:48:22Z 鈴音雨 101019 fix 309468 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41339" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41329", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41329", "Z41329K1": { "Z1K1": "Z6010", "Z6010K1": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K2": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K3": { "Z1K1": "Z19677", "Z19677K1": { "Z1K1": "Z16659", "Z16659K1": "Z16660" }, "Z19677K2": { "Z1K1": "Z13518", "Z13518K1": "1243" }, "Z19677K3": { "Z1K1": "Z13518", "Z13518K1": "1" } }, "Z6010K4": { "Z1K1": "Z6091", "Z6091K1": "Q174728" } }, "Z41329K2": "Z1360" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "≈ 1243 cm" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[mul] ≈ 1243 cm" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } s784dd5o4y129kctonb08lyxab5bxdr Z41340 0 93491 309470 2026-09-06T10:49:19Z 鈴音雨 101019 309470 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41340" }, "Z2K2": { "Z1K1": "Z14294", "Z14294K1": [ "Z14293", { "Z1K1": "Z14293", "Z14293K1": "Z41321", "Z14293K2": "Z33034" }, { "Z1K1": "Z14293", "Z14293K1": "Z41314", "Z14293K2": "Z34003" } ], "Z14294K2": "Z41329" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現の言語別設定" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "config for approximate quantity" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } dxmk15lq32sjbwe05okra36pv98hm9z Z41341 0 93492 309471 2026-09-06T10:50:14Z 鈴音雨 101019 309471 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41341" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41341K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41341K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41341" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 3zsn6vx4s1535ct0f04raji1ys2wx01 309473 309471 2026-09-06T10:51:36Z 鈴音雨 101019 Added Z41342 to the approved list of implementations 309473 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41341" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6010", "Z17K2": "Z41341K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "quantity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41341K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "言語" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14", "Z41342" ], "Z8K5": "Z41341" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語)" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity (monolingual)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 4sqjjzo6lvxerdk7kt8u8isxmkuslkg Z41342 0 93493 309472 2026-09-06T10:51:13Z 鈴音雨 101019 japanese 309472 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41342" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41341", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z13318", "Z13318K1": { "Z1K1": "Z7", "Z7K1": "Z14310", "Z14310K1": "Z41340", "Z14310K2": { "Z1K1": "Z18", "Z18K1": "Z41341K2" } }, "Z13318K2": { "Z1K1": "Z18", "Z18K1": "Z41341K1" }, "Z13318K3": { "Z1K1": "Z18", "Z18K1": "Z41341K2" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1830", "Z11K2": "数量の近似表現 (単一言語)、合成" }, { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "approximate quantity, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } tw0tx7fz7wjy1ax1yxn76l6mefizv89 Z41343 0 93494 309474 2026-09-06T10:53:19Z Caominhthang03062023 84080 Create new 309474 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41343" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41343K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6" } }, "Z17K2": "Z41343K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "country groups" } ] } }, { "Z1K1": "Z17", "Z17K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": { "Z1K1": "Z7", "Z7K1": "Z881", "Z881K1": "Z6" } }, "Z17K2": "Z41343K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "direction groups" } ] } } ], "Z8K2": "Z6", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41343" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "is bordered by ... to the-sentence (grouped lists)" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Generates a natural English sentence describing borders from grouped geographic entities and directions." } ] } } stbkexp6k5vgw734oay53ukxsljqmsc Z41344 0 93495 309475 2026-09-06T10:56:02Z Armin hpj 95406 309475 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41344" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41344K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Type" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z41344K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Number" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41344" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Iran Road Map" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } kjzvoprf26szetrk14v3z6k5hnqs0rj 309481 309475 2026-09-06T11:17:24Z Armin hpj 95406 309481 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41344" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6", "Z17K2": "Z41344K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Type" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z41344K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Number" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z16683", "Z17K2": "Z41344K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Size" } ] } } ], "Z8K2": "Z89", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41344" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Iran Road Map" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } flqisdifv7j8on4mnm0iveqjwl6389o Z41345 0 93496 309478 2026-09-06T11:15:15Z Armin hpj 95406 309478 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41345" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41344", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z41344(Z41344K1, Z41344K2):\n\treturn \"[[File:\" + Z41344K1 + \" \" + Z41344K2 + \"-Iran.svg|\" + Z41344K3 + \"px]]\"" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } hby3j7i8svdsmuazgolqrhvfz3hr2s7 309479 309478 2026-09-06T11:15:46Z Armin hpj 95406 309479 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41345" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41344", "Z14K3": { "Z1K1": "Z16", "Z16K1": "Z610", "Z16K2": "def Z41344(Z41344K1, Z41344K2):\n\treturn \"[[File:\" + Z41344K1 + \" \" + Z41344K2 + \"-Iran.svg|\" + Z41344K3 + \"px]]\"" } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "IR Road map implementation" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } pnqvgp4kq0k66y5pqtm19bkwosuine8 Z41346 0 93497 309488 2026-09-06T11:23:48Z Armin hpj 95406 309488 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41346" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41344", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41344", "Z41344K1": "Road", "Z41344K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "51" } }, "Z41344K3": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "30" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "[[File:Road 51-Iran |30px]] " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Iran Road 51 map with 30px" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gx4kit9z19731gnhw5anc7702vk6x37 309489 309488 2026-09-06T11:26:04Z Armin hpj 95406 309489 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41346" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41344", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41344", "Z41344K1": "Road", "Z41344K2": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "51" } }, "Z41344K3": { "Z1K1": "Z16683", "Z16683K1": "Z16660", "Z16683K2": { "Z1K1": "Z13518", "Z13518K1": "30" } } }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z877", "Z877K2": { "Z1K1": "Z89", "Z89K1": "[[File:Road 51-Iran.svg|30px]] " } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "Iran Road 51 map with 30px" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } ql8efhdmbd0jtqpmcbm8k0tm457y193 Z41347 0 93498 309490 2026-09-06T11:34:49Z HenkvD 1290 uses-sentence, Default 309490 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41347" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41347K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41347K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41347" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qmdhpznqb7myv52cmesx6oqbcyfodn9 309492 309490 2026-09-06T11:35:56Z HenkvD 1290 Added Z41348 to the approved list of test cases 309492 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41347" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41347K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41347K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41348" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41347" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } b4bb6rdo7qhyhtgcvmu1911b66mklof 309500 309492 2026-09-06T11:42:33Z HenkvD 1290 Added Z41349 to the approved list of implementations 309500 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41347" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41347K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41347K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41347K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41348" ], "Z8K4": [ "Z14", "Z41349" ], "Z8K5": "Z41347" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } 478474p54swhonipp5by2qmrz5d9q2x Z41348 0 93499 309491 2026-09-06T11:35:40Z HenkvD 1290 309491 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41348" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41347", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41347", "Z41347K1": { "Z1K1": "Z6091", "Z6091K1": "Q936" }, "Z41347K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41347K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41347K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "tbd" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tbd" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } r1rqttr7onmxabmjl7r2etooylp617a 309497 309491 2026-09-06T11:40:49Z HenkvD 1290 [nl] ❌≪OpenStreetMap (uses) waarheid op het terrein, luchtfotografie, satellietbeeld, geospatiale gegevens en informatie, Q253677, Q2384319, folksonomie, JOSM en Potlatch.≫❌ 309497 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41348" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41347", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41347", "Z41347K1": { "Z1K1": "Z6091", "Z6091K1": "Q936" }, "Z41347K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41347K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41347K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "❌≪OpenStreetMap (uses) waarheid op het terrein, luchtfotografie, satellietbeeld, geospatiale gegevens en informatie, Q253677, Q2384319, folksonomie, JOSM en Potlatch.≫❌" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪OpenStreetMap (uses) waarheid op het ......" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪OpenStreetMap (uses) waarheid op het terrein, luchtfotografie, satellietbeeld, geospatiale gegevens en informatie, Q253677, Q2384319, folksonomie, JOSM en Potlatch.≫❌" } ] } } 4doirj8eloe0yh04xz359b1iwvhhrc2 Z41349 0 93500 309495 2026-09-06T11:39:23Z HenkvD 1290 uses-sentence, Default, Composition 309495 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41349" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41347", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41347K2" }, "Z802K2": "(It)", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41347K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41347K4" } } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41347K3" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": "(used)" }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": "(uses)" } }, { "Z1K1": "Z7", "Z7K1": "Z37870", "Z37870K1": { "Z1K1": "Z18", "Z18K1": "Z41347K1" }, "Z37870K2": { "Z1K1": "Z6092", "Z6092K1": "P2283" }, "Z37870K3": { "Z1K1": "Z18", "Z18K1": "Z41347K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41347K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "uses-sentence, Default, Composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } qx0fehgexrj8106b3wdqp21ebqna6ed Z41350 0 93501 309496 2026-09-06T11:39:43Z Caominhthang03062023 84080 Create implementation to test for the first time 309496 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41350" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41343", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z22504", "Z22504K1": [ "Z6", { "Z1K1": "Z18", "Z18K1": "Z41343K1" }, "is bordered by", { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": { "Z1K1": "Z18", "Z18K1": "Z41343K2" }, "Z12899K2": "," }, "to the", { "Z1K1": "Z7", "Z7K1": "Z12899", "Z12899K1": { "Z1K1": "Z18", "Z18K1": "Z41343K3" }, "Z12899K2": "," }, "." ] } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gllghcsiuj5ssoa0jeewq6dnhts1cn8 Z41351 0 93502 309504 2026-09-06T11:47:25Z HenkvD 1290 has use-sentence, Default 309504 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41351" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41351K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41351K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41351" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "has use-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } srekzavnm769bby4wdzzddbijh5i9yk 309506 309504 2026-09-06T11:48:31Z HenkvD 1290 Added Z41352 to the approved list of test cases 309506 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41351" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41351K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41351K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41352" ], "Z8K4": [ "Z14" ], "Z8K5": "Z41351" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "has use-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } lugtvi2zs00qqvpngryxq9ju2cl1fma 309511 309506 2026-09-06T11:55:11Z HenkvD 1290 Added Z41353 to the approved list of implementations 309511 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41351" }, "Z2K2": { "Z1K1": "Z8", "Z8K1": [ "Z17", { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K1", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z40", "Z17K2": "Z41351K2", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "entity repeated?" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z6091", "Z17K2": "Z41351K3", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tense" } ] } }, { "Z1K1": "Z17", "Z17K1": "Z60", "Z17K2": "Z41351K4", "Z17K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "language" } ] } } ], "Z8K2": "Z11", "Z8K3": [ "Z20", "Z41352" ], "Z8K4": [ "Z14", "Z41353" ], "Z8K5": "Z41351" }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "has use-sentence, Default" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } isek6lni6xwdmw109em6vo4al1wkna3 Z41352 0 93503 309505 2026-09-06T11:48:19Z HenkvD 1290 309505 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41352" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41351", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41351", "Z41351K1": { "Z1K1": "Z6091", "Z6091K1": "Q39782" }, "Z41351K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41351K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41351K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "tbd" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "tbd" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } donyxfcigtti9jwkbpbrq2463wlvenq 309509 309505 2026-09-06T11:54:42Z HenkvD 1290 [nl] ❌≪(The uses of) messing (include) munt, machine-element, astrolabium, sculptuur, bouwkundig onderdeel, waterput, reliekhouder, gereedschap, muntsoort en kunstwerk.≫❌ 309509 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41352" }, "Z2K2": { "Z1K1": "Z20", "Z20K1": "Z41351", "Z20K2": { "Z1K1": "Z7", "Z7K1": "Z41351", "Z41351K1": { "Z1K1": "Z6091", "Z6091K1": "Q39782" }, "Z41351K2": { "Z1K1": "Z40", "Z40K1": "Z42" }, "Z41351K3": { "Z1K1": "Z6091", "Z6091K1": "Q192613" }, "Z41351K4": "Z1157" }, "Z20K3": { "Z1K1": "Z7", "Z7K1": "Z14392", "Z14392K2": { "Z1K1": "Z11", "Z11K1": "Z1360", "Z11K2": "❌≪(The uses of) messing (include) munt, machine-element, astrolabium, sculptuur, bouwkundig onderdeel, waterput, reliekhouder, gereedschap, muntsoort en kunstwerk.≫❌" } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪(The uses of) messing (include) munt, ....." } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "[nl] ❌≪(The uses of) messing (include) munt, machine-element, astrolabium, sculptuur, bouwkundig onderdeel, waterput, reliekhouder, gereedschap, muntsoort en kunstwerk.≫❌" } ] } } sukwi8qtcdufc41ih3fa4q7vdby3gjm Z41353 0 93504 309508 2026-09-06T11:53:39Z HenkvD 1290 has use-sentence, Default, composition 309508 zobject text/plain { "Z1K1": "Z2", "Z2K1": { "Z1K1": "Z6", "Z6K1": "Z41353" }, "Z2K2": { "Z1K1": "Z14", "Z14K1": "Z41351", "Z14K2": { "Z1K1": "Z7", "Z7K1": "Z36911", "Z36911K1": { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z7", "Z7K1": "Z34669", "Z34669K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": { "Z1K1": "Z7", "Z7K1": "Z10771", "Z10771K1": { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z18", "Z18K1": "Z41351K2" }, "Z802K2": "(Its uses)", "Z802K3": { "Z1K1": "Z7", "Z7K1": "Z15175", "Z15175K1": "(The uses of)", "Z15175K2": { "Z1K1": "Z7", "Z7K1": "Z24766", "Z24766K1": { "Z1K1": "Z18", "Z18K1": "Z41351K1" }, "Z24766K2": { "Z1K1": "Z18", "Z18K1": "Z41351K4" } }, "Z15175K3": " " } } } }, { "Z1K1": "Z7", "Z7K1": "Z802", "Z802K1": { "Z1K1": "Z7", "Z7K1": "Z19316", "Z19316K1": { "Z1K1": "Z18", "Z18K1": "Z41351K3" }, "Z19316K2": { "Z1K1": "Z6091", "Z6091K1": "Q1994301" } }, "Z802K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": "(included)" }, "Z802K3": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": "(include)" } }, { "Z1K1": "Z7", "Z7K1": "Z37870", "Z37870K1": { "Z1K1": "Z18", "Z18K1": "Z41351K1" }, "Z37870K2": { "Z1K1": "Z6092", "Z6092K1": "P366" }, "Z37870K3": { "Z1K1": "Z18", "Z18K1": "Z41351K4" } } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": " " } }, { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": "." } ], "Z34669K2": { "Z1K1": "Z11", "Z11K1": { "Z1K1": "Z18", "Z18K1": "Z41351K4" }, "Z11K2": "" } } } }, "Z2K3": { "Z1K1": "Z12", "Z12K1": [ "Z11", { "Z1K1": "Z11", "Z11K1": "Z1002", "Z11K2": "has use-sentence, Default, composition" } ] }, "Z2K4": { "Z1K1": "Z32", "Z32K1": [ "Z31" ] }, "Z2K5": { "Z1K1": "Z12", "Z12K1": [ "Z11" ] } } gzaivjjmidibrtege34jqh2540c5pol