No history yet

Implementing Pham Language Commands

From Idea to Action

A Pham language command is a powerful, high-level instruction. It's a clear, human-readable way to state a goal, but an AI can't execute it directly. The command must first be translated into a lower-level programming language that the system's hardware understands, like Python or C.

Think of it like telling a baker you want a birthday cake. That's the high-level goal. The baker, acting as an interpreter, translates your request into a series of precise, low-level actions: preheat the oven, measure flour, mix ingredients, and so on. The AI’s internal systems do the same thing, turning your Pham command into concrete, executable steps.

The Translation Process

When an AI receives a Pham command, an internal component—often called a parser or an interpreter—gets to work. This component deconstructs the command, much like you would diagram a sentence in English class. It identifies the key parts: the action to be performed (the verb), the objects to act upon (the nouns), and any rules or constraints (the conditions).

This breakdown allows the system to map the high-level instruction to a pre-existing function or a sequence of functions in its own codebase. The Pham language provides the blueprint; the AI's internal logic builds the house.

20:`. It's a direct translation of the logic."},$R[108]={speaker:"Beau",text:"And the last part, 'then flag for heavy shipping,' would be... what? Setting a value?"},$R[109]={speaker:"Jo",text:"Exactly. It would be something like `item['shipping_class'] = 'heavy'`. So that one Pham sentence becomes three or four lines of Python code that an inventory management system can execute."},$R[110]={speaker:"Beau",text:"So the human cognitive load is low because I just wrote one sentence, but the AI still gets the precise, line-by-line instructions it needs. That makes sense. But what about ambiguity? 'Flag for heavy shipping' seems clear, but what if I said, 'Move the blue block to the box'?"},$R[111]={speaker:"Jo",text:"Ah, you've hit on the most important part of implementation: specifying operations and conditions. 'Move' isn't enough for a robot. Does it mean slide? Pick up and place? How fast? Which path should it take to avoid other objects?"},$R[112]={speaker:"Beau",text:"So... the language has to account for that somehow?"},$R[113]={speaker:"Jo",text:"It forces you to be precise. A better Pham command would be: '[Define path = optimal, speed = 0.5 m/s. For object = blue_block, execute move_and_place at location = target_box, using path and speed.]' See how we're defining the conditions *before* the action?"},$R[114]={speaker:"Beau",text:"Whoa, okay. So you're basically giving the AI its operational parameters in the command itself. 'Optimal path' seems a little vague though."},$R[115]={speaker:"Jo",text:"It is, and that's where the implementation layer gets smart. The translator would have a pre-defined function for `optimal`. Maybe it means 'the shortest path that does not intersect with other known objects.' When it sees the word `optimal`, it calls that complex pathfinding algorithm."},$R[116]={speaker:"Beau",text:"So you're creating a library of these specific meanings. The Pham language is the user interface, but underneath, you've built a whole dictionary of what these terms actually mean in Python or C."},$R[117]={speaker:"Jo",text:"Exactly that. It's all about ensuring accurate execution. The goal is to remove any possibility of misinterpretation. If the AI has to guess, it will eventually guess wrong, and when you're dealing with... you know, factory equipment or medical data, guessing wrong is not an option."},$R[118]={speaker:"Beau",text:"That makes a ton of sense. You're trying to make the AI's world as black and white as possible. No room for creative interpretation of the instructions."},$R[119]={speaker:"Jo",text:"You want the creativity on the human side, in designing the command, not on the machine side in executing it. Let's take another one. Imagine a drone. A bad command is '[Survey the west field.]'"},$R[120]={speaker:"Beau",text:"What does 'survey' even mean? What altitude? What camera settings? What pattern should it fly?"},$R[121]={speaker:"Jo",text:"You got it. A proper implementation-focused command would be something like: '[Define survey_area = west_field_coordinates. Define pattern = grid, altitude = 100m, sensor = thermal. For drone_1, execute flight_plan using survey_area, pattern, altitude, sensor.]'"},$R[122]={speaker:"Beau",text:"And each of those—'grid', 'thermal'—would correspond to a pre-written function in the drone's control software."},$R[123]={speaker:"Jo",text:"Precisely. The translator sees `grid` and calls the `execute_grid_pattern()` function with the specified area coordinates and altitude. It sees `thermal` and activates the thermal camera. No ambiguity. The command isn't just an instruction; it's a complete configuration package."},$R[124]={speaker:"Beau",text:"So the real work, then, isn't just learning Pham language. It's building that underlying library of functions that the language can... can hook into. That's the implementation."},$R[125]={speaker:"Jo",text:"That's the bridge. You build the bridge between the human-centric language and the machine-centric code once, and you build it to be rock solid. Then, writing commands becomes incredibly fast and reliable because you're just assembling these pre-validated, unambiguous blocks."},$R[126]={speaker:"Beau",text:"It’s like instead of telling your friend how to bake a cake from scratch every single time, you just say 'make the chocolate cake recipe' and they know exactly which recipe that is and how to do every step perfectly because you already taught it to them."},$R[127]={speaker:"Jo",text:"That's a perfect analogy. And if you want it with different frosting, you just say 'make the chocolate cake recipe, but use the vanilla frosting function'. You're just changing one parameter. The core logic is already there, translated and ready to go."}]},$R[128]={type:"podcast",title:"Advanced Applications and Optimization",nodeId:"zrc62j",audioUrl:"https://oboe-storage.s3.amazonaws.com/dev/podcasts/v1/node-364977/3ceb7041-802b-4c1d-b74d-901695884a78.mp3",episodeVariant:"full",fileSizeBytes:2339544,durationMs:292415,scriptParts:$R[129]=[$R[130]={speaker:"Beau",text:"Okay, Jo. So, we've established that the Pham language is this super efficient way to talk to AI, right? We've gone over the basics... like, how to build a simple command using sets, almost like a math equation."},$R[131]={speaker:"Jo",text:"Exactly. Combining standard English with mathematical grammar to be precise and low-energy."},$R[132]={speaker:"Beau",text:"Right. But all our examples have been pretty straightforward. You know, find a file, analyze this data set. What happens when the task gets... huge? Like, I'm thinking about coordinating a fleet of autonomous delivery drones across an entire city. You can't just say '(Deliver, all packages)'."},$R[133]={speaker:"Jo",text:"That's the perfect question, because it gets us right into the advanced applications. You're right, a simple command won't work. For something that complex, you start nesting commands. You create a hierarchy of instructions within a single statement."},$R[134]={speaker:"Beau",text:"Okay, like... Russian dolls, but for instructions?"},$R[135]={speaker:"Jo",text:"Exactly. So for your drone fleet, you might have a master command. Something like: `(Execute, for all drones in Fleet A: (If, battery \x3C 20%, then (Return, to Charging Station 7)), else (Proceed, to next delivery in Route Queue))`. See what's happening there?"},$R[136]={speaker:"Beau",text:"Whoa. Yeah, okay. It's not one instruction. It's a whole decision tree. There's a condition... the 'if the battery is low' part... and then two different outcomes. It's like a little piece of logic, a whole program, written in one line."},$R[137]={speaker:"Jo",text:"And that's what makes it powerful for complex tasks. You can embed conditional logic, loops, and priorities directly into the command structure. The AI doesn't have to infer your intent; the logic is explicitly defined."},$R[138]={speaker:"Beau",text:"Okay, that makes sense for a central system talking to its drones. But... what if the drones need to talk to each other? Let's say one drone hits a sudden flock of birds and has to reroute. Does it send that whole complex command to its neighbor drones?"},$R[139]={speaker:"Jo",text:"Great point. This is where AI-to-AI communication comes in. And no, they don't repeat the whole command. They use Pham language to send extremely concise status updates or requests. The drone that encountered the birds, let's call it Drone 1, would broadcast a very simple, targeted message."},$R[140]={speaker:"Beau",text:"Like what?"},$R[141]={speaker:"Jo",text:"Something like `(Update, Route 5B, (Obstacle, Avian, Coordinates XYZ))`. That's it. It's just a tiny packet of new information."},$R[142]={speaker:"Beau",text:"And the other drones just... know what to do with that?"},$R[143]={speaker:"Jo",text:"Yes, because they're all operating under the same initial, complex command we talked about. That command is their 'mission'. The little update from Drone 1 is just a new variable they plug into their existing logic. So another drone, Drone 2, receives that update and its internal logic goes: 'Ah, obstacle on Route 5B. My mission says to proceed to my next delivery. Therefore, I will calculate a new path that avoids coordinates XYZ.' It doesn't need to be told what to do; it just needs the new data."},$R[144]={speaker:"Beau",text:"So the AIs aren't having a conversation, they're just sharing facts. It's incredibly efficient."},$R[145]={speaker:"Jo",text:"Wildly efficient. And that efficiency is the whole point, which brings us to optimization. A huge part of using Pham language at an advanced level is about crafting commands that are not just clear, but also consume the least amount of energy."},$R[146]={speaker:"Beau",text:"How do you even do that? How does one command use more energy than another?"},$R[147]={speaker:"Jo",text:"It comes down to ambiguity and processing cycles. For instance, you could give a command like `(Analyze, recent sales data)`. That seems simple, but it's actually terrible."},$R[148]={speaker:"Beau",text:"Why? It's short."},$R[149]={speaker:"Jo",text:"It's vague. The AI has to ask itself: What does 'analyze' mean? What counts as 'recent'? What kind of 'data'? It has to spin up multiple potential models, search for definitions... that all takes processing power, which means energy. It's like telling someone to 'go get that thing over there'. They have to stop and figure out what 'thing' and 'there' you mean."},$R[150]={speaker:"Beau",text:"Okay, so how do you optimize it?"},$R[151]={speaker:"Jo",text:"By being ruthlessly specific. The optimized version would be: `(Calculate, linear regression, for (Dataset, Sales_Q3), where (Date > 2023-07-01))`. Every single element is precise. The action is 'Calculate', the method is 'linear regression', the target is 'Sales_Q3', and the scope is defined. The AI doesn't have to guess. It can execute the task directly."},$R[152]={speaker:"Beau",text:"So being a good Pham language programmer is about removing every ounce of doubt from the instruction."},$R[153]={speaker:"Jo",text:"That's the core of it. Command optimization isn't just about energy, it's about performance. Specificity leads to speed and accuracy. It's the difference between a task taking five seconds with one processor, or thirty seconds while trying to spin up six different interpretive models."},$R[154]={speaker:"Beau",text:"So the paradox is, the more complex the command looks to us, with all those nested parts, the simpler it actually is for the AI to execute. There's no guesswork."},$R[155]={speaker:"Jo",text:"You've got it. The cognitive load is on the human structuring the command, not on the AI interpreting it. And that's how you get complex systems, from drone fleets to scientific modeling, to operate in harmony with maximum efficiency."}]}],songs:$R[156]=[],exams:$R[157]=[],guides:$R[158]=[],worksheets:$R[159]=[],flashcards:$R[160]=[],diagrams:$R[161]=[],documents:$R[162]=[],chapters:$R[163]=[$R[164]={uuid:"0",title:"Introduction to Pham Language",includesKnowledgeBase:!1,hasDemonstratedMastery:!1,streaming:!1,blocks:$R[165]=[$R[166]={content:$R[167]={type:"header",text:"A Language for Humans and AI"},uuid:"0|0"},$R[168]={content:$R[169]={type:"text",text:"Talking to an AI can feel like a guessing game. You phrase a question one way, and it misunderstands. You try again with different words, and the answer gets closer, but it's still not quite right. This back-and-forth isn't just frustrating for us; it's also inefficient for the AI, which wastes energy trying to decipher our ambiguous, everyday language."},uuid:"0|1"},$R[170]={content:$R[171]={type:"text",text:"The Pham language is designed to solve this problem. It’s a universal language built for clear and effective communication between humans and artificial intelligence systems. The goal is simple: make instructions for AI unmistakable, without forcing people to learn a complex programming language."},uuid:"0|2"},$R[172]={content:$R[173]={type:"header",text:"The Best of Both Worlds"},uuid:"0|3"},$R[174]={content:$R[175]={type:"text",text:"Pham's core philosophy combines two powerful ideas: standard English vocabulary and standard mathematical grammar. Think of it as a bridge between how people talk and how computers think."},uuid:"0|4"},$R[176]={content:$R[177]={type:"text",text:"We already know the words. Pham uses a familiar English vocabulary, so there's no need to memorize a new dictionary. The innovation is in the structure. Instead of the often messy and context-dependent rules of English grammar, Pham uses the logic and precision of mathematics to arrange words. Every statement has a clear, singular meaning."},uuid:"0|5"},$R[178]={content:$R[179]={type:"text",text:"This structure removes the guesswork. When a human gives a command in Pham, the AI doesn't need to interpret intent or context. The instruction is as clear as a mathematical equation."},uuid:"0|7"},$R[180]={content:$R[181]={type:"header",text:"Less Work, More Power"},uuid:"0|8"},$R[182]={content:$R[183]={type:"text",text:"This direct approach has two major benefits. First, it dramatically reduces the energy an AI system uses. An AI trying to understand natural language is like a person trying to assemble furniture with vague, poorly written instructions. It involves a lot of trial and error, which consumes processing power and electricity. Pham provides a perfect blueprint every time, allowing the AI to execute a task using the least amount of energy possible."},uuid:"0|9"},$R[184]={content:$R[185]={type:"text",text:"Second, it minimizes the cognitive load on the human user. You don't have to spend time figuring out the perfect "},uuid:"0|10"},$R[186]={content:$R[187]={type:"blockquote",text:"Clear instructions for the machine, simple language for the person."},uuid:"0|11"},$R[188]={content:$R[189]={type:"text",text:"Let's look at a few simple examples. Instead of typing a long, conversational request, you can use a more direct command."},uuid:"0|12"},$R[190]={content:$R[191]={type:"code",markdown:"```\n# Instead of:\n# \"Could you please find the three largest cities in California by population and show me the results in a table?\"\n\n# A Pham language equivalent might look like:\n(Table) Cities in California by Population [Top 3]\n```"},uuid:"0|13"},$R[192]={content:$R[193]={type:"code",markdown:"```\n# Instead of:\n# \"Summarize the main points of the article at this link for me.\"\n\n# A Pham language command could be:\nSummarize (https://...)\n```"},uuid:"0|14"},$R[194]={content:$R[195]={type:"text",text:"Notice how the commands are direct and unambiguous. They use English words but are structured with the clarity of a function call in programming. This is the essence of Pham: harnessing the power of mathematical precision while keeping the language accessible to everyone."},uuid:"0|15"},$R[196]={content:$R[197]={type:"quiz",questions:$R[198]=[$R[199]={text:"What is the primary problem the Pham language is designed to solve?",options:$R[200]=[$R[201]={text:"The ambiguity and inefficiency when humans use natural language to communicate with AI.",followup:"Correct. Pham aims to eliminate the guesswork involved when an AI has to interpret conversational language.",isRightAnswer:!0},$R[202]={text:"The lack of creativity and emotional understanding in current AI models.",followup:"Incorrect. Pham focuses on making instructions clear and precise, not on enhancing AI's creative or emotional capabilities.",isRightAnswer:!1},$R[203]={text:"The high cost of hardware required to run advanced artificial intelligence systems.",followup:"Incorrect. While Pham can reduce energy consumption, its primary goal is to improve communication, not to address hardware costs directly.",isRightAnswer:!1},$R[204]={text:"The difficulty of translating programming languages like Python and Java into English.",followup:"Incorrect. Pham is designed for human-to-AI commands, not for translating between programming languages.",isRightAnswer:!1}]},$R[205]={text:"Which two components are combined in Pham's core philosophy?",options:$R[206]=[$R[207]={text:"Python syntax and French vocabulary",followup:"Incorrect. Pham uses standard English vocabulary, not French, and its structure is based on mathematical grammar, not a specific programming language's syntax.",isRightAnswer:!1},$R[208]={text:"AI-generated vocabulary and human-like grammar",followup:"Incorrect. Pham uses existing English vocabulary so users don't have to learn new words.",isRightAnswer:!1},$R[209]={text:"English vocabulary and mathematical grammar",followup:"That's right. Pham leverages the familiarity of English words with the precision and logic of mathematical structure.",isRightAnswer:!0},$R[210]={text:"Universal symbols and programming logic",followup:"Incorrect. Pham specifically uses standard English words to remain accessible, not a system of universal symbols.",isRightAnswer:!1}]},$R[211]={text:"True or False: The main benefit of Pham for an AI system is a significant reduction in the energy and processing power required to understand a command.",options:$R[212]=[$R[213]={text:"True",followup:"Correct. By providing unambiguous, mathematically precise instructions, Pham eliminates the wasteful trial-and-error process of interpreting natural language, thus saving energy.",isRightAnswer:!0},$R[214]={text:"False",followup:"Incorrect. The text explicitly states that Pham's direct approach dramatically reduces the energy an AI system uses by providing a 'perfect blueprint every time.'",isRightAnswer:!1}]},$R[215]={text:"How does Pham reduce the 'cognitive load' on a human user?",options:$R[216]=[$R[217]={text:"By using a vocabulary drawn from advanced mathematics.",followup:"Incorrect. Pham uses standard English vocabulary to make it easier for people, not harder.",isRightAnswer:!1},$R[218]={text:"By autocompleting commands before the user finishes typing.",followup:"Incorrect. While a feature like this could be built on top of Pham, the core language itself reduces cognitive load through its clarity, not through typing assistance.",isRightAnswer:!1},$R[219]={text:"By eliminating the need to guess which phrasing an AI will understand.",followup:"Correct. With Pham, the structure is clear and unambiguous, so the user doesn't have to spend mental energy trying different ways to phrase a request.",isRightAnswer:!0},$R[220]={text:"By requiring users to complete a rigorous training course.",followup:"Incorrect. Pham is designed to be accessible without learning a complex new system.",isRightAnswer:!1}]}]},uuid:"0|16"},$R[221]={content:$R[222]={type:"text",text:"This new way of communicating bridges the gap between human thought and machine execution, paving the way for more efficient and intuitive interactions with AI."},uuid:"0|17"}]},$R[223]={uuid:"1",title:"Core Syntax and Structure",includesKnowledgeBase:!1,hasDemonstratedMastery:!1,streaming:!1,blocks:$R[224]=[$R[225]={content:$R[226]={type:"header",text:"The Foundation of Pham Syntax"},uuid:"1|0"},$R[227]={content:$R[228]={type:"text",text:"The syntax of the Pham language rests on two pillars: standard English vocabulary and the rigorous logic of mathematical grammar. While we use familiar English words, the way we arrange them is what gives Pham its power and precision. Unlike everyday conversation, which is full of ambiguity and implied meaning, Pham commands are structured to be completely unambiguous."},uuid:"1|1"},$R[229]={content:$R[230]={type:"blockquote",text:"Think of it like a mathematical equation. The position and relationship of each element are critical to the final result. There is no room for interpretation; a command means exactly what it says."},uuid:"1|2"},$R[231]={content:$R[232]={type:"text",text:"This “mathematical grammar” doesn’t mean you need to be a mathematician. It simply means that commands follow a strict, logical order. Every word has a specific role, and its placement within the command defines its function. This structure is what allows an AI to understand the instruction perfectly without wasting energy on interpretation."},uuid:"1|3"},$R[233]={content:$R[234]={type:"header",text:"Commands as Ordered Sets"},uuid:"1|4"},$R[235]={content:$R[236]={type:"text",text:"At its core, every command in the Pham language is an **ordered set**. An ordered set is simply a collection of items where the sequence matters. The command `(A, B, C)` is different from `(C, B, A)` because the order of the elements has changed.\n\nIn Pham, a command is a set of instructions that are executed in a specific sequence. This structure typically follows a pattern: `(Subject, Verb, Object, [Context])`. Each part of the command is a distinct element in the set."},uuid:"1|5"},$R[237]={content:$R[238]={type:"text",text:"Let's break down a practical example."},uuid:"1|7"},$R[239]={content:$R[240]={type:"code",markdown:"```\n// Command to analyze sales data\n(SalesReport, Analyze, QuarterlyRevenue, {Filter: Year=2023, Region='North America'})\n```"},uuid:"1|8"},$R[241]={content:$R[242]={type:"text",text:"Here's how this command functions as an ordered set:\n\n1. **Subject:** `SalesReport`. This is the primary data or entity the command acts upon.\n2. **Verb:** `Analyze`. This is the action to be performed.\n3. **Object:** `QuarterlyRevenue`. This specifies what aspect of the subject to focus on.\n4. **Context:** `{Filter: Year=2023, Region='North America'}`. This optional element provides additional parameters or constraints, enclosed in curly braces to group them as a single contextual element."},uuid:"1|9"},$R[243]={content:$R[244]={type:"text",text:"Changing the order would fundamentally change the meaning or render the command invalid. The structure ensures the AI knows exactly what to act on, what to do, and how to do it."},uuid:"1|10"},$R[245]={content:$R[246]={type:"header",text:"Guidelines for Effective Code"},uuid:"1|11"},$R[247]={content:$R[248]={type:"text",text:"Writing good Pham code is about clarity and precision. Here are a few guidelines to follow:"},uuid:"1|12"},$R[249]={content:$R[250]={type:"blockquote",text:"**Be Explicit:** Never assume the AI knows what you mean. State every part of the command clearly. Instead of `(Analyze, Revenue)`, a better command is `(SalesReport, Analyze, QuarterlyRevenue)`."},uuid:"1|13"},$R[251]={content:$R[252]={type:"text",text:"**Use Standard Terms:** Stick to common, standard English for vocabulary. This reduces the chance of misinterpretation. For instance, use `Summarize` instead of a more colloquial term like `Give me the gist`."},uuid:"1|14"},$R[253]={content:$R[254]={type:"blockquote",text:"**Group Context:** Use curly braces `{}` to bundle all contextual information, like filters, timeframes, or output formats. This keeps the primary `(Subject, Verb, Object)` structure clean and easy to parse."},uuid:"1|15"},$R[255]={content:$R[256]={type:"text",text:"Let’s look at another example. Imagine you want an AI to write a draft for a blog post."},uuid:"1|16"},$R[257]={content:$R[258]={type:"code",markdown:"```\n// A weak, ambiguous command\n(Write, Blog, AI)\n\n// A strong, explicit Pham command\n(NewBlogPost, CreateDraft, 'The Impact of AI on Healthcare', {Tone: 'Formal', WordCount: 800, Keywords: ['AI in medicine', 'diagnostics', 'patient care']})\n```"},uuid:"1|17"},$R[259]={content:$R[260]={type:"text",text:"The second command is far more effective. It clearly defines the subject (`NewBlogPost`), the action (`CreateDraft`), and the object (`'The Impact of AI on Healthcare'`). It also provides a clear, grouped set of contextual parameters that guide the AI to produce the desired output with minimal guesswork."},uuid:"1|18"},$R[261]={content:$R[262]={type:"text",text:"Now, let's test your understanding of these core principles."},uuid:"1|19"},$R[263]={content:$R[264]={type:"quiz",questions:$R[265]=[$R[266]={text:"What is the fundamental principle behind the grammar of the Pham language?",options:$R[267]=[$R[268]={text:"It is based on the rigorous logic of an ordered set, where sequence matters.",followup:"Correct! The text states, 'At its core, every command in the Pham language is an ordered set.'",isRightAnswer:!0},$R[269]={text:"The order of words does not matter as long as the vocabulary is correct.",followup:"Incorrect. The text explicitly states that changing the order would fundamentally change the meaning or render the command invalid.",isRightAnswer:!1},$R[270]={text:"It relies primarily on complex mathematical symbols instead of words.",followup:"Incorrect. The text clarifies that while the grammar is 'mathematical' in its logic, it uses standard English vocabulary.",isRightAnswer:!1},$R[271]={text:"It uses informal, conversational English for flexibility.",followup:"Incorrect. The text emphasizes that Pham commands are structured to be unambiguous, unlike everyday conversation.",isRightAnswer:!1}]},$R[272]={text:"A typical Pham command follows which structure?",options:$R[273]=[$R[274]={text:"{Context, Subject, Verb, Object}",followup:"Incorrect. This changes both the order and the bracketing convention for the main command.",isRightAnswer:!1},$R[275]={text:"(Action, Target, Detail, [Source])",followup:"Incorrect. While conceptually similar, these are not the specific terms used to define the Pham command structure.",isRightAnswer:!1},$R[276]={text:"(Subject, Verb, Object, [Context])",followup:"Correct! This is the standard pattern for a Pham command, with the Context being an optional element.",isRightAnswer:!0},$R[277]={text:"(Verb, Subject, Context, [Object])",followup:"Incorrect. This order does not follow the standard Pham syntax.",isRightAnswer:!1}]},$R[278]={text:"In the Pham command `(SalesReport, Analyze, QuarterlyRevenue, {Filter: Year=2023})`, what is the 'Subject'?",options:$R[279]=[$R[280]={text:"Analyze",followup:"Incorrect. 'Analyze' is the Verb, representing the action to be performed.",isRightAnswer:!1},$R[281]={text:"QuarterlyRevenue",followup:"Incorrect. 'QuarterlyRevenue' is the Object, specifying what aspect of the subject to focus on.",isRightAnswer:!1},$R[282]={text:"SalesReport",followup:"Correct! The Subject is the primary data or entity the command acts upon.",isRightAnswer:!0},$R[283]={text:"{Filter: Year=2023}",followup:"Incorrect. This is the Context, providing additional parameters for the command.",isRightAnswer:!1}]},$R[284]={text:"True or False: In the Pham language, the command `(A, B, C)` is functionally identical to `(C, B, A)`.",options:$R[285]=[$R[286]={text:"True",followup:"Incorrect. Because Pham is based on ordered sets, changing the sequence of elements fundamentally changes the command's meaning.",isRightAnswer:!1},$R[287]={text:"False",followup:"Correct. The Pham language is built on the concept of an 'ordered set,' where the sequence of elements is critical to its meaning.",isRightAnswer:!0}]},$R[288]={text:"According to the principle of using standard terms, which word would be the best choice for a 'Verb' element in a Pham command?",options:$R[289]=[$R[290]={text:"GiveMeTheGist",followup:"Incorrect. This is a colloquial term. The guidelines advise sticking to common, standard English.",isRightAnswer:!1},$R[291]={text:"DoAQuickRunDown",followup:"Incorrect. This is too informal and could be misinterpreted. Standard terms are preferred.",isRightAnswer:!1},$R[292]={text:"Summarize",followup:"Correct. The text gives 'Summarize' as a prime example of a standard term to use for clarity and precision.",isRightAnswer:!0}]}]},uuid:"1|20"},$R[293]={content:$R[294]={type:"text",text:"Mastering this structure of ordered sets is the key to writing efficient and powerful commands in the Pham language."},uuid:"1|21"}]},$R[295]={uuid:"2",title:"Implementing Pham Language Commands",includesKnowledgeBase:!1,hasDemonstratedMastery:!1,streaming:!1,blocks:$R[296]=[$R[297]={content:$R[298]={type:"header",text:"From Idea to Action"},uuid:"2|0"},$R[299]={content:$R[300]={type:"text",text:"A Pham language command is a powerful, high-level instruction. It's a clear, human-readable way to state a goal, but an AI can't execute it directly. The command must first be translated into a lower-level programming language that the system's hardware understands, like Python or C.\n\nThink of it like telling a baker you want a birthday cake. That's the high-level goal. The baker, acting as an interpreter, translates your request into a series of precise, low-level actions: preheat the oven, measure flour, mix ingredients, and so on. The AI’s internal systems do the same thing, turning your Pham command into concrete, executable steps."},uuid:"2|1"},$R[301]={content:$R[302]={type:"header",text:"The Translation Process"},uuid:"2|2"},$R[303]={content:$R[304]={type:"text",text:"When an AI receives a Pham command, an internal component—often called a parser or an interpreter—gets to work. This component deconstructs the command, much like you would diagram a sentence in English class. It identifies the key parts: the action to be performed (the verb), the objects to act upon (the nouns), and any rules or constraints (the conditions).\n\nThis breakdown allows the system to map the high-level instruction to a pre-existing function or a sequence of functions in its own codebase. The Pham language provides the blueprint; the AI's internal logic builds the house."},uuid:"2|3"},$R[305]={content:$R[306]={svgMarkup:"\x3C?xml version='1.0' encoding='UTF-8'?>\n\x3C!-- This file was generated by dvisvgm 2.11.1 -->\n\x3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='95.427077pt' height='340.15748pt' viewBox='104.122987 122.509833 95.427077 340.15748'>\n\x3Cdefs>\n\x3Cpath id='g0-136' d='M2.331258-4.433375C1.803238-4.363636 1.305106-4.144458 .976339-3.716065C.697385-3.367372 .547945-2.929016 .547945-2.49066C.547945-1.464508 1.404732-.557908 2.480697-.557908C3.506849-.557908 4.41345-1.43462 4.41345-2.49066C4.41345-3.466999 3.656289-4.443337 2.470735-4.443337C2.420922-4.443337 2.381071-4.433375 2.331258-4.433375Z'/>\n\x3Cpath id='g1-39' d='M3.39726-4.951432C3.39726-5.718555 3.028643-6.087173 2.620174-6.087173C2.291407-6.087173 2.11208-5.828144 2.11208-5.589041C2.11208-5.32005 2.311333-5.090909 2.610212-5.090909C2.67995-5.090909 2.729763-5.100872 2.749689-5.100872C2.789539-5.100872 2.789539-5.011208 2.789539-4.951432C2.789539-4.762142 2.759651-4.044832 1.972603-3.58655C1.892902-3.536737 1.793275-3.486924 1.793275-3.327522C1.793275-3.148194 1.96264-3.008717 2.102117-3.008717C2.34122-3.008717 3.39726-3.696139 3.39726-4.951432Z'/>\n\x3Cpath id='g1-40' d='M4.353674 .537983C4.353674 .388543 4.283935 .348692 4.104608 .229141C2.86924-.607721 2.410959-1.932752 2.410959-3.048568C2.410959-4.044832 2.789539-5.429639 4.124533-6.336239C4.283935-6.445828 4.353674-6.485679 4.353674-6.635118C4.353674-6.714819 4.303861-6.914072 4.044832-6.914072C3.755915-6.914072 1.723537-5.599004 1.723537-3.048568C1.723537-1.863014 2.181818-.966376 2.530511-.468244C3.058531 .259029 3.805729 .816936 4.044832 .816936C4.303861 .816936 4.353674 .617684 4.353674 .537983Z'/>\n\x3Cpath id='g1-41' d='M3.506849-3.048568C3.506849-4.234122 3.048568-5.13076 2.699875-5.628892C2.171856-6.356164 1.424658-6.914072 1.185554-6.914072C.936488-6.914072 .876712-6.714819 .876712-6.635118C.876712-6.485679 .986301-6.41594 1.036115-6.386052C2.669988-5.300125 2.819427-3.696139 2.819427-3.048568C2.819427-2.052304 2.450809-.667497 1.105853 .239103C.956413 .33873 .876712 .388543 .876712 .537983C.876712 .617684 .936488 .816936 1.185554 .816936C1.474471 .816936 3.506849-.498132 3.506849-3.048568Z'/>\n\x3Cpath id='g1-42' d='M2.909091-2.520548C3.516812-2.181818 3.148194-2.381071 3.845579-1.96264C4.11457-1.803238 4.134496-1.803238 4.214197-1.803238C4.41345-1.803238 4.542964-1.982565 4.542964-2.132005C4.542964-2.30137 4.423412-2.391034 4.403487-2.400996C4.154421-2.570361 3.476961-2.899128 3.217933-3.038605L4.293898-3.626401C4.41345-3.696139 4.542964-3.765878 4.542964-3.955168C4.542964-3.995019 4.542964-4.283935 4.144458-4.283935L2.909091-3.566625C2.929016-3.825654 2.938979-4.483188 2.938979-4.772105C2.938979-4.861768 2.938979-5.190535 2.610212-5.190535S2.281445-4.861768 2.281445-4.772105C2.281445-4.483188 2.291407-3.825654 2.311333-3.566625L1.235367-4.194271C1.09589-4.283935 1.075965-4.283935 1.006227-4.283935C.806974-4.283935 .67746-4.104608 .67746-3.955168C.67746-3.765878 .787049-3.706102 .916563-3.636364L2.002491-3.048568L.926526-2.460772C.806974-2.391034 .67746-2.331258 .67746-2.132005C.67746-2.092154 .67746-1.803238 1.075965-1.803238L2.311333-2.520548C2.291407-2.261519 2.281445-1.603985 2.281445-1.315068C2.281445-1.225405 2.281445-.896638 2.610212-.896638S2.938979-1.225405 2.938979-1.315068C2.938979-1.603985 2.929016-2.261519 2.909091-2.520548Z'/>\n\x3Cpath id='g1-44' d='M2.809465-.029888C2.660025 .587796 2.191781 .747198 2.072229 .787049C1.972603 .816936 1.793275 .86675 1.793275 1.066002C1.793275 1.215442 1.942715 1.384807 2.11208 1.384807C2.430884 1.384807 3.447073 .846824 3.447073-.249066C3.447073-.856787 3.058531-1.24533 2.620174-1.24533C2.221669-1.24533 1.992528-.946451 1.992528-.627646C1.992528-.249066 2.281445 0 2.610212 0C2.669988 0 2.739726-.009963 2.809465-.029888Z'/>\n\x3Cpath id='g1-46' d='M3.237858-.617684C3.237858-.986301 2.938979-1.24533 2.620174-1.24533C2.241594-1.24533 1.992528-.936488 1.992528-.627646C1.992528-.259029 2.291407 0 2.610212 0C2.988792 0 3.237858-.308842 3.237858-.617684Z'/>\n\x3Cpath id='g1-47' d='M4.562889-6.326276C4.632628-6.485679 4.64259-6.485679 4.64259-6.56538C4.64259-6.744707 4.493151-6.914072 4.293898-6.914072C4.07472-6.914072 4.004981-6.764633 3.945205-6.635118L.657534 .239103C.587796 .398506 .577833 .398506 .577833 .478207C.577833 .657534 .727273 .826899 .926526 .826899C1.145704 .826899 1.215442 .67746 1.275218 .547945L4.562889-6.326276Z'/>\n\x3Cpath id='g1-48' d='M4.722291-3.038605C4.722291-4.891656 3.706102-6.196762 2.610212-6.196762C1.494396-6.196762 .498132-4.861768 .498132-3.048568C.498132-1.195517 1.514321 .109589 2.610212 .109589C3.726027 .109589 4.722291-1.225405 4.722291-3.038605ZM2.610212-.498132C1.833126-.498132 1.185554-1.673724 1.185554-3.148194C1.185554-4.60274 1.872976-5.589041 2.610212-5.589041C3.337484-5.589041 4.034869-4.612702 4.034869-3.148194C4.034869-1.673724 3.387298-.498132 2.610212-.498132Z'/>\n\x3Cpath id='g1-49' d='M3.098381-5.788294C3.098381-5.947696 3.098381-6.196762 2.799502-6.196762C2.610212-6.196762 2.550436-6.07721 2.500623-5.957659C2.122042-5.110834 1.603985-5.001245 1.414695-4.98132C1.255293-4.971357 1.046077-4.951432 1.046077-4.672478C1.046077-4.423412 1.225405-4.373599 1.374844-4.373599C1.564134-4.373599 1.972603-4.433375 2.410959-4.811955V-.607721H1.504359C1.344956-.607721 1.105853-.607721 1.105853-.298879C1.105853 0 1.354919 0 1.504359 0H4.004981C4.154421 0 4.403487 0 4.403487-.298879C4.403487-.607721 4.164384-.607721 4.004981-.607721H3.098381V-5.788294Z'/>\n\x3Cpath id='g1-50' d='M.667497-.577833C.577833-.498132 .518057-.448319 .518057-.308842C.518057 0 .767123 0 .926526 0H4.303861C4.632628 0 4.702366-.089664 4.702366-.408468V-.667497C4.702366-.856787 4.702366-1.075965 4.363636-1.075965C4.014944-1.075965 4.014944-.886675 4.014944-.607721H1.643836C2.231631-1.115816 3.188045-1.863014 3.616438-2.261519C4.244085-2.819427 4.702366-3.457036 4.702366-4.254047C4.702366-5.449564 3.696139-6.196762 2.480697-6.196762C1.305106-6.196762 .518057-5.379826 .518057-4.533001C.518057-4.164384 .797011-4.054795 .966376-4.054795C1.175592-4.054795 1.404732-4.224159 1.404732-4.503113C1.404732-4.622665 1.354919-4.752179 1.265255-4.821918C1.414695-5.280199 1.882939-5.589041 2.430884-5.589041C3.247821-5.589041 4.014944-5.13076 4.014944-4.254047C4.014944-3.556663 3.526775-2.978829 2.86924-2.430884L.667497-.577833Z'/>\n\x3Cpath id='g1-52' d='M.37858-2.430884C.288917-2.30137 .288917-2.281445 .288917-2.082192C.288917-1.753425 .37858-1.683686 .687422-1.683686H3.198007V-.607721H2.580324C2.420922-.607721 2.181818-.607721 2.181818-.298879C2.181818 0 2.430884 0 2.580324 0H4.373599C4.523039 0 4.772105 0 4.772105-.298879C4.772105-.607721 4.533001-.607721 4.373599-.607721H3.755915V-1.683686H4.533001C4.682441-1.683686 4.931507-1.683686 4.931507-1.982565C4.931507-2.291407 4.692403-2.291407 4.533001-2.291407H3.755915V-5.798257C3.755915-6.127024 3.686177-6.206725 3.347447-6.206725H3.068493C2.82939-6.206725 2.779577-6.196762 2.650062-5.997509L.37858-2.430884ZM.986301-2.291407L3.198007-5.768369V-2.291407H.986301Z'/>\n\x3Cpath id='g1-58' d='M3.237858-3.666252C3.237858-4.034869 2.938979-4.293898 2.620174-4.293898C2.241594-4.293898 1.992528-3.985056 1.992528-3.676214C1.992528-3.307597 2.291407-3.048568 2.610212-3.048568C2.988792-3.048568 3.237858-3.35741 3.237858-3.666252ZM3.237858-.617684C3.237858-.986301 2.938979-1.24533 2.620174-1.24533C2.241594-1.24533 1.992528-.936488 1.992528-.627646C1.992528-.259029 2.291407 0 2.610212 0C2.988792 0 3.237858-.308842 3.237858-.617684Z'/>\n\x3Cpath id='g1-59' d='M3.237858-3.666252C3.237858-4.034869 2.938979-4.293898 2.620174-4.293898C2.241594-4.293898 1.992528-3.985056 1.992528-3.676214C1.992528-3.307597 2.291407-3.048568 2.610212-3.048568C2.988792-3.048568 3.237858-3.35741 3.237858-3.666252ZM2.650062 0C2.520548 .537983 2.141968 .727273 1.992528 .806974C1.932752 .836862 1.793275 .9066 1.793275 1.066002C1.793275 1.215442 1.942715 1.384807 2.11208 1.384807C2.331258 1.384807 3.287671 .846824 3.287671-.268991C3.287671-.926526 2.988792-1.24533 2.610212-1.24533C2.251557-1.24533 1.992528-.966376 1.992528-.627646C1.992528-.348692 2.161893 0 2.650062 0Z'/>\n\x3Cpath id='g1-61' d='M4.393524-3.457036C4.513076-3.457036 4.841843-3.457036 4.841843-3.805729S4.473225-4.154421 4.333748-4.154421H.886675C.747198-4.154421 .37858-4.154421 .37858-3.805729S.707347-3.457036 .826899-3.457036H4.393524ZM4.333748-1.942715C4.473225-1.942715 4.841843-1.942715 4.841843-2.291407S4.513076-2.6401 4.393524-2.6401H.826899C.707347-2.6401 .37858-2.6401 .37858-2.291407S.747198-1.942715 .886675-1.942715H4.333748Z'/>\n\x3Cpath id='g1-62' d='M4.443337-2.719801C4.533001-2.779577 4.662516-2.859278 4.662516-3.048568C4.662516-3.178082 4.582814-3.287671 4.483188-3.35741L1.165629-5.439601C1.026152-5.529265 .996264-5.539228 .9066-5.539228C.747198-5.539228 .557908-5.419676 .557908-5.190535C.557908-5.001245 .687422-4.921544 .797011-4.851806L3.656289-3.048568L.797011-1.24533C.687422-1.175592 .557908-1.09589 .557908-.9066C.557908-.67746 .747198-.557908 .9066-.557908C.996264-.557908 1.026152-.56787 1.165629-.657534L4.443337-2.719801Z'/>\n\x3Cpath id='g1-66' d='M1.594022-5.479452H2.839352C3.686177-5.479452 3.905355-4.861768 3.905355-4.533001C3.905355-4.124533 3.58655-3.466999 2.620174-3.466999H1.594022V-5.479452ZM3.516812-3.188045C4.154421-3.407223 4.592777-3.92528 4.592777-4.542964C4.592777-5.270237 3.985056-6.087173 2.879203-6.087173H.627646C.488169-6.087173 .229141-6.087173 .229141-5.788294C.229141-5.479452 .478207-5.479452 .637609-5.479452H.9066V-.607721H.637609C.478207-.607721 .229141-.607721 .229141-.298879C.229141 0 .488169 0 .627646 0H3.078456C4.204234 0 4.801993-.886675 4.801993-1.663761C4.801993-2.351183 4.323786-2.998755 3.516812-3.188045ZM2.859278-.607721H1.594022V-2.859278H2.968867C3.815691-2.859278 4.11457-2.132005 4.11457-1.683686C4.11457-1.195517 3.726027-.607721 2.859278-.607721Z'/>\n\x3Cpath id='g1-77' d='M2.889166-3.676214C2.769614-3.317559 2.67995-3.028643 2.620174-2.739726H2.610212C2.510585-3.20797 1.633873-5.788294 1.613948-5.84807C1.514321-6.087173 1.265255-6.087173 1.125778-6.087173H.56787C.418431-6.087173 .169365-6.087173 .169365-5.788294C.169365-5.479452 .37858-5.479452 .697385-5.479452V-.607721C.37858-.607721 .169365-.607721 .169365-.298879C.169365 0 .418431 0 .56787 0H1.384807C1.534247 0 1.783313 0 1.783313-.298879C1.783313-.607721 1.574097-.607721 1.255293-.607721V-5.3599H1.265255C1.374844-4.901619 2.012453-2.988792 2.052304-2.859278C2.132005-2.630137 2.261519-2.251557 2.311333-2.181818C2.371108-2.102117 2.49066-2.032379 2.610212-2.032379C2.739726-2.032379 2.879203-2.11208 2.958904-2.251557C2.988792-2.311333 3.835616-4.83188 3.955168-5.3599H3.965131V-.607721C3.646326-.607721 3.437111-.607721 3.437111-.298879C3.437111 0 3.686177 0 3.835616 0H4.652553C4.801993 0 5.051059 0 5.051059-.298879C5.051059-.607721 4.841843-.607721 4.523039-.607721V-5.479452C4.841843-5.479452 5.051059-5.479452 5.051059-5.788294C5.051059-6.087173 4.801993-6.087173 4.652553-6.087173H4.094645C3.686177-6.087173 3.646326-5.947696 3.556663-5.688667L2.889166-3.676214Z'/>\n\x3Cpath id='g1-97' d='M3.646326-.318804C3.865504-.009963 4.343711 0 4.722291 0C5.001245 0 5.220423 0 5.220423-.308842C5.220423-.607721 4.971357-.607721 4.821918-.607721C4.403487-.607721 4.303861-.657534 4.224159-.687422V-2.839352C4.224159-3.5467 3.686177-4.383562 2.251557-4.383562C1.823163-4.383562 .806974-4.383562 .806974-3.656289C.806974-3.35741 1.016189-3.198007 1.255293-3.198007C1.404732-3.198007 1.683686-3.287671 1.693649-3.656289C1.693649-3.73599 1.703611-3.745953 1.902864-3.765878C2.042341-3.775841 2.171856-3.775841 2.261519-3.775841C3.01868-3.775841 3.536737-3.466999 3.536737-2.759651C1.77335-2.729763 .547945-2.231631 .547945-1.275218C.547945-.587796 1.175592 .059776 2.191781 .059776C2.560399 .059776 3.178082-.009963 3.646326-.318804ZM3.536737-2.171856V-1.334994C3.536737-1.105853 3.536737-.896638 3.148194-.71731C2.789539-.547945 2.34122-.547945 2.261519-.547945C1.643836-.547945 1.235367-.886675 1.235367-1.275218C1.235367-1.763387 2.092154-2.132005 3.536737-2.171856Z'/>\n\x3Cpath id='g1-99' d='M4.64259-1.085928C4.64259-1.364882 4.353674-1.364882 4.293898-1.364882C4.134496-1.364882 4.034869-1.344956 3.965131-1.145704C3.905355-1.016189 3.716065-.547945 2.978829-.547945C2.132005-.547945 1.414695-1.24533 1.414695-2.15193C1.414695-2.630137 1.693649-3.775841 3.038605-3.775841C3.247821-3.775841 3.636364-3.775841 3.636364-3.686177C3.646326-3.337484 3.835616-3.198007 4.07472-3.198007S4.523039-3.367372 4.523039-3.656289C4.523039-4.383562 3.486924-4.383562 3.038605-4.383562C1.325031-4.383562 .727273-3.028643 .727273-2.15193C.727273-.956413 1.663761 .059776 2.919054 .059776C4.303861 .059776 4.64259-.916563 4.64259-1.085928Z'/>\n\x3Cpath id='g1-100' d='M3.566625-.498132C3.566625-.139477 3.566625 0 3.965131 0H4.692403C4.851806 0 5.100872 0 5.100872-.308842C5.100872-.607721 4.841843-.607721 4.702366-.607721H4.254047V-5.678705C4.254047-5.987547 4.194271-6.087173 3.855542-6.087173H3.128269C2.968867-6.087173 2.719801-6.087173 2.719801-5.778331C2.719801-5.479452 2.978829-5.479452 3.118306-5.479452H3.566625V-3.905355C3.237858-4.194271 2.82939-4.353674 2.400996-4.353674C1.315068-4.353674 .358655-3.407223 .358655-2.141968C.358655-.9066 1.255293 .059776 2.311333 .059776C2.86924 .059776 3.287671-.209215 3.566625-.498132ZM3.566625-2.6401V-1.932752C3.566625-1.374844 3.118306-.547945 2.351183-.547945C1.643836-.547945 1.046077-1.255293 1.046077-2.141968C1.046077-3.098381 1.743462-3.745953 2.440847-3.745953C3.078456-3.745953 3.566625-3.188045 3.566625-2.6401Z'/>\n\x3Cpath id='g1-101' d='M4.224159-1.902864C4.433375-1.902864 4.622665-1.902864 4.622665-2.271482C4.622665-3.407223 3.985056-4.383562 2.689913-4.383562C1.504359-4.383562 .547945-3.387298 .547945-2.161893C.547945-.946451 1.554172 .059776 2.839352 .059776C4.154421 .059776 4.622665-.836862 4.622665-1.085928C4.622665-1.364882 4.333748-1.364882 4.273973-1.364882C4.094645-1.364882 4.014944-1.334994 3.945205-1.145704C3.726027-.637609 3.188045-.547945 2.909091-.547945C2.161893-.547945 1.414695-1.046077 1.255293-1.902864H4.224159ZM1.265255-2.500623C1.404732-3.227895 1.992528-3.775841 2.689913-3.775841C3.20797-3.775841 3.825654-3.526775 3.915318-2.500623H1.265255Z'/>\n\x3Cpath id='g1-102' d='M2.520548-3.686177H3.73599C3.88543-3.686177 4.134496-3.686177 4.134496-3.985056C4.134496-4.293898 3.895392-4.293898 3.73599-4.293898H2.520548V-4.762142C2.520548-5.539228 3.188045-5.539228 3.486924-5.539228C3.486924-5.499377 3.576588-5.110834 3.92528-5.110834C4.124533-5.110834 4.353674-5.270237 4.353674-5.549191C4.353674-6.146949 3.556663-6.146949 3.39726-6.146949C2.600249-6.146949 1.833126-5.688667 1.833126-4.821918V-4.293898H.836862C.67746-4.293898 .428394-4.293898 .428394-3.985056C.428394-3.686177 .67746-3.686177 .826899-3.686177H1.833126V-.607721H.826899C.67746-.607721 .418431-.607721 .418431-.308842C.418431 0 .67746 0 .826899 0H3.526775C3.676214 0 3.935243 0 3.935243-.298879C3.935243-.607721 3.676214-.607721 3.526775-.607721H2.520548V-3.686177Z'/>\n\x3Cpath id='g1-103' d='M2.321295-1.753425C1.783313-1.753425 1.364882-2.221669 1.364882-2.749689C1.364882-3.317559 1.803238-3.755915 2.321295-3.755915C2.859278-3.755915 3.277709-3.287671 3.277709-2.759651C3.277709-2.191781 2.839352-1.753425 2.321295-1.753425ZM1.424658-1.404732C1.454545-1.384807 1.833126-1.155666 2.321295-1.155666C3.237858-1.155666 3.965131-1.872976 3.965131-2.759651C3.965131-3.058531 3.875467-3.347447 3.706102-3.626401C3.915318-3.745953 4.154421-3.785803 4.283935-3.795766C4.343711-3.526775 4.572852-3.457036 4.672478-3.457036C4.841843-3.457036 5.070984-3.576588 5.070984-3.865504C5.070984-4.094645 4.881694-4.403487 4.343711-4.403487C4.234122-4.403487 3.745953-4.393524 3.287671-4.054795C3.128269-4.164384 2.779577-4.353674 2.321295-4.353674C1.384807-4.353674 .67746-3.606476 .67746-2.759651C.67746-2.331258 .846824-2.002491 .996264-1.8132C.886675-1.653798 .797011-1.43462 .797011-1.135741C.797011-.787049 .936488-.537983 1.026152-.418431C.288917 .029888 .288917 .707347 .288917 .816936C.288917 1.673724 1.334994 2.281445 2.610212 2.281445S4.931507 1.663761 4.931507 .816936C4.931507 .448319 4.752179-.049813 4.244085-.318804C4.11457-.388543 3.696139-.607721 2.799502-.607721H2.102117C2.022416-.607721 1.892902-.607721 1.8132-.627646C1.663761-.627646 1.603985-.627646 1.484433-.767123C1.374844-.9066 1.364882-1.105853 1.364882-1.125778C1.364882-1.165629 1.384807-1.305106 1.424658-1.404732ZM2.610212 1.683686C1.613948 1.683686 .86675 1.255293 .86675 .816936C.86675 .637609 .956413 .318804 1.275218 .119552C1.524284-.039851 1.613948-.039851 2.34122-.039851C3.227895-.039851 4.353674-.039851 4.353674 .816936C4.353674 1.255293 3.606476 1.683686 2.610212 1.683686Z'/>\n\x3Cpath id='g1-104' d='M4.254047-2.919054C4.254047-3.92528 3.745953-4.353674 2.958904-4.353674C2.291407-4.353674 1.843088-4.014944 1.653798-3.825654V-5.678705C1.653798-5.987547 1.594022-6.087173 1.255293-6.087173H.52802C.368618-6.087173 .119552-6.087173 .119552-5.778331C.119552-5.479452 .37858-5.479452 .518057-5.479452H.966376V-.607721H.52802C.368618-.607721 .119552-.607721 .119552-.298879C.119552 0 .37858 0 .518057 0H2.102117C2.241594 0 2.500623 0 2.500623-.298879C2.500623-.607721 2.251557-.607721 2.092154-.607721H1.653798V-2.371108C1.653798-3.367372 2.391034-3.745953 2.899128-3.745953C3.427148-3.745953 3.566625-3.466999 3.566625-2.86924V-.607721H3.178082C3.01868-.607721 2.769614-.607721 2.769614-.298879C2.769614 0 3.038605 0 3.178082 0H4.702366C4.841843 0 5.100872 0 5.100872-.298879C5.100872-.607721 4.851806-.607721 4.692403-.607721H4.254047V-2.919054Z'/>\n\x3Cpath id='g1-105' d='M3.078456-3.88543C3.078456-4.194271 3.01868-4.293898 2.67995-4.293898H1.265255C1.115816-4.293898 .856787-4.293898 .856787-3.995019C.856787-3.686177 1.115816-3.686177 1.265255-3.686177H2.391034V-.607721H1.185554C1.026152-.607721 .777086-.607721 .777086-.298879C.777086 0 1.036115 0 1.185554 0H4.124533C4.273973 0 4.533001 0 4.533001-.298879C4.533001-.607721 4.273973-.607721 4.124533-.607721H3.078456V-3.88543ZM3.078456-5.599004C3.078456-5.877958 2.859278-6.097136 2.580324-6.097136S2.082192-5.877958 2.082192-5.599004S2.30137-5.100872 2.580324-5.100872S3.078456-5.32005 3.078456-5.599004Z'/>\n\x3Cpath id='g1-106' d='M3.666252-3.88543C3.666252-4.194271 3.606476-4.293898 3.267746-4.293898H1.693649C1.534247-4.293898 1.285181-4.293898 1.285181-3.985056C1.285181-3.686177 1.534247-3.686177 1.683686-3.686177H2.978829V.388543C2.978829 .557908 2.978829 .936488 2.719801 1.285181C2.450809 1.663761 2.141968 1.663761 1.912827 1.663761C1.62391 1.663761 1.504359 1.643836 1.354919 1.62391C1.364882 1.594022 1.364882 1.574097 1.364882 1.504359C1.364882 1.225405 1.135741 1.05604 .926526 1.05604C.697385 1.05604 .478207 1.225405 .478207 1.514321C.478207 2.271482 1.454545 2.271482 1.863014 2.271482C3.307597 2.271482 3.666252 1.075965 3.666252 .438356V-3.88543ZM3.666252-5.599004C3.666252-5.877958 3.447073-6.097136 3.16812-6.097136S2.669988-5.877958 2.669988-5.599004S2.889166-5.100872 3.16812-5.100872S3.666252-5.32005 3.666252-5.599004Z'/>\n\x3Cpath id='g1-108' d='M2.958904-5.678705C2.958904-5.987547 2.899128-6.087173 2.560399-6.087173H.986301C.826899-6.087173 .577833-6.087173 .577833-5.778331C.577833-5.479452 .836862-5.479452 .976339-5.479452H2.271482V-.607721H.986301C.826899-.607721 .577833-.607721 .577833-.298879C.577833 0 .836862 0 .976339 0H4.254047C4.403487 0 4.652553 0 4.652553-.298879C4.652553-.607721 4.41345-.607721 4.254047-.607721H2.958904V-5.678705Z'/>\n\x3Cpath id='g1-109' d='M1.085928-3.995019C1.066002-4.293898 .86675-4.293898 .687422-4.293898H.368618C.219178-4.293898-.039851-4.293898-.039851-3.995019C-.039851-3.686177 .169365-3.686177 .52802-3.686177V-.607721C.169365-.607721-.039851-.607721-.039851-.298879C-.039851 0 .229141 0 .368618 0H1.24533C1.39477 0 1.653798 0 1.653798-.298879C1.653798-.607721 1.444583-.607721 1.085928-.607721V-2.391034C1.085928-3.277709 1.494396-3.745953 1.902864-3.745953C2.132005-3.745953 2.271482-3.576588 2.271482-2.929016V-.607721C2.082192-.607721 1.833126-.607721 1.833126-.298879C1.833126 0 2.102117 0 2.241594 0H2.988792C3.138232 0 3.39726 0 3.39726-.298879C3.39726-.607721 3.188045-.607721 2.82939-.607721V-2.391034C2.82939-3.277709 3.237858-3.745953 3.646326-3.745953C3.875467-3.745953 4.014944-3.576588 4.014944-2.929016V-.607721C3.825654-.607721 3.576588-.607721 3.576588-.298879C3.576588 0 3.845579 0 3.985056 0H4.732254C4.881694 0 5.140722 0 5.140722-.298879C5.140722-.607721 4.931507-.607721 4.572852-.607721V-3.01868C4.572852-3.217933 4.572852-4.353674 3.686177-4.353674C3.387298-4.353674 2.978829-4.224159 2.699875-3.835616C2.550436-4.174346 2.271482-4.353674 1.942715-4.353674C1.62391-4.353674 1.325031-4.214197 1.085928-3.995019Z'/>\n\x3Cpath id='g1-110' d='M1.653798-3.825654C1.653798-4.144458 1.653798-4.293898 1.255293-4.293898H.52802C.368618-4.293898 .119552-4.293898 .119552-3.985056C.119552-3.686177 .37858-3.686177 .518057-3.686177H.966376V-.607721H.52802C.368618-.607721 .119552-.607721 .119552-.298879C.119552 0 .37858 0 .518057 0H2.102117C2.241594 0 2.500623 0 2.500623-.298879C2.500623-.607721 2.251557-.607721 2.092154-.607721H1.653798V-2.371108C1.653798-3.367372 2.391034-3.745953 2.899128-3.745953C3.427148-3.745953 3.566625-3.466999 3.566625-2.86924V-.607721H3.178082C3.01868-.607721 2.769614-.607721 2.769614-.298879C2.769614 0 3.038605 0 3.178082 0H4.702366C4.841843 0 5.100872 0 5.100872-.298879C5.100872-.607721 4.851806-.607721 4.692403-.607721H4.254047V-2.919054C4.254047-3.92528 3.745953-4.353674 2.958904-4.353674C2.291407-4.353674 1.843088-4.014944 1.653798-3.825654Z'/>\n\x3Cpath id='g1-111' d='M4.652553-2.15193C4.652553-3.39726 3.726027-4.383562 2.610212-4.383562S.56787-3.39726 .56787-2.15193C.56787-.886675 1.514321 .059776 2.610212 .059776S4.652553-.896638 4.652553-2.15193ZM2.610212-.547945C1.872976-.547945 1.255293-1.295143 1.255293-2.221669C1.255293-3.128269 1.902864-3.775841 2.610212-3.775841C3.327522-3.775841 3.965131-3.128269 3.965131-2.221669C3.965131-1.295143 3.347447-.547945 2.610212-.547945Z'/>\n\x3Cpath id='g1-112' d='M1.653798-2.630137C1.653798-3.217933 2.231631-3.745953 2.859278-3.745953C3.596513-3.745953 4.174346-3.01868 4.174346-2.15193C4.174346-1.195517 3.476961-.547945 2.779577-.547945C2.002491-.547945 1.653798-1.424658 1.653798-1.902864V-2.630137ZM1.653798-.448319C2.062267-.029888 2.49066 .059776 2.809465 .059776C3.895392 .059776 4.861768-.886675 4.861768-2.15193C4.861768-3.377335 3.975093-4.353674 2.919054-4.353674C2.440847-4.353674 1.992528-4.174346 1.653798-3.865504C1.653798-4.154421 1.633873-4.293898 1.255293-4.293898H.52802C.368618-4.293898 .119552-4.293898 .119552-3.985056C.119552-3.686177 .37858-3.686177 .518057-3.686177H.966376V1.603985H.52802C.368618 1.603985 .119552 1.603985 .119552 1.912827C.119552 2.211706 .37858 2.211706 .518057 2.211706H2.102117C2.241594 2.211706 2.500623 2.211706 2.500623 1.912827C2.500623 1.603985 2.251557 1.603985 2.092154 1.603985H1.653798V-.448319Z'/>\n\x3Cpath id='g1-114' d='M2.211706-1.853051C2.211706-2.789539 2.799502-3.745953 4.004981-3.745953C4.014944-3.506849 4.184309-3.307597 4.433375-3.307597C4.652553-3.307597 4.851806-3.466999 4.851806-3.73599C4.851806-3.935243 4.732254-4.353674 3.905355-4.353674C3.39726-4.353674 2.759651-4.174346 2.211706-3.5467V-3.88543C2.211706-4.194271 2.15193-4.293898 1.8132-4.293898H.71731C.56787-4.293898 .318804-4.293898 .318804-3.995019C.318804-3.686177 .557908-3.686177 .71731-3.686177H1.524284V-.607721H.71731C.56787-.607721 .318804-.607721 .318804-.308842C.318804 0 .557908 0 .71731 0H3.317559C3.466999 0 3.726027 0 3.726027-.298879C3.726027-.607721 3.466999-.607721 3.317559-.607721H2.211706V-1.853051Z'/>\n\x3Cpath id='g1-115' d='M2.968867-2.540473C2.739726-2.580324 2.540473-2.610212 2.291407-2.660025C2.002491-2.699875 1.325031-2.819427 1.325031-3.20797C1.325031-3.466999 1.643836-3.775841 2.590286-3.775841C3.417186-3.775841 3.556663-3.476961 3.58655-3.217933C3.596513-3.048568 3.616438-2.879203 3.92528-2.879203C4.273973-2.879203 4.273973-3.088418 4.273973-3.287671V-3.975093C4.273973-4.134496 4.273973-4.383562 3.975093-4.383562C3.73599-4.383562 3.696139-4.244085 3.676214-4.174346C3.237858-4.383562 2.799502-4.383562 2.610212-4.383562C.946451-4.383562 .71731-3.566625 .71731-3.20797C.71731-2.291407 1.763387-2.122042 2.67995-1.982565C3.16812-1.902864 3.965131-1.77335 3.965131-1.24533C3.965131-.876712 3.596513-.547945 2.689913-.547945C2.221669-.547945 1.663761-.657534 1.414695-1.43462C1.364882-1.613948 1.325031-1.723537 1.066002-1.723537C.71731-1.723537 .71731-1.514321 .71731-1.315068V-.348692C.71731-.18929 .71731 .059776 1.016189 .059776C1.105853 .059776 1.265255 .049813 1.384807-.318804C1.872976 .039851 2.400996 .059776 2.67995 .059776C4.254047 .059776 4.572852-.767123 4.572852-1.24533C4.572852-2.281445 3.287671-2.49066 2.968867-2.540473Z'/>\n\x3Cpath id='g1-116' d='M2.211706-3.686177H3.845579C3.995019-3.686177 4.244085-3.686177 4.244085-3.985056C4.244085-4.293898 4.004981-4.293898 3.845579-4.293898H2.211706V-5.110834C2.211706-5.300125 2.211706-5.519303 1.872976-5.519303C1.524284-5.519303 1.524284-5.310087 1.524284-5.110834V-4.293898H.657534C.498132-4.293898 .249066-4.293898 .249066-3.985056C.249066-3.686177 .498132-3.686177 .647572-3.686177H1.524284V-1.255293C1.524284-.298879 2.201743 .059776 2.929016 .059776C3.666252 .059776 4.473225-.368618 4.473225-1.255293C4.473225-1.43462 4.473225-1.643836 4.124533-1.643836C3.795766-1.643836 3.785803-1.43462 3.785803-1.265255C3.775841-.647572 3.20797-.547945 2.978829-.547945C2.211706-.547945 2.211706-1.066002 2.211706-1.315068V-3.686177Z'/>\n\x3Cpath id='g1-117' d='M3.566625-.318804C3.576588 0 3.785803 0 3.965131 0H4.692403C4.851806 0 5.100872 0 5.100872-.308842C5.100872-.607721 4.841843-.607721 4.702366-.607721H4.254047V-3.88543C4.254047-4.194271 4.194271-4.293898 3.855542-4.293898H3.128269C2.968867-4.293898 2.719801-4.293898 2.719801-3.985056C2.719801-3.686177 2.978829-3.686177 3.118306-3.686177H3.566625V-1.564134C3.566625-.667497 2.759651-.547945 2.440847-.547945C1.653798-.547945 1.653798-.876712 1.653798-1.195517V-3.88543C1.653798-4.194271 1.594022-4.293898 1.255293-4.293898H.52802C.368618-4.293898 .119552-4.293898 .119552-3.985056C.119552-3.686177 .37858-3.686177 .518057-3.686177H.966376V-1.135741C.966376-.179328 1.653798 .059776 2.381071 .059776C2.789539 .059776 3.198007-.039851 3.566625-.318804Z'/>\n\x3Cpath id='g1-118' d='M4.283935-3.686177H4.582814C4.732254-3.686177 4.98132-3.686177 4.98132-3.985056C4.98132-4.293898 4.742217-4.293898 4.582814-4.293898H3.417186C3.267746-4.293898 3.01868-4.293898 3.01868-3.995019C3.01868-3.686177 3.257783-3.686177 3.417186-3.686177H3.696139L2.610212-.478207L1.524284-3.686177H1.803238C1.952677-3.686177 2.201743-3.686177 2.201743-3.985056C2.201743-4.293898 1.96264-4.293898 1.803238-4.293898H.637609C.478207-4.293898 .239103-4.293898 .239103-3.985056C.239103-3.686177 .488169-3.686177 .637609-3.686177H.936488L2.082192-.298879C2.201743 .039851 2.400996 .039851 2.610212 .039851C2.799502 .039851 3.028643 .039851 3.138232-.288917L4.283935-3.686177Z'/>\n\x3Cpath id='g1-119' d='M4.552927-3.686177C4.851806-3.686177 5.061021-3.686177 5.061021-3.995019C5.061021-4.293898 4.821918-4.293898 4.64259-4.293898H3.496887C3.317559-4.293898 3.078456-4.293898 3.078456-3.995019C3.078456-3.686177 3.307597-3.686177 3.496887-3.686177H3.985056L3.486924-.71731H3.476961C3.437111-.976339 3.307597-1.43462 3.188045-1.843088C3.008717-2.470735 2.978829-2.580324 2.630137-2.580324C2.530511-2.580324 2.34122-2.580324 2.231631-2.361146C2.201743-2.291407 1.803238-.916563 1.763387-.71731H1.753425L1.235367-3.686177H1.723537C1.902864-3.686177 2.141968-3.686177 2.141968-3.985056C2.141968-4.293898 1.912827-4.293898 1.723537-4.293898H.577833C.398506-4.293898 .159402-4.293898 .159402-3.995019C.159402-3.686177 .368618-3.686177 .667497-3.686177L1.265255-.33873C1.305106-.109589 1.334994 .039851 1.733499 .039851S2.161893-.049813 2.34122-.657534C2.590286-1.534247 2.600249-1.673724 2.630137-1.892902H2.6401C2.689913-1.374844 3.058531-.209215 3.098381-.129514C3.217933 .039851 3.39726 .039851 3.516812 .039851C3.88543 .039851 3.915318-.119552 3.955168-.33873L4.552927-3.686177Z'/>\n\x3Cpath id='g1-121' d='M4.283935-3.686177H4.582814C4.732254-3.686177 4.98132-3.686177 4.98132-3.985056C4.98132-4.293898 4.742217-4.293898 4.582814-4.293898H3.417186C3.267746-4.293898 3.01868-4.293898 3.01868-3.995019C3.01868-3.686177 3.257783-3.686177 3.417186-3.686177H3.696139L2.978829-1.564134C2.849315-1.195517 2.789539-1.016189 2.719801-.707347H2.709838C2.660025-.896638 2.570361-1.105853 2.500623-1.295143L1.574097-3.686177H1.823163C1.972603-3.686177 2.221669-3.686177 2.221669-3.985056C2.221669-4.293898 1.982565-4.293898 1.823163-4.293898H.657534C.498132-4.293898 .259029-4.293898 .259029-3.985056C.259029-3.686177 .508095-3.686177 .657534-3.686177H.966376L2.381071-.129514C2.420922-.029888 2.420922-.009963 2.420922 0C2.420922 .019925 2.171856 .836862 2.042341 1.085928C1.753425 1.633873 1.39477 1.653798 1.24533 1.663761C1.24533 1.653798 1.295143 1.574097 1.295143 1.444583C1.295143 1.195517 1.115816 1.016189 .86675 1.016189C.597758 1.016189 .428394 1.195517 .428394 1.454545C.428394 1.872976 .767123 2.271482 1.255293 2.271482C2.251557 2.271482 2.699875 .956413 2.739726 .846824L4.283935-3.686177Z'/>\n\x3Cpath id='g1-122' d='M4.473225-3.556663C4.682441-3.755915 4.692403-3.785803 4.692403-3.955168C4.692403-4.293898 4.473225-4.293898 4.283935-4.293898H.896638C.56787-4.293898 .488169-4.214197 .488169-3.88543V-3.427148C.488169-3.237858 .488169-3.01868 .826899-3.01868C1.175592-3.01868 1.175592-3.227895 1.175592-3.427148V-3.686177H3.656289L.547945-.737235C.33873-.537983 .328767-.508095 .328767-.33873C.328767 0 .547945 0 .737235 0H4.513076C4.732254-.059776 4.732254-.259029 4.732254-.408468V-.986301C4.732254-1.175592 4.732254-1.39477 4.393524-1.39477C4.044832-1.39477 4.044832-1.185554 4.044832-.986301V-.607721H1.364882L4.473225-3.556663Z'/>\n\x3Cpath id='g1-126' d='M4.353674-5.768369C4.353674-5.927771 4.204234-6.087173 4.044832-6.087173C3.935243-6.087173 3.875467-6.03736 3.805729-5.977584C3.506849-5.69863 3.247821-5.539228 3.108344-5.539228C3.008717-5.539228 2.929016-5.628892 2.799502-5.748443C2.669988-5.877958 2.470735-6.087173 2.132005-6.087173C1.863014-6.087173 1.58406-5.927771 1.354919-5.758406C1.155666-5.608966 .86675-5.389788 .86675-5.210461C.86675-5.051059 1.016189-4.891656 1.175592-4.891656C1.285181-4.891656 1.344956-4.941469 1.414695-5.001245C1.713574-5.280199 1.972603-5.439601 2.11208-5.439601C2.211706-5.439601 2.291407-5.349938 2.420922-5.230386C2.550436-5.100872 2.749689-4.891656 3.088418-4.891656C3.35741-4.891656 3.636364-5.051059 3.865504-5.220423C4.064757-5.369863 4.353674-5.589041 4.353674-5.768369Z'/>\n\x3Cpath id='g3-12' d='M3.287671-3.985056C3.745953-3.985056 3.815691-3.855542 3.815691-3.447073V-.757161C3.815691-.308842 3.706102-.308842 3.038605-.308842V0C3.367372-.009963 3.895392-.029888 4.144458-.029888S4.881694-.009963 5.250311 0V-.308842C4.582814-.308842 4.473225-.308842 4.473225-.757161V-4.41345L3.217933-4.323786C3.058531-4.313823 3.048568-4.303861 3.038605-4.303861C3.01868-4.293898 2.998755-4.293898 2.859278-4.293898H1.683686V-5.419676C1.683686-6.405978 2.540473-6.804483 3.158157-6.804483C3.457036-6.804483 3.815691-6.704857 4.014944-6.475716C3.606476-6.455791 3.5467-6.176837 3.5467-6.017435C3.5467-5.688667 3.805729-5.559153 3.995019-5.559153C4.224159-5.559153 4.4533-5.718555 4.4533-6.017435C4.4533-6.60523 3.905355-7.023661 3.16812-7.023661C2.241594-7.023661 1.05604-6.515567 1.05604-5.429639V-4.293898H.268991V-3.985056H1.05604V-.757161C1.05604-.308842 .946451-.308842 .278954-.308842V0C.607721-.009963 1.135741-.029888 1.384807-.029888S2.122042-.009963 2.49066 0V-.308842C1.823163-.308842 1.713574-.308842 1.713574-.757161V-3.985056H3.287671Z'/>\n\x3Cpath id='g3-44' d='M2.022416-.009963C2.022416-.647572 1.783313-1.05604 1.384807-1.05604C1.036115-1.05604 .856787-.787049 .856787-.52802S1.026152 0 1.384807 0C1.544209 0 1.663761-.059776 1.763387-.139477L1.783313-.159402C1.793275-.159402 1.803238-.14944 1.803238-.009963C1.803238 .627646 1.524284 1.235367 1.085928 1.703611C1.026152 1.763387 1.016189 1.77335 1.016189 1.8132C1.016189 1.882939 1.066002 1.92279 1.115816 1.92279C1.235367 1.92279 2.022416 1.135741 2.022416-.009963Z'/>\n\x3Cpath id='g3-46' d='M1.912827-.52802C1.912827-.816936 1.673724-1.05604 1.384807-1.05604S.856787-.816936 .856787-.52802S1.09589 0 1.384807 0S1.912827-.239103 1.912827-.52802Z'/>\n\x3Cpath id='g3-58' d='M1.912827-3.765878C1.912827-4.054795 1.673724-4.293898 1.384807-4.293898S.856787-4.054795 .856787-3.765878S1.09589-3.237858 1.384807-3.237858S1.912827-3.476961 1.912827-3.765878ZM1.912827-.52802C1.912827-.816936 1.673724-1.05604 1.384807-1.05604S.856787-.816936 .856787-.52802S1.09589 0 1.384807 0S1.912827-.239103 1.912827-.52802Z'/>\n\x3Cpath id='g3-65' d='M3.965131-6.933998C3.915318-7.063512 3.895392-7.13325 3.73599-7.13325S3.5467-7.073474 3.496887-6.933998L1.43462-.976339C1.255293-.468244 .856787-.318804 .318804-.308842V0C.547945-.009963 .976339-.029888 1.334994-.029888C1.643836-.029888 2.161893-.009963 2.480697 0V-.308842C1.982565-.308842 1.733499-.557908 1.733499-.816936C1.733499-.846824 1.743462-.946451 1.753425-.966376L2.211706-2.271482H4.672478L5.200498-.747198C5.210461-.707347 5.230386-.647572 5.230386-.607721C5.230386-.308842 4.672478-.308842 4.403487-.308842V0C4.762142-.029888 5.459527-.029888 5.838107-.029888C6.266501-.029888 6.724782-.019925 7.143213 0V-.308842H6.963885C6.366127-.308842 6.22665-.37858 6.117061-.707347L3.965131-6.933998ZM3.437111-5.818182L4.562889-2.580324H2.321295L3.437111-5.818182Z'/>\n\x3Cpath id='g3-67' d='M.557908-3.407223C.557908-1.344956 2.171856 .219178 4.024907 .219178C5.648817 .219178 6.625156-1.165629 6.625156-2.321295C6.625156-2.420922 6.625156-2.49066 6.495641-2.49066C6.386052-2.49066 6.386052-2.430884 6.37609-2.331258C6.296389-.9066 5.230386-.089664 4.144458-.089664C3.536737-.089664 1.58406-.428394 1.58406-3.39726C1.58406-6.37609 3.526775-6.714819 4.134496-6.714819C5.220423-6.714819 6.107098-5.808219 6.306351-4.353674C6.326276-4.214197 6.326276-4.184309 6.465753-4.184309C6.625156-4.184309 6.625156-4.214197 6.625156-4.423412V-6.784558C6.625156-6.953923 6.625156-7.023661 6.515567-7.023661C6.475716-7.023661 6.435866-7.023661 6.356164-6.90411L5.858032-6.166874C5.489415-6.525529 4.98132-7.023661 4.024907-7.023661C2.161893-7.023661 .557908-5.439601 .557908-3.407223Z'/>\n\x3Cpath id='g3-68' d='M.348692-6.804483V-6.495641H.587796C1.354919-6.495641 1.374844-6.386052 1.374844-6.027397V-.777086C1.374844-.418431 1.354919-.308842 .587796-.308842H.348692V0H3.995019C5.668742 0 7.043587-1.474471 7.043587-3.347447C7.043587-5.240349 5.69863-6.804483 3.995019-6.804483H.348692ZM2.719801-.308842C2.251557-.308842 2.231631-.37858 2.231631-.707347V-6.097136C2.231631-6.425903 2.251557-6.495641 2.719801-6.495641H3.716065C4.333748-6.495641 5.021171-6.276463 5.529265-5.569116C5.957659-4.98132 6.047323-4.124533 6.047323-3.347447C6.047323-2.241594 5.858032-1.643836 5.499377-1.155666C5.300125-.886675 4.732254-.308842 3.726027-.308842H2.719801Z'/>\n\x3Cpath id='g3-70' d='M5.798257-6.774595H.328767V-6.465753H.56787C1.334994-6.465753 1.354919-6.356164 1.354919-5.997509V-.777086C1.354919-.418431 1.334994-.308842 .56787-.308842H.328767V0C.67746-.029888 1.454545-.029888 1.843088-.029888C2.251557-.029888 3.158157-.029888 3.516812 0V-.308842H3.188045C2.241594-.308842 2.241594-.438356 2.241594-.787049V-3.237858H3.098381C4.054795-3.237858 4.154421-2.919054 4.154421-2.072229H4.403487V-4.712329H4.154421C4.154421-3.875467 4.054795-3.5467 3.098381-3.5467H2.241594V-6.067248C2.241594-6.396015 2.261519-6.465753 2.729763-6.465753H3.92528C5.419676-6.465753 5.668742-5.907846 5.828144-4.533001H6.07721L5.798257-6.774595Z'/>\n\x3Cpath id='g3-84' d='M6.635118-6.744707H.547945L.358655-4.503113H.607721C.747198-6.107098 .896638-6.435866 2.400996-6.435866C2.580324-6.435866 2.839352-6.435866 2.938979-6.41594C3.148194-6.37609 3.148194-6.266501 3.148194-6.03736V-.787049C3.148194-.448319 3.148194-.308842 2.102117-.308842H1.703611V0C2.11208-.029888 3.128269-.029888 3.58655-.029888S5.070984-.029888 5.479452 0V-.308842H5.080946C4.034869-.308842 4.034869-.448319 4.034869-.787049V-6.03736C4.034869-6.236613 4.034869-6.37609 4.214197-6.41594C4.323786-6.435866 4.592777-6.435866 4.782067-6.435866C6.286426-6.435866 6.435866-6.107098 6.575342-4.503113H6.824408L6.635118-6.744707Z'/>\n\x3Cpath id='g3-97' d='M3.317559-.757161C3.35741-.358655 3.626401 .059776 4.094645 .059776C4.303861 .059776 4.911582-.079701 4.911582-.886675V-1.444583H4.662516V-.886675C4.662516-.308842 4.41345-.249066 4.303861-.249066C3.975093-.249066 3.935243-.697385 3.935243-.747198V-2.739726C3.935243-3.158157 3.935243-3.5467 3.576588-3.915318C3.188045-4.303861 2.689913-4.463263 2.211706-4.463263C1.39477-4.463263 .707347-3.995019 .707347-3.337484C.707347-3.038605 .9066-2.86924 1.165629-2.86924C1.444583-2.86924 1.62391-3.068493 1.62391-3.327522C1.62391-3.447073 1.574097-3.775841 1.115816-3.785803C1.384807-4.134496 1.872976-4.244085 2.191781-4.244085C2.67995-4.244085 3.247821-3.855542 3.247821-2.968867V-2.600249C2.739726-2.570361 2.042341-2.540473 1.414695-2.241594C.667497-1.902864 .418431-1.384807 .418431-.946451C.418431-.139477 1.384807 .109589 2.012453 .109589C2.669988 .109589 3.128269-.288917 3.317559-.757161ZM3.247821-2.391034V-1.39477C3.247821-.448319 2.530511-.109589 2.082192-.109589C1.594022-.109589 1.185554-.458281 1.185554-.956413C1.185554-1.504359 1.603985-2.331258 3.247821-2.391034Z'/>\n\x3Cpath id='g3-99' d='M1.165629-2.171856C1.165629-3.795766 1.982565-4.214197 2.510585-4.214197C2.600249-4.214197 3.227895-4.204234 3.576588-3.845579C3.16812-3.815691 3.108344-3.516812 3.108344-3.387298C3.108344-3.128269 3.287671-2.929016 3.566625-2.929016C3.825654-2.929016 4.024907-3.098381 4.024907-3.39726C4.024907-4.07472 3.267746-4.463263 2.500623-4.463263C1.255293-4.463263 .33873-3.387298 .33873-2.15193C.33873-.876712 1.325031 .109589 2.480697 .109589C3.815691 .109589 4.134496-1.085928 4.134496-1.185554S4.034869-1.285181 4.004981-1.285181C3.915318-1.285181 3.895392-1.24533 3.875467-1.185554C3.58655-.259029 2.938979-.139477 2.570361-.139477C2.042341-.139477 1.165629-.56787 1.165629-2.171856Z'/>\n\x3Cpath id='g3-100' d='M3.785803-.547945V.109589L5.250311 0V-.308842C4.552927-.308842 4.473225-.37858 4.473225-.86675V-6.914072L3.038605-6.804483V-6.495641C3.73599-6.495641 3.815691-6.425903 3.815691-5.937733V-3.785803C3.526775-4.144458 3.098381-4.403487 2.560399-4.403487C1.384807-4.403487 .33873-3.427148 .33873-2.141968C.33873-.876712 1.315068 .109589 2.450809 .109589C3.088418 .109589 3.536737-.229141 3.785803-.547945ZM3.785803-3.217933V-1.175592C3.785803-.996264 3.785803-.976339 3.676214-.806974C3.377335-.328767 2.929016-.109589 2.500623-.109589C2.052304-.109589 1.693649-.368618 1.454545-.747198C1.195517-1.155666 1.165629-1.723537 1.165629-2.132005C1.165629-2.500623 1.185554-3.098381 1.474471-3.5467C1.683686-3.855542 2.062267-4.184309 2.600249-4.184309C2.948941-4.184309 3.367372-4.034869 3.676214-3.58655C3.785803-3.417186 3.785803-3.39726 3.785803-3.217933Z'/>\n\x3Cpath id='g3-101' d='M1.115816-2.510585C1.175592-3.995019 2.012453-4.244085 2.351183-4.244085C3.377335-4.244085 3.476961-2.899128 3.476961-2.510585H1.115816ZM1.105853-2.30137H3.88543C4.104608-2.30137 4.134496-2.30137 4.134496-2.510585C4.134496-3.496887 3.596513-4.463263 2.351183-4.463263C1.195517-4.463263 .278954-3.437111 .278954-2.191781C.278954-.856787 1.325031 .109589 2.470735 .109589C3.686177 .109589 4.134496-.996264 4.134496-1.185554C4.134496-1.285181 4.054795-1.305106 4.004981-1.305106C3.915318-1.305106 3.895392-1.24533 3.875467-1.165629C3.526775-.139477 2.630137-.139477 2.530511-.139477C2.032379-.139477 1.633873-.438356 1.404732-.806974C1.105853-1.285181 1.105853-1.942715 1.105853-2.30137Z'/>\n\x3Cpath id='g3-102' d='M1.743462-4.293898V-5.449564C1.743462-6.326276 2.221669-6.804483 2.660025-6.804483C2.689913-6.804483 2.839352-6.804483 2.988792-6.734745C2.86924-6.694894 2.689913-6.56538 2.689913-6.316314C2.689913-6.087173 2.849315-5.88792 3.118306-5.88792C3.407223-5.88792 3.556663-6.087173 3.556663-6.326276C3.556663-6.694894 3.188045-7.023661 2.660025-7.023661C1.96264-7.023661 1.115816-6.495641 1.115816-5.439601V-4.293898H.328767V-3.985056H1.115816V-.757161C1.115816-.308842 1.006227-.308842 .33873-.308842V0C.727273-.009963 1.195517-.029888 1.474471-.029888C1.872976-.029888 2.34122-.029888 2.739726 0V-.308842H2.530511C1.793275-.308842 1.77335-.418431 1.77335-.777086V-3.985056H2.909091V-4.293898H1.743462Z'/>\n\x3Cpath id='g3-103' d='M2.211706-1.713574C1.344956-1.713574 1.344956-2.709838 1.344956-2.938979C1.344956-3.20797 1.354919-3.526775 1.504359-3.775841C1.58406-3.895392 1.8132-4.174346 2.211706-4.174346C3.078456-4.174346 3.078456-3.178082 3.078456-2.948941C3.078456-2.67995 3.068493-2.361146 2.919054-2.11208C2.839352-1.992528 2.610212-1.713574 2.211706-1.713574ZM1.05604-1.325031C1.05604-1.364882 1.05604-1.594022 1.225405-1.793275C1.613948-1.514321 2.022416-1.484433 2.211706-1.484433C3.138232-1.484433 3.825654-2.171856 3.825654-2.938979C3.825654-3.307597 3.666252-3.676214 3.417186-3.905355C3.775841-4.244085 4.134496-4.293898 4.313823-4.293898C4.333748-4.293898 4.383562-4.293898 4.41345-4.283935C4.303861-4.244085 4.254047-4.134496 4.254047-4.014944C4.254047-3.845579 4.383562-3.726027 4.542964-3.726027C4.64259-3.726027 4.83188-3.795766 4.83188-4.024907C4.83188-4.194271 4.712329-4.513076 4.323786-4.513076C4.124533-4.513076 3.686177-4.4533 3.267746-4.044832C2.849315-4.373599 2.430884-4.403487 2.211706-4.403487C1.285181-4.403487 .597758-3.716065 .597758-2.948941C.597758-2.510585 .816936-2.132005 1.066002-1.92279C.936488-1.77335 .757161-1.444583 .757161-1.09589C.757161-.787049 .886675-.408468 1.195517-.209215C.597758-.039851 .278954 .388543 .278954 .787049C.278954 1.504359 1.265255 2.052304 2.480697 2.052304C3.656289 2.052304 4.692403 1.544209 4.692403 .767123C4.692403 .418431 4.552927-.089664 4.044832-.368618C3.516812-.647572 2.938979-.647572 2.331258-.647572C2.082192-.647572 1.653798-.647572 1.58406-.657534C1.265255-.697385 1.05604-1.006227 1.05604-1.325031ZM2.49066 1.823163C1.484433 1.823163 .797011 1.315068 .797011 .787049C.797011 .328767 1.175592-.039851 1.613948-.069738H2.201743C3.058531-.069738 4.174346-.069738 4.174346 .787049C4.174346 1.325031 3.466999 1.823163 2.49066 1.823163Z'/>\n\x3Cpath id='g3-105' d='M1.763387-4.403487L.368618-4.293898V-3.985056C1.016189-3.985056 1.105853-3.92528 1.105853-3.437111V-.757161C1.105853-.308842 .996264-.308842 .328767-.308842V0C.647572-.009963 1.185554-.029888 1.424658-.029888C1.77335-.029888 2.122042-.009963 2.460772 0V-.308842C1.803238-.308842 1.763387-.358655 1.763387-.747198V-4.403487ZM1.803238-6.136986C1.803238-6.455791 1.554172-6.665006 1.275218-6.665006C.966376-6.665006 .747198-6.396015 .747198-6.136986C.747198-5.867995 .966376-5.608966 1.275218-5.608966C1.554172-5.608966 1.803238-5.818182 1.803238-6.136986Z'/>\n\x3Cpath id='g3-108' d='M1.763387-6.914072L.328767-6.804483V-6.495641C1.026152-6.495641 1.105853-6.425903 1.105853-5.937733V-.757161C1.105853-.308842 .996264-.308842 .328767-.308842V0C.657534-.009963 1.185554-.029888 1.43462-.029888S2.171856-.009963 2.540473 0V-.308842C1.872976-.308842 1.763387-.308842 1.763387-.757161V-6.914072Z'/>\n\x3Cpath id='g3-109' d='M1.09589-3.427148V-.757161C1.09589-.308842 .986301-.308842 .318804-.308842V0C.667497-.009963 1.175592-.029888 1.444583-.029888C1.703611-.029888 2.221669-.009963 2.560399 0V-.308842C1.892902-.308842 1.783313-.308842 1.783313-.757161V-2.590286C1.783313-3.626401 2.49066-4.184309 3.128269-4.184309C3.755915-4.184309 3.865504-3.646326 3.865504-3.078456V-.757161C3.865504-.308842 3.755915-.308842 3.088418-.308842V0C3.437111-.009963 3.945205-.029888 4.214197-.029888C4.473225-.029888 4.991283-.009963 5.330012 0V-.308842C4.662516-.308842 4.552927-.308842 4.552927-.757161V-2.590286C4.552927-3.626401 5.260274-4.184309 5.897883-4.184309C6.525529-4.184309 6.635118-3.646326 6.635118-3.078456V-.757161C6.635118-.308842 6.525529-.308842 5.858032-.308842V0C6.206725-.009963 6.714819-.029888 6.983811-.029888C7.242839-.029888 7.760897-.009963 8.099626 0V-.308842C7.581569-.308842 7.332503-.308842 7.32254-.607721V-2.510585C7.32254-3.367372 7.32254-3.676214 7.013699-4.034869C6.874222-4.204234 6.545455-4.403487 5.967621-4.403487C5.13076-4.403487 4.692403-3.805729 4.523039-3.427148C4.383562-4.293898 3.646326-4.403487 3.198007-4.403487C2.470735-4.403487 2.002491-3.975093 1.723537-3.35741V-4.403487L.318804-4.293898V-3.985056C1.016189-3.985056 1.09589-3.915318 1.09589-3.427148Z'/>\n\x3Cpath id='g3-110' d='M1.09589-3.427148V-.757161C1.09589-.308842 .986301-.308842 .318804-.308842V0C.667497-.009963 1.175592-.029888 1.444583-.029888C1.703611-.029888 2.221669-.009963 2.560399 0V-.308842C1.892902-.308842 1.783313-.308842 1.783313-.757161V-2.590286C1.783313-3.626401 2.49066-4.184309 3.128269-4.184309C3.755915-4.184309 3.865504-3.646326 3.865504-3.078456V-.757161C3.865504-.308842 3.755915-.308842 3.088418-.308842V0C3.437111-.009963 3.945205-.029888 4.214197-.029888C4.473225-.029888 4.991283-.009963 5.330012 0V-.308842C4.811955-.308842 4.562889-.308842 4.552927-.607721V-2.510585C4.552927-3.367372 4.552927-3.676214 4.244085-4.034869C4.104608-4.204234 3.775841-4.403487 3.198007-4.403487C2.470735-4.403487 2.002491-3.975093 1.723537-3.35741V-4.403487L.318804-4.293898V-3.985056C1.016189-3.985056 1.09589-3.915318 1.09589-3.427148Z'/>\n\x3Cpath id='g3-111' d='M4.692403-2.132005C4.692403-3.407223 3.696139-4.463263 2.49066-4.463263C1.24533-4.463263 .278954-3.377335 .278954-2.132005C.278954-.846824 1.315068 .109589 2.480697 .109589C3.686177 .109589 4.692403-.86675 4.692403-2.132005ZM2.49066-.139477C2.062267-.139477 1.62391-.348692 1.354919-.806974C1.105853-1.24533 1.105853-1.853051 1.105853-2.211706C1.105853-2.600249 1.105853-3.138232 1.344956-3.576588C1.613948-4.034869 2.082192-4.244085 2.480697-4.244085C2.919054-4.244085 3.347447-4.024907 3.606476-3.596513S3.865504-2.590286 3.865504-2.211706C3.865504-1.853051 3.865504-1.315068 3.646326-.876712C3.427148-.428394 2.988792-.139477 2.49066-.139477Z'/>\n\x3Cpath id='g3-114' d='M1.663761-3.307597V-4.403487L.278954-4.293898V-3.985056C.976339-3.985056 1.05604-3.915318 1.05604-3.427148V-.757161C1.05604-.308842 .946451-.308842 .278954-.308842V0C.667497-.009963 1.135741-.029888 1.414695-.029888C1.8132-.029888 2.281445-.029888 2.67995 0V-.308842H2.470735C1.733499-.308842 1.713574-.418431 1.713574-.777086V-2.311333C1.713574-3.297634 2.132005-4.184309 2.889166-4.184309C2.958904-4.184309 2.978829-4.184309 2.998755-4.174346C2.968867-4.164384 2.769614-4.044832 2.769614-3.785803C2.769614-3.506849 2.978829-3.35741 3.198007-3.35741C3.377335-3.35741 3.626401-3.476961 3.626401-3.795766S3.317559-4.403487 2.889166-4.403487C2.161893-4.403487 1.803238-3.73599 1.663761-3.307597Z'/>\n\x3Cpath id='g3-115' d='M2.072229-1.932752C2.291407-1.892902 3.108344-1.733499 3.108344-1.016189C3.108344-.508095 2.759651-.109589 1.982565-.109589C1.145704-.109589 .787049-.67746 .597758-1.524284C.56787-1.653798 .557908-1.693649 .458281-1.693649C.328767-1.693649 .328767-1.62391 .328767-1.444583V-.129514C.328767 .039851 .328767 .109589 .438356 .109589C.488169 .109589 .498132 .099626 .687422-.089664C.707347-.109589 .707347-.129514 .886675-.318804C1.325031 .099626 1.77335 .109589 1.982565 .109589C3.128269 .109589 3.58655-.557908 3.58655-1.275218C3.58655-1.803238 3.287671-2.102117 3.16812-2.221669C2.839352-2.540473 2.450809-2.620174 2.032379-2.699875C1.474471-2.809465 .806974-2.938979 .806974-3.516812C.806974-3.865504 1.066002-4.273973 1.92279-4.273973C3.01868-4.273973 3.068493-3.377335 3.088418-3.068493C3.098381-2.978829 3.188045-2.978829 3.20797-2.978829C3.337484-2.978829 3.337484-3.028643 3.337484-3.217933V-4.224159C3.337484-4.393524 3.337484-4.463263 3.227895-4.463263C3.178082-4.463263 3.158157-4.463263 3.028643-4.343711C2.998755-4.303861 2.899128-4.214197 2.859278-4.184309C2.480697-4.463263 2.072229-4.463263 1.92279-4.463263C.707347-4.463263 .328767-3.795766 .328767-3.237858C.328767-2.889166 .488169-2.610212 .757161-2.391034C1.075965-2.132005 1.354919-2.072229 2.072229-1.932752Z'/>\n\x3Cpath id='g3-116' d='M1.723537-3.985056H3.148194V-4.293898H1.723537V-6.127024H1.474471C1.464508-5.310087 1.165629-4.244085 .18929-4.204234V-3.985056H1.036115V-1.235367C1.036115-.009963 1.96264 .109589 2.321295 .109589C3.028643 .109589 3.307597-.597758 3.307597-1.235367V-1.803238H3.058531V-1.255293C3.058531-.518057 2.759651-.139477 2.391034-.139477C1.723537-.139477 1.723537-1.046077 1.723537-1.215442V-3.985056Z'/>\n\x3Cpath id='g3-118' d='M4.144458-3.317559C4.234122-3.5467 4.403487-3.975093 5.061021-3.985056V-4.293898C4.83188-4.273973 4.542964-4.26401 4.313823-4.26401C4.07472-4.26401 3.616438-4.283935 3.447073-4.293898V-3.985056C3.815691-3.975093 3.92528-3.745953 3.92528-3.556663C3.92528-3.466999 3.905355-3.427148 3.865504-3.317559L2.849315-.777086L1.733499-3.556663C1.673724-3.686177 1.673724-3.706102 1.673724-3.726027C1.673724-3.985056 2.062267-3.985056 2.241594-3.985056V-4.293898C1.942715-4.283935 1.384807-4.26401 1.155666-4.26401C.886675-4.26401 .488169-4.273973 .18929-4.293898V-3.985056C.816936-3.985056 .856787-3.92528 .986301-3.616438L2.420922-.079701C2.480697 .059776 2.500623 .109589 2.630137 .109589S2.799502 .019925 2.839352-.079701L4.144458-3.317559Z'/>\n\x3Cpath id='g2-40' d='M3.775841 2.241594C3.486924 1.972603 2.839352 1.364882 2.420922 .089664C2.161893-.697385 2.042341-1.613948 2.042341-2.49066C2.042341-4.4533 2.550436-6.017435 3.646326-7.123288C3.795766-7.272727 3.805729-7.28269 3.805729-7.332503C3.805729-7.442092 3.706102-7.47198 3.626401-7.47198C3.457036-7.47198 3.038605-7.103362 2.859278-6.933998C1.305106-5.389788 1.075965-3.556663 1.075965-2.500623C1.075965-1.255293 1.404732-.159402 1.872976 .667497C2.530511 1.8132 3.437111 2.480697 3.626401 2.480697C3.706102 2.480697 3.805729 2.450809 3.805729 2.34122C3.805729 2.291407 3.775841 2.251557 3.775841 2.241594Z'/>\n\x3Cpath id='g2-41' d='M3.367372-2.49066C3.367372-3.73599 3.038605-4.83188 2.570361-5.65878C1.912827-6.804483 1.006227-7.47198 .816936-7.47198C.737235-7.47198 .637609-7.442092 .637609-7.332503C.637609-7.28269 .637609-7.262765 .806974-7.103362C2.062267-5.828144 2.400996-4.064757 2.400996-2.500623C2.400996-.537983 1.892902 1.026152 .797011 2.132005C.647572 2.281445 .637609 2.291407 .637609 2.34122C.637609 2.450809 .737235 2.480697 .816936 2.480697C.986301 2.480697 1.404732 2.11208 1.58406 1.942715C3.138232 .398506 3.367372-1.43462 3.367372-2.49066Z'/>\n\x3Cpath id='g2-45' d='M3.16812-1.733499V-2.699875H.129514V-1.733499H3.16812Z'/>\n\x3Cpath id='g2-67' d='M7.631382-6.665006C7.631382-6.854296 7.631382-6.94396 7.452055-6.94396C7.362391-6.94396 7.342466-6.924035 7.262765-6.854296L6.60523-6.266501C5.987547-6.764633 5.32005-6.94396 4.64259-6.94396C2.161893-6.94396 .637609-5.459527 .637609-3.417186S2.161893 .109589 4.64259 .109589C6.505604 .109589 7.631382-1.115816 7.631382-2.261519C7.631382-2.460772 7.561644-2.470735 7.392279-2.470735C7.262765-2.470735 7.173101-2.470735 7.163138-2.30137C7.0934-.966376 5.88792-.358655 4.881694-.358655C4.104608-.358655 3.267746-.597758 2.749689-1.205479C2.281445-1.77335 2.161893-2.520548 2.161893-3.417186C2.161893-3.975093 2.191781-5.051059 2.819427-5.708593C3.466999-6.366127 4.333748-6.475716 4.851806-6.475716C5.927771-6.475716 6.874222-5.718555 7.0934-4.4533C7.123288-4.26401 7.13325-4.244085 7.362391-4.244085C7.62142-4.244085 7.631382-4.26401 7.631382-4.523039V-6.665006Z'/>\n\x3Cpath id='g2-69' d='M7.202989-2.729763H6.734745C6.515567-1.354919 6.236613-.468244 4.393524-.468244H2.879203V-3.277709H3.427148C4.383562-3.277709 4.483188-2.849315 4.483188-2.11208H4.951432V-4.911582H4.483188C4.483188-4.174346 4.393524-3.745953 3.427148-3.745953H2.879203V-6.306351H4.393524C5.997509-6.306351 6.256538-5.579078 6.41594-4.373599H6.884184L6.575342-6.774595H.388543V-6.306351H1.464508V-.468244H.388543V0H6.744707L7.202989-2.729763Z'/>\n\x3Cpath id='g2-73' d='M2.879203-6.366127H4.014944V-6.834371C3.606476-6.804483 2.630137-6.804483 2.171856-6.804483S.737235-6.804483 .328767-6.834371V-6.366127H1.464508V-.468244H.328767V0C.737235-.029888 1.713574-.029888 2.171856-.029888S3.606476-.029888 4.014944 0V-.468244H2.879203V-6.366127Z'/>\n\x3Cpath id='g2-76' d='M6.405978-2.729763H5.937733C5.858032-2.042341 5.688667-.468244 3.905355-.468244H2.879203V-6.366127H4.224159V-6.834371C3.785803-6.804483 2.699875-6.804483 2.211706-6.804483C1.77335-6.804483 .767123-6.804483 .388543-6.834371V-6.366127H1.464508V-.468244H.388543V0H6.097136L6.405978-2.729763Z'/>\n\x3Cpath id='g2-80' d='M2.879203-3.008717H4.64259C6.027397-3.008717 7.183064-3.726027 7.183064-4.891656C7.183064-5.987547 6.196762-6.834371 4.542964-6.834371H.388543V-6.366127H1.464508V-.468244H.388543V0C.767123-.029888 1.743462-.029888 2.171856-.029888S3.576588-.029888 3.955168 0V-.468244H2.879203V-3.008717ZM4.154421-3.417186H2.819427V-6.366127H4.164384C5.65878-6.366127 5.65878-5.608966 5.65878-4.891656C5.65878-4.184309 5.65878-3.417186 4.154421-3.417186Z'/>\n\x3Cpath id='g2-82' d='M2.819427-3.596513V-6.366127H3.995019C5.599004-6.366127 5.618929-5.589041 5.618929-4.98132C5.618929-4.423412 5.618929-3.596513 3.975093-3.596513H2.819427ZM5.479452-3.387298C6.635118-3.686177 7.143213-4.333748 7.143213-4.991283C7.143213-5.997509 6.047323-6.834371 4.174346-6.834371H.388543V-6.366127H1.464508V-.468244H.388543V0C.747198-.029888 1.723537-.029888 2.141968-.029888S3.536737-.029888 3.895392 0V-.468244H2.819427V-3.237858H3.985056C4.124533-3.237858 4.562889-3.237858 4.871731-2.899128C5.190535-2.550436 5.190535-2.361146 5.190535-1.633873C5.190535-.976339 5.190535-.488169 5.88792-.14944C6.326276 .069738 6.94396 .109589 7.352428 .109589C8.418431 .109589 8.547945-.787049 8.547945-.946451C8.547945-1.165629 8.408468-1.165629 8.308842-1.165629C8.099626-1.165629 8.089664-1.066002 8.079701-.936488C8.029888-.468244 7.740971-.249066 7.442092-.249066C6.844334-.249066 6.75467-.956413 6.704857-1.374844C6.684932-1.484433 6.60523-2.171856 6.595268-2.221669C6.455791-2.919054 5.907846-3.227895 5.479452-3.387298Z'/>\n\x3Cpath id='g2-97' d='M3.726027-.767123C3.726027-.458281 3.726027 0 4.762142 0H5.240349C5.439601 0 5.559153 0 5.559153-.239103C5.559153-.468244 5.429639-.468244 5.300125-.468244C4.692403-.478207 4.692403-.607721 4.692403-.836862V-2.978829C4.692403-3.865504 3.985056-4.513076 2.500623-4.513076C1.932752-4.513076 .71731-4.473225 .71731-3.596513C.71731-3.158157 1.066002-2.968867 1.334994-2.968867C1.643836-2.968867 1.96264-3.178082 1.96264-3.596513C1.96264-3.895392 1.77335-4.064757 1.743462-4.084682C2.022416-4.144458 2.34122-4.154421 2.460772-4.154421C3.20797-4.154421 3.556663-3.73599 3.556663-2.978829V-2.6401C2.849315-2.610212 .318804-2.520548 .318804-1.075965C.318804-.119552 1.554172 .059776 2.241594 .059776C3.038605 .059776 3.506849-.348692 3.726027-.767123ZM3.556663-2.331258V-1.384807C3.556663-.428394 2.6401-.298879 2.391034-.298879C1.882939-.298879 1.484433-.647572 1.484433-1.085928C1.484433-2.161893 3.058531-2.30137 3.556663-2.331258Z'/>\n\x3Cpath id='g2-98' d='M2.132005-3.995019V-6.914072L.368618-6.834371V-6.366127C.986301-6.366127 1.05604-6.366127 1.05604-5.977584V0H1.524284L2.012453-.557908C2.092154-.478207 2.580324 .059776 3.466999 .059776C4.951432 .059776 5.977584-.836862 5.977584-2.221669C5.977584-3.5467 5.041096-4.483188 3.596513-4.483188C2.86924-4.483188 2.371108-4.194271 2.132005-3.995019ZM2.191781-.986301V-3.486924C2.460772-3.835616 2.938979-4.124533 3.486924-4.124533C4.702366-4.124533 4.702366-2.919054 4.702366-2.221669C4.702366-1.753425 4.702366-1.205479 4.443337-.816936C4.154421-.408468 3.696139-.298879 3.377335-.298879C2.67995-.298879 2.291407-.836862 2.191781-.986301Z'/>\n\x3Cpath id='g2-99' d='M3.58655-4.054795C3.407223-3.895392 3.387298-3.686177 3.387298-3.596513C3.387298-3.158157 3.73599-2.968867 4.004981-2.968867C4.313823-2.968867 4.632628-3.178082 4.632628-3.596513C4.632628-4.4533 3.476961-4.513076 2.899128-4.513076C1.115816-4.513076 .37858-3.367372 .37858-2.211706C.37858-.886675 1.315068 .059776 2.849315 .059776C4.463263 .059776 4.762142-1.09589 4.762142-1.165629C4.762142-1.305106 4.622665-1.305106 4.523039-1.305106C4.343711-1.305106 4.333748-1.285181 4.283935-1.155666C4.024907-.52802 3.5467-.33873 3.038605-.33873C1.653798-.33873 1.653798-1.803238 1.653798-2.261519C1.653798-2.819427 1.653798-4.11457 2.938979-4.11457C3.287671-4.11457 3.457036-4.084682 3.58655-4.054795Z'/>\n\x3Cpath id='g2-100' d='M4.164384-.428394V.059776L5.987547 0V-.468244C5.369863-.468244 5.300125-.468244 5.300125-.856787V-6.914072L3.536737-6.834371V-6.366127C4.154421-6.366127 4.224159-6.366127 4.224159-5.977584V-4.034869C3.726027-4.423412 3.20797-4.483188 2.879203-4.483188C1.424658-4.483188 .37858-3.606476 .37858-2.201743C.37858-.886675 1.295143 .059776 2.769614 .059776C3.377335 .059776 3.855542-.179328 4.164384-.428394ZM4.164384-3.516812V-1.026152C4.034869-.846824 3.626401-.298879 2.86924-.298879C1.653798-.298879 1.653798-1.504359 1.653798-2.201743C1.653798-2.67995 1.653798-3.217933 1.912827-3.606476C2.201743-4.024907 2.669988-4.124533 2.978829-4.124533C3.5467-4.124533 3.945205-3.805729 4.164384-3.516812Z'/>\n\x3Cpath id='g2-101' d='M4.60274-2.171856C4.821918-2.171856 4.921544-2.171856 4.921544-2.440847C4.921544-2.749689 4.861768-3.476961 4.363636-3.975093C3.995019-4.333748 3.466999-4.513076 2.779577-4.513076C1.185554-4.513076 .318804-3.486924 .318804-2.241594C.318804-.9066 1.315068 .059776 2.919054 .059776C4.493151 .059776 4.921544-.996264 4.921544-1.165629C4.921544-1.344956 4.732254-1.344956 4.682441-1.344956C4.513076-1.344956 4.493151-1.295143 4.433375-1.135741C4.224159-.657534 3.656289-.33873 3.008717-.33873C1.603985-.33873 1.594022-1.663761 1.594022-2.171856H4.60274ZM1.594022-2.500623C1.613948-2.889166 1.62391-3.307597 1.833126-3.636364C2.092154-4.034869 2.49066-4.154421 2.779577-4.154421C3.945205-4.154421 3.965131-2.849315 3.975093-2.500623H1.594022Z'/>\n\x3Cpath id='g2-103' d='M2.540473-1.892902C1.663761-1.892902 1.663761-2.560399 1.663761-3.008717S1.663761-4.124533 2.540473-4.124533S3.417186-3.457036 3.417186-3.008717S3.417186-1.892902 2.540473-1.892902ZM1.325031-1.793275C1.783313-1.554172 2.291407-1.534247 2.540473-1.534247C3.975093-1.534247 4.523039-2.311333 4.523039-3.008717C4.523039-3.476961 4.273973-3.805729 4.124533-3.965131C4.423412-4.124533 4.632628-4.144458 4.742217-4.154421C4.722291-4.104608 4.702366-4.014944 4.702366-3.955168C4.702366-3.706102 4.871731-3.526775 5.13076-3.526775S5.559153-3.716065 5.559153-3.955168C5.559153-4.184309 5.389788-4.533001 4.931507-4.533001C4.782067-4.533001 4.313823-4.503113 3.875467-4.154421C3.696139-4.273973 3.277709-4.483188 2.540473-4.483188C1.105853-4.483188 .557908-3.706102 .557908-3.008717C.557908-2.600249 .757161-2.191781 1.075965-1.96264C.797011-1.613948 .737235-1.285181 .737235-1.075965C.737235-.926526 .777086-.438356 1.175592-.119552C1.046077-.089664 .318804 .119552 .318804 .747198C.318804 1.255293 .86675 2.002491 2.859278 2.002491C4.622665 2.002491 5.399751 1.414695 5.399751 .71731C5.399751 .418431 5.32005-.209215 4.652553-.547945C4.094645-.826899 3.496887-.826899 2.540473-.826899C2.281445-.826899 1.823163-.826899 1.77335-.836862C1.334994-.9066 1.225405-1.285181 1.225405-1.464508C1.225405-1.564134 1.265255-1.713574 1.325031-1.793275ZM1.942715 .129514H3.108344C3.417186 .129514 4.542964 .129514 4.542964 .747198C4.542964 1.105853 4.154421 1.643836 2.859278 1.643836C1.663761 1.643836 1.175592 1.185554 1.175592 .727273C1.175592 .129514 1.803238 .129514 1.942715 .129514Z'/>\n\x3Cpath id='g2-104' d='M1.135741-.468244H.448319V0C.727273-.009963 1.325031-.029888 1.703611-.029888C2.092154-.029888 2.67995-.009963 2.958904 0V-.468244H2.271482V-2.550436C2.271482-3.636364 3.128269-4.124533 3.755915-4.124533C4.094645-4.124533 4.303861-3.915318 4.303861-3.158157V-.468244H3.616438V0C3.895392-.009963 4.493151-.029888 4.871731-.029888C5.260274-.029888 5.84807-.009963 6.127024 0V-.468244H5.439601V-3.048568C5.439601-4.094645 4.901619-4.483188 3.905355-4.483188C2.948941-4.483188 2.440847-3.905355 2.211706-3.506849V-6.914072L.448319-6.834371V-6.366127C1.066002-6.366127 1.135741-6.366127 1.135741-5.977584V-.468244Z'/>\n\x3Cpath id='g2-105' d='M2.231631-4.483188L.498132-4.403487V-3.935243C1.085928-3.935243 1.155666-3.935243 1.155666-3.5467V-.468244H.468244V0C.777086-.009963 1.265255-.029888 1.683686-.029888C1.982565-.029888 2.49066-.009963 2.849315 0V-.468244H2.231631V-4.483188ZM2.331258-6.146949C2.331258-6.585305 1.972603-6.924035 1.554172-6.924035C1.125778-6.924035 .777086-6.575342 .777086-6.146949S1.125778-5.369863 1.554172-5.369863C1.972603-5.369863 2.331258-5.708593 2.331258-6.146949Z'/>\n\x3Cpath id='g2-108' d='M2.231631-6.914072L.468244-6.834371V-6.366127C1.085928-6.366127 1.155666-6.366127 1.155666-5.977584V-.468244H.468244V0C.787049-.009963 1.265255-.029888 1.693649-.029888S2.580324-.009963 2.919054 0V-.468244H2.231631V-6.914072Z'/>\n\x3Cpath id='g2-109' d='M1.135741-3.5467V-.468244H.448319V0C.727273-.009963 1.325031-.029888 1.703611-.029888C2.092154-.029888 2.67995-.009963 2.958904 0V-.468244H2.271482V-2.550436C2.271482-3.636364 3.138232-4.124533 3.755915-4.124533C4.094645-4.124533 4.313823-3.92528 4.313823-3.158157V-.468244H3.626401V0C3.905355-.009963 4.503113-.029888 4.881694-.029888C5.270237-.029888 5.858032-.009963 6.136986 0V-.468244H5.449564V-2.550436C5.449564-3.636364 6.316314-4.124533 6.933998-4.124533C7.272727-4.124533 7.491905-3.92528 7.491905-3.158157V-.468244H6.804483V0C7.083437-.009963 7.681196-.029888 8.059776-.029888C8.448319-.029888 9.036115-.009963 9.315068 0V-.468244H8.627646V-3.048568C8.627646-4.07472 8.119552-4.483188 7.0934-4.483188C6.1868-4.483188 5.668742-3.985056 5.409714-3.526775C5.210461-4.4533 4.293898-4.483188 3.915318-4.483188C3.048568-4.483188 2.480697-4.034869 2.161893-3.407223V-4.483188L.448319-4.403487V-3.935243C1.066002-3.935243 1.135741-3.935243 1.135741-3.5467Z'/>\n\x3Cpath id='g2-110' d='M1.135741-3.5467V-.468244H.448319V0C.727273-.009963 1.325031-.029888 1.703611-.029888C2.092154-.029888 2.67995-.009963 2.958904 0V-.468244H2.271482V-2.550436C2.271482-3.636364 3.128269-4.124533 3.755915-4.124533C4.094645-4.124533 4.303861-3.915318 4.303861-3.158157V-.468244H3.616438V0C3.895392-.009963 4.493151-.029888 4.871731-.029888C5.260274-.029888 5.84807-.009963 6.127024 0V-.468244H5.439601V-3.048568C5.439601-4.094645 4.901619-4.483188 3.905355-4.483188C2.948941-4.483188 2.420922-3.915318 2.161893-3.407223V-4.483188L.448319-4.403487V-3.935243C1.066002-3.935243 1.135741-3.935243 1.135741-3.5467Z'/>\n\x3Cpath id='g2-111' d='M5.399751-2.171856C5.399751-3.506849 4.483188-4.513076 2.859278-4.513076C1.225405-4.513076 .318804-3.496887 .318804-2.171856C.318804-.936488 1.195517 .059776 2.859278 .059776C4.533001 .059776 5.399751-.946451 5.399751-2.171856ZM2.859278-.33873C1.594022-.33873 1.594022-1.414695 1.594022-2.281445C1.594022-2.729763 1.594022-3.237858 1.763387-3.576588C1.952677-3.945205 2.371108-4.154421 2.859278-4.154421C3.277709-4.154421 3.696139-3.995019 3.915318-3.646326C4.124533-3.307597 4.124533-2.759651 4.124533-2.281445C4.124533-1.414695 4.124533-.33873 2.859278-.33873Z'/>\n\x3Cpath id='g2-112' d='M2.191781-3.277709C2.191781-3.466999 2.201743-3.476961 2.34122-3.616438C2.739726-4.024907 3.257783-4.084682 3.476961-4.084682C4.144458-4.084682 4.702366-3.476961 4.702366-2.221669C4.702366-.816936 4.004981-.298879 3.35741-.298879C3.217933-.298879 2.749689-.298879 2.30137-.836862C2.191781-.966376 2.191781-.976339 2.191781-1.165629V-3.277709ZM2.191781-.388543C2.620174-.039851 3.058531 .059776 3.466999 .059776C4.961395 .059776 5.977584-.836862 5.977584-2.221669C5.977584-3.5467 5.070984-4.483188 3.636364-4.483188C2.889166-4.483188 2.361146-4.174346 2.132005-3.995019V-4.483188L.368618-4.403487V-3.935243C.986301-3.935243 1.05604-3.935243 1.05604-3.556663V1.464508H.368618V1.932752C.647572 1.92279 1.24533 1.902864 1.62391 1.902864C2.012453 1.902864 2.600249 1.92279 2.879203 1.932752V1.464508H2.191781V-.388543Z'/>\n\x3Cpath id='g2-114' d='M2.022416-3.35741V-4.483188L.368618-4.403487V-3.935243C.986301-3.935243 1.05604-3.935243 1.05604-3.5467V-.468244H.368618V0C.71731-.009963 1.165629-.029888 1.62391-.029888C2.002491-.029888 2.6401-.029888 2.998755 0V-.468244H2.132005V-2.211706C2.132005-2.909091 2.381071-4.124533 3.377335-4.124533C3.367372-4.11457 3.188045-3.955168 3.188045-3.666252C3.188045-3.257783 3.506849-3.058531 3.795766-3.058531S4.403487-3.267746 4.403487-3.666252C4.403487-4.194271 3.865504-4.483188 3.347447-4.483188C2.650062-4.483188 2.251557-3.985056 2.022416-3.35741Z'/>\n\x3Cpath id='g2-115' d='M2.102117-2.929016C1.733499-2.998755 1.085928-3.108344 1.085928-3.576588C1.085928-4.194271 2.012453-4.194271 2.201743-4.194271C2.948941-4.194271 3.327522-3.905355 3.377335-3.35741C3.387298-3.20797 3.39726-3.158157 3.606476-3.158157C3.845579-3.158157 3.845579-3.20797 3.845579-3.437111V-4.234122C3.845579-4.423412 3.845579-4.513076 3.666252-4.513076C3.626401-4.513076 3.606476-4.513076 3.217933-4.323786C2.958904-4.4533 2.610212-4.513076 2.211706-4.513076C1.912827-4.513076 .37858-4.513076 .37858-3.20797C.37858-2.809465 .577833-2.540473 .777086-2.371108C1.175592-2.022416 1.554172-1.96264 2.321295-1.823163C2.67995-1.763387 3.427148-1.633873 3.427148-1.046077C3.427148-.298879 2.510585-.298879 2.291407-.298879C1.235367-.298879 .976339-1.026152 .856787-1.454545C.806974-1.594022 .757161-1.594022 .617684-1.594022C.37858-1.594022 .37858-1.534247 .37858-1.305106V-.219178C.37858-.029888 .37858 .059776 .557908 .059776C.627646 .059776 .647572 .059776 .856787-.089664C.86675-.089664 1.085928-.239103 1.115816-.259029C1.574097 .059776 2.092154 .059776 2.291407 .059776C2.600249 .059776 4.134496 .059776 4.134496-1.39477C4.134496-1.823163 3.935243-2.171856 3.58655-2.450809C3.198007-2.739726 2.879203-2.799502 2.102117-2.929016Z'/>\n\x3Cpath id='g2-116' d='M1.026152-3.955168V-1.225405C1.026152-.159402 1.892902 .059776 2.600249 .059776C3.35741 .059776 3.805729-.508095 3.805729-1.235367V-1.763387H3.337484V-1.255293C3.337484-.577833 3.01868-.33873 2.739726-.33873C2.161893-.33873 2.161893-.976339 2.161893-1.20547",type:"svgGraphic"},uuid:"2|4"},$R[307]={content:$R[308]={type:"text",text:"This process ensures that the AI understands not just *what* you want, but *how* to achieve it within its own operational framework. The clarity of the Pham language, rooted in mathematical grammar, makes this translation more reliable and less prone to misinterpretation than commands given in conversational English."},uuid:"2|5"},$R[309]={content:$R[310]={type:"header",text:"Precision Is Key"},uuid:"2|6"},$R[311]={content:$R[312]={type:"text",text:"Because the final output is literal code, every part of a Pham command must be precise. Ambiguity is the enemy of accurate execution. If a condition is vague, the system might fail, or worse, perform the wrong action. This is why specifying exact operations and conditions is so important.\n\nConsider the difference between \"find big files\" and \"find files where size > 10MB.\" The first is subjective. The second is a concrete, testable condition that an AI can easily translate into a line of code."},uuid:"2|7"},$R[313]={content:$R[314]={type:"blockquote",text:"Every condition in a Pham command should be a statement that can be evaluated as strictly true or false."},uuid:"2|8"},$R[315]={content:$R[316]={type:"text",text:"Let's look at a practical example. Imagine we want an AI to process a directory of images. The goal is to convert all PNG files to JPEG format.\n\nA clear Pham command would be:\n`For all files in '~/images', if file_extension is '.png', then convert_format to 'jpeg'.`\n\nThis command is unambiguous. The AI's parser identifies:\n- **Scope:** The '~/images' directory.\n- **Condition:** The file extension must be exactly '.png'.\n- **Action:** Execute the `convert_format` function.\n- **Parameter:** The new format is 'jpeg'.\n\nHere’s how this might translate into Python code that the system can execute:"},uuid:"2|9"},$R[317]={content:$R[318]={type:"code",markdown:"```\nimport os\nfrom PIL import Image\n\nSOURCE_DIR = os.path.expanduser('~/images')\n\ndef process_images():\n # Iterate through all files in the directory\n for filename in os.listdir(SOURCE_DIR):\n # Check if the file extension is .png\n if filename.endswith('.png'):\n # Construct the full file path\n img_path = os.path.join(SOURCE_DIR, filename)\n img = Image.open(img_path)\n \n # Create the new filename and save as JPEG\n rgb_img = img.convert('RGB')\n new_filename = filename[:-4] + '.jpeg'\n rgb_img.save(os.path.join(SOURCE_DIR, new_filename))\n \n # Optional: remove the original PNG file\n os.remove(img_path)\n\n# Execute the function\nprocess_images()\n```"},uuid:"2|10"},$R[319]={content:$R[320]={type:"text",text:"The one-line Pham command effectively generated this entire script. By focusing on clear, structured commands, you provide the AI with everything it needs to perform complex tasks accurately and efficiently."},uuid:"2|11"},$R[321]={content:$R[322]={type:"quiz",questions:$R[323]=[$R[324]={text:"What is the primary function of a Pham language command within an AI system?",options:$R[325]=[$R[326]={text:"To provide a high-level, human-readable goal that the AI translates into low-level code.",followup:"Correct. A Pham command is a high-level instruction that needs to be translated into an executable programming language like Python before the AI can act on it.",isRightAnswer:!0},$R[327]={text:"To directly control the AI's hardware components, bypassing the operating system.",followup:"Incorrect. Pham commands are high-level and abstract; they do not interact directly with hardware.",isRightAnswer:!1},$R[328]={text:"To engage in natural, conversational dialogue with the user.",followup:"Incorrect. The Pham language is a structured, precise command language, not a tool for conversational English.",isRightAnswer:!1},$R[329]={text:"To replace the need for programming languages like Python or C entirely.",followup:"Incorrect. Pham commands are translated *into* lower-level languages like Python or C, not used in place of them.",isRightAnswer:!1}]},$R[330]={text:"Which of the following commands is a well-formed, unambiguous Pham command?",options:$R[331]=[$R[332]={text:"Find all the really big files on the main drive.",followup:"Incorrect. The term 'really big' is subjective and not a precise, testable condition for an AI.",isRightAnswer:!1},$R[333]={text:"For all files in '~/data', if file_size > 50MB, then move to '~/large_files'.",followup:"Correct. This command is precise. It clearly defines the scope ('~/data'), a testable condition (file_size > 50MB), and a specific action (move to '~/large_files').",isRightAnswer:!0},$R[334]={text:"Delete files that are old.",followup:"Incorrect. The definition of 'old' is not specified, making the command ambiguous.",isRightAnswer:!1},$R[335]={text:"Process some of the log files from yesterday.",followup:"Incorrect. 'Some' is ambiguous. The command doesn't specify which logs or what 'process' means.",isRightAnswer:!1}]},$R[336]={text:"An AI's internal parser breaks down a Pham command into its key parts, such as the action, object, and conditions.",options:$R[337]=[$R[338]={text:"True",followup:"Correct. This process, similar to diagramming a sentence, allows the AI to understand the command and map it to functions in its codebase.",isRightAnswer:!0},$R[339]={text:"False",followup:"Incorrect. An internal parser or interpreter is essential for deconstructing the high-level command into understandable parts.",isRightAnswer:!1}]},$R[340]={text:"In the Pham command `For all files in '~/images', if file_extension is '.png', then convert_format to 'jpeg'`, what is the 'condition'?",options:$R[341]=[$R[342]={text:"The action is `convert_format`.",followup:"Incorrect. `convert_format` is the action to be performed if the condition is met.",isRightAnswer:!1},$R[343]={text:"The scope is '~/images'.",followup:"Incorrect. '~/images' defines the scope or the set of objects to be acted upon, not the condition.",isRightAnswer:!1},$R[344]={text:"The parameter is 'jpeg'.",followup:"Incorrect. 'jpeg' is a parameter for the `convert_format` action.",isRightAnswer:!1},$R[345]={text:"The file's extension is '.png'.",followup:"Correct. This is the specific, testable condition that a file must meet for the action to be applied to it.",isRightAnswer:!0}]},$R[346]={text:"Why must Pham commands be extremely precise?",options:$R[347]=[$R[348]={text:"Because they are translated directly into literal, executable code where ambiguity can cause errors.",followup:"Correct. Since the command is turned into a program, any vagueness or ambiguity could cause the program to fail or produce incorrect results.",isRightAnswer:!0},$R[349]={text:"To make the commands shorter and easier to type.",followup:"Incorrect. While brevity can be a benefit, the primary reason for precision is to ensure accurate execution, not to save typing.",isRightAnswer:!1},$R[350]={text:"To ensure they are grammatically correct in English.",followup:"Incorrect. Pham language has its own mathematical grammar; its structure is for machine interpretation, not adherence to English grammar rules.",isRightAnswer:!1}]}]},uuid:"2|12"},$R[351]={content:$R[352]={type:"text",text:"This translation from a high-level language to low-level code is fundamental to how humans and AIs can work together effectively."},uuid:"2|13"}]},$R[353]={uuid:"3",title:"Advanced Applications and Optimization",includesKnowledgeBase:!1,hasDemonstratedMastery:!1,streaming:!1,blocks:$R[354]=[$R[355]={content:$R[356]={type:"header",text:"Handling Complex Tasks"},uuid:"3|0"},$R[357]={content:$R[358]={type:"text",text:"Beyond simple, one-off commands, the Pham language excels at defining complex, multi-step AI tasks. Its mathematical structure allows you to build entire workflows or analysis pipelines in a single, coherent instruction set. This is crucial for applications in scientific research, data analysis, and multi-agent systems where a sequence of precise operations is required.\n\nThink of it like writing a recipe. Instead of telling a chef to \"make dinner,\" you provide a clear, ordered set of instructions: chop vegetables, sear the protein, prepare the sauce, and combine. Pham language enables this level of specificity for AI, ensuring that intricate tasks are executed correctly and in the right order."},uuid:"3|1"},$R[359]={content:$R[360]={type:"blockquote",text:"For example, you could write a single Pham command that instructs an AI to: (1) Fetch a dataset from a specific source, (2) Clean the data by removing null values, (3) Perform a statistical regression analysis, and (4) Generate a report summarizing the findings. This turns a complex workflow into a single, manageable command."},uuid:"3|2"},$R[361]={content:$R[362]={type:"code",markdown:"```\n/*\n Complex Data Analysis Command\n This command instructs an AI to perform a full analysis pipeline on a sales dataset.\n*/\n{\n (Task: DataAnalysis),\n (Source: API, \"https://api.example.com/sales_data_2024\"),\n (Action: CleanData, (Remove: NullValues, Columns: [\"revenue\", \"units_sold\"])),\n (Action: Analyze, (Model: LinearRegression, X: \"units_sold\", Y: \"revenue\")),\n (Action: Report, (Format: PDF, Title: \"2024 Sales Analysis\"))\n}\n```"},uuid:"3|3"},$R[363]={content:$R[364]={type:"header",text:"AI to AI Communication"},uuid:"3|4"},$R[365]={content:$R[366]={type:"text",text:"One of the most powerful features of the Pham language is its role as a universal translator between different AI systems. When multiple AIs need to collaborate, they require a common language to understand each other's requests, capabilities, and results. Pham provides this standardized communication protocol.\n\nWithout a shared language, connecting two AIs would require building a custom integration layer, or API, which is time-consuming and inefficient. By using Pham, an AI specialized in image analysis can seamlessly request data from another AI that manages databases, or delegate a natural language summary to a third AI. This creates an ecosystem where AIs can work together, combining their strengths to solve more complex problems."},uuid:"3|5"},$R[367]={content:$R[368]={type:"header",text:"Optimizing for Performance"},uuid:"3|7"},$R[369]={content:$R[370]={type:"text",text:"As we've covered, a primary goal of the Pham language is to reduce the energy consumed by AI systems. This optimization comes from its precision. Vague, conversational prompts force an AI to spend significant computational power just trying to interpret the user's intent. The structured, mathematical grammar of Pham eliminates this ambiguity.\n\nWhen a command is clear and direct, the AI can move straight to execution without wasting cycles on interpretation or asking for clarification. This leads to faster response times and lower energy usage.\n\nYou can further enhance performance by writing more efficient commands. This involves thinking about how the AI will process the request and structuring your command to minimize redundant steps. For instance, instead of sending multiple commands to filter a dataset and then perform a calculation, you can chain these operations into a single, optimized command. This tells the AI to perform the actions in sequence, often allowing it to hold the data in active memory rather than writing and re-reading it between steps."},uuid:"3|8"},$R[371]={content:$R[372]={type:"table",markdown:"| Unoptimized Approach | Optimized Pham Command |\n|---|---|\n| **Cmd 1:** {Source: File, \"data.csv\"}\x3Cbr>**Cmd 2:** {Filter: (Column: \"Year\", Value: 2023)}\x3Cbr>**Cmd 3:** {Calculate: (Mean, Column: \"Sales\")} | {\x3Cbr> (Source: File, \"data.csv\"),\x3Cbr> (Action: [ \x3Cbr> (Filter: (Column: \"Year\", Value: 2023)),\x3Cbr> (Calculate: (Mean, Column: \"Sales\"))\x3Cbr> ])\x3Cbr>} |"},uuid:"3|9"},$R[373]={content:$R[374]={type:"text",text:"In the optimized example, the filtering and calculation are nested within a single action set. This structure informs the AI that the operations are linked and should be performed in a single, continuous process, which is far more efficient."},uuid:"3|10"},$R[375]={content:$R[376]={type:"text",text:"Ready to test your knowledge on these advanced applications?"},uuid:"3|11"},$R[377]={content:$R[378]={type:"quiz",questions:$R[379]=[$R[380]={text:"What is the primary advantage of using the Pham language as a 'universal translator' for multiple AI systems?",options:$R[381]=[$R[382]={text:"It requires each AI to be completely rewritten to understand a new central language.",followup:"Incorrect. Pham acts as a standardized protocol, avoiding the need for deep, custom integrations for each interaction.",isRightAnswer:!1},$R[383]={text:"It allows specialized AIs to collaborate seamlessly without needing custom-built integrations for each pair.",followup:"Correct! Pham provides a standardized communication protocol, enabling different AIs to work together efficiently.",isRightAnswer:!0},$R[384]={text:"It translates all AI responses into a single human language, like English.",followup:"Incorrect. Its role as a 'universal translator' is for communication between different AIs, not necessarily for human-computer interaction.",isRightAnswer:!1},$R[385]={text:"It ensures that only one AI can operate at a time to prevent conflicts.",followup:"Incorrect. The purpose of Pham in this context is to facilitate collaboration and parallel work, not restrict it.",isRightAnswer:!1}]},$R[386]={text:"How does the precision of the Pham language lead to lower energy consumption?",options:$R[387]=[$R[388]={text:"By compressing data files before processing.",followup:"Incorrect. While data compression can save energy, it's not the primary mechanism described for Pham's efficiency.",isRightAnswer:!1},$R[389]={text:"By eliminating the computational work needed to interpret vague, ambiguous commands.",followup:"That's right! Clear, direct commands allow the AI to move straight to execution, saving the energy that would have been wasted on interpretation.",isRightAnswer:!0},$R[390]={text:"By running on low-power hardware exclusively.",followup:"Incorrect. The efficiency comes from the language's structure, not the hardware it runs on.",isRightAnswer:!1},$R[391]={text:"By forcing the AI to ask for clarification before executing any command.",followup:"Incorrect. The goal is the opposite; Pham's clarity is designed to eliminate the need for clarification, thereby saving time and energy.",isRightAnswer:!1}]},$R[392]={text:"Chaining multiple operations (like filtering and then calculating) into a single, nested Pham command is more efficient because it allows the AI to perform the actions in a continuous process.",options:$R[393]=[$R[394]={text:"True",followup:"Correct. This structure tells the AI the operations are linked, often allowing it to keep data in active memory, which is much more efficient than writing and re-reading it between separate commands.",isRightAnswer:!0},$R[395]={text:"False",followup:"Incorrect. Sending separate commands can be less efficient as the AI might have to re-load or re-read data for each step. Chaining them is a key optimization technique.",isRightAnswer:!1}]},$R[396]={text:"The way the Pham language defines complex, multi-step AI tasks is best compared to:",options:$R[397]=[$R[398]={text:"A general goal, like 'analyze this data.'",followup:"Incorrect. This is the type of vague command that Pham is designed to avoid. It requires specificity.",isRightAnswer:!1},$R[399]={text:"A library of disconnected tools.",followup:"Incorrect. While an AI uses tools, Pham's strength is in orchestrating the sequence of how those tools are used in a coherent pipeline.",isRightAnswer:!1},$R[400]={text:"A detailed, ordered recipe with specific instructions.",followup:"Correct! This analogy highlights Pham's ability to create a clear, ordered set of instructions for a complex workflow.",isRightAnswer:!0}]}]},uuid:"3|12"},$R[401]={content:$R[402]={type:"text",text:"Mastering these advanced techniques allows you to move from simply giving an AI instructions to designing sophisticated, efficient, and collaborative AI systems. The precision of the Pham language is the key to unlocking this potential."},uuid:"3|13"}]}],version:3,formats:$R[403]=["deepdive"],isBookmarked:!1}},ssr:!0},$R[404]={i:"�_web�learn�$searchSlug�$nodeSlug�learn�ai-language-explained-11du1ol�implementing-pham-language-commands-2",u:1784629708528,s:"success",l:$R[405]={courseData:$R[21],chapter:$R[295]},ssr:!0}],lastMatchId:"�_web�learn�$searchSlug�$nodeSlug�learn�ai-language-explained-11du1ol�implementing-pham-language-commands-2",dehydratedData:$R[406]={queryStream:$R[407]=($R[408]=(e) => new ReadableStream({ start: (r) => { e.on({ next: (a) => { try { r.enqueue(a); } catch (t) {} }, throw: (a) => { r.error(a); }, return: () => { try { r.close(); } catch (a) {} } }); } }))($R[409]=($R[410]=() => { let e = [], r = [], t = !0, n = !1, a = 0, s = (l, g, S) => { for (S = 0; S < a; S++) r[S] && r[S][g](l); }, i = (l, g, S, d) => { for (g = 0, S = e.length; g < S; g++) d = e[g], !t && g === S - 1 ? l[n ? "return" : "throw"](d) : l.next(d); }, u = (l, g) => (t && (g = a++, r[g] = l), i(l), () => { t && (r[g] = r[a], r[a--] = void 0); }); return { __SEROVAL_STREAM__: !0, on: (l) => u(l), next: (l) => { t && (e.push(l), s(l, "next")); }, throw: (l) => { t && (e.push(l), s(l, "throw"), t = !1, n = !1, r.length = 0); }, return: (l) => { t && (e.push(l), s(l, "return"), t = !1, n = !0, r.length = 0); } }; })()),dehydratedQueryClient:$R[411]={mutations:$R[412]=[],queries:$R[413]=[$R[414]={dehydratedAt:1784629708528,state:$R[415]={data:null,dataUpdateCount:1,dataUpdatedAt:1784629708477,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:"success",fetchStatus:"idle"},queryKey:$R[416]=["currentUser"],queryHash:"[\"currentUser\"]"},$R[417]={dehydratedAt:1784629708528,state:$R[418]={data:null,dataUpdateCount:1,dataUpdatedAt:1784629708477,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:"success",fetchStatus:"idle"},queryKey:$R[419]=["impersonationState"],queryHash:"[\"impersonationState\"]"},$R[420]={dehydratedAt:1784629708528,state:$R[421]={data:$R[21],dataUpdateCount:1,dataUpdatedAt:1784629708528,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:"success",fetchStatus:"idle"},queryKey:$R[422]=["sequence","11du1ol"],queryHash:"[\"sequence\",\"11du1ol\"]"}]}}})($R["tsr"]);document.currentScript.remove()