mailbobg commited on
Commit
645443a
·
1 Parent(s): df02815

Upload 5 files

Browse files
Files changed (5) hide show
  1. app.py +29 -0
  2. docs/cka.txt +164 -0
  3. docs/exam.txt +58 -0
  4. files/langchain_bot.png +0 -0
  5. index.json +1 -0
app.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from llama_index import SimpleDirectoryReader, LangchainEmbedding, GPTListIndex,GPTVectorStoreIndex, PromptHelper, LLMPredictor, ServiceContext
2
+ from langchain import OpenAI
3
+ import gradio as gr
4
+ import sys
5
+ import os
6
+ os.chdir(r'/Users/bobmax/Documents/GPT/01 SourceCode/langchain-chatbot-main') # 文件路径
7
+ os.environ["OPENAI_API_KEY"] = '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'
8
+ def construct_index(directory_path):
9
+ max_input_size = 4096
10
+ num_outputs = 2000
11
+ max_chunk_overlap = 20
12
+ chunk_size_limit = 600
13
+ prompt_helper = PromptHelper(max_input_size, num_outputs, max_chunk_overlap, chunk_size_limit=chunk_size_limit)
14
+ llm_predictor = LLMPredictor(llm=OpenAI(temperature=0.7, model_name="gpt-3.5-turbo", max_tokens=num_outputs))
15
+ documents = SimpleDirectoryReader(directory_path).load_data()
16
+ service_context = ServiceContext.from_defaults(llm_predictor=llm_predictor)
17
+ index = GPTVectorStoreIndex.from_documents(documents,service_context=service_context)
18
+ index.save_to_disk('index.json')
19
+ return index
20
+ def chatbot(input_text):
21
+ index = GPTVectorStoreIndex.load_from_disk('index.json')
22
+ response = index.query(input_text, response_mode="compact")
23
+ return response.response
24
+ iface = gr.Interface(fn=chatbot,
25
+ inputs=gr.inputs.Textbox(lines=7, label="请输入,您想从知识库中获取什么?"),
26
+ outputs="text",
27
+ title="AI 本地知识库ChatBot")
28
+ index = construct_index("docs")
29
+ iface.launch(share=True)
docs/cka.txt ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Master at least 2 core CPUs & 4GB RAM
2
+ Nodes at least 1 core CPUs & 4GB RAM
3
+
4
+ //Installing runtime
5
+ https://kubernetes.io/docs/setup/cri/#docker
6
+
7
+ //Installing kubeadm, kubelet and kubectl
8
+ https://kubernetes.io/docs/setup/independent/install-kubeadm/#installing-kubeadm-kubelet-and-kubectl
9
+
10
+ //On Master
11
+ sudo kubeadm init --pod-network-cidr=<> --apiserver-advertise-address=<ip-address-of-master>
12
+ // For starting a Calico CNI: 192.168.0.0/16 or For starting a Flannel CNI: 10.244.0.0/16
13
+
14
+
15
+ //Run the following commands as normal user
16
+ mkdir -p $HOME/.kube
17
+ sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
18
+ sudo chown $(id -u):$(id -g) $HOME/.kube/config
19
+
20
+ kubectl get nodes
21
+ kubectl get pods --all-namespaces
22
+ kubectl get -o wide pods --all-namespaces
23
+
24
+ //Create POD based on Calico
25
+ kubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/rbac-kdd.yaml
26
+ kubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/kubernetes-datastore/calico-networking/1.7/calico.yaml
27
+
28
+ //Create the dashboard
29
+ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml
30
+
31
+ //enable proxy to access dashboard
32
+ kubectl proxy
33
+
34
+ //Create a service account for your dashboard
35
+ kubectl create serviceaccount dashboard -n default
36
+
37
+ //Add cluster binding rules for your roles
38
+ kubectl create clusterrolebinding dashboard-admin -n default \
39
+ --clusterrole=cluster-admin \
40
+ --serviceaccount=default:dashboard
41
+
42
+ //Get the secret key for the dashboard token password
43
+ kubectl get secrets $(kubectl get serviceaccount dashboard -o jsonpath="{.secrets[0].name}") -o jsonpath="{.data.token}" |base64 --decode
44
+
45
+ //Access the dashboard
46
+ http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/
47
+
48
+ //Node add to the cluster
49
+ sudo kubeadm join <master-ip>:<master-port> --token <token> --discovery-token-ca-cert-hash sha256:<hash>
50
+
51
+ //Cluster is up!
52
+
53
+ //On Master, deploy a NGINX app
54
+ kubectl create deployment nginx --image=nginx //create a deployment
55
+ kubectl get deployments //verify deployment
56
+ kubectl describe deployment nginx //details of deployment
57
+ kubectl create service nodeport nginx --tcp=80:80 //create service
58
+ kubectl get svc //check service
59
+ kubectl delete deployment nginx //delete deployment
60
+
61
+
62
+ //Create deplyment with yaml
63
+ apiVersion: extensions/v1beta1
64
+ kind: Deployment
65
+ metadata:
66
+ name: rss
67
+ spec:
68
+ replicas: 2
69
+ template:
70
+ metadata:
71
+ labels:
72
+ app: rss
73
+ spec:
74
+ containers:
75
+ - name: front-end
76
+ image: nginx
77
+ ports:
78
+ - containerPort: 80
79
+ - name: rss-reader
80
+ image: nickchase/rss-php-nginx:v1
81
+ ports:
82
+ - containerPort: 88
83
+
84
+
85
+ kubectl create -f deployment.yaml
86
+
87
+
88
+
89
+ // 1. Create deployment and service
90
+
91
+ // 2. 列出环境内所有的pv 并以 name字段排序
92
+ kubectl get pv --sort-by=.metadata.name
93
+
94
+ // 3. 找到一个label的所有pod,并把结果写到指定文件中
95
+ kubectl get pods -l app=nginx
96
+
97
+ // 4. 列出k8s可用的节点,不包含不可调度的 和 NoReachable的节点,并把数字写入到文件里
98
+ kubectl get nodes
99
+ https://kubernetes.io/docs/reference/kubectl/cheatsheet/
100
+
101
+ // 5. 创建一个pv,类型是hostPath
102
+ apiVersion: v1
103
+ kind: PersistentVolume
104
+ metadata:
105
+ name: pv
106
+ spec:
107
+ capacity:
108
+ storage: 1Gi
109
+ accessModes:
110
+ - ReadOnlyMany
111
+ hostPath:
112
+ path: /data
113
+
114
+ // 6. 给出一个集群,排查出集群的故障,connect refuse
115
+ 没做出来,可能是认证问题
116
+
117
+ // 7. 给出一个失联节点集群,排查节点故障,恢复集群
118
+ kubectl get nodes
119
+ kubectl describe node node1
120
+ ssh node1
121
+ kubelete service not start
122
+
123
+ //8. 创建一个pod名称为nginx,并将其调度到节点为 disk=ssd上
124
+ apiVersion: v1
125
+ kind: Pod
126
+ metadata:
127
+ name: nginx
128
+ labels:
129
+ app: nginx
130
+ spec:
131
+ containers:
132
+ - name: nginx
133
+ image: nginx
134
+ imagePullPolicy: IfNotPresent
135
+ nodeSelector:
136
+ disktype: ssd
137
+
138
+ //9. 提供一个pod的yaml,要求添加Init Container
139
+ Init Container的作用是创建一个空文件,pod的Containers判断文件是否存在,不存在则退出
140
+ https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
141
+
142
+ //10. 创建一个nginx的Workload,保证其在每个节点上运行
143
+ daemonset
144
+ https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
145
+
146
+ //11. 将deployment为nginx-app的副本数从1变成4
147
+ kubectl scale --replicas=4 deployment nginx-app
148
+
149
+ //12. 创建Secret 名为mysecret,内含有password字段,值为xx,然后 在pod里 使用ENV进行调用
150
+ https://kubernetes.io/docs/concepts/configuration/secret/
151
+
152
+ //13. TLS Bootstrapping
153
+ https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet-tls-bootstrapping/
154
+ https://mritd.me/2018/08/28/kubernetes-tls-bootstrapping-with-bootstrap-token/
155
+
156
+ //14. 使用etcd 备份功能备份etcd,提供endpoint 证书
157
+ https://kubernetes.io/docs/tasks/administer-cluster/configure-upgrade-etcd/#backing-up-an-etcd-cluster
158
+ ETCDCTL_API=3 etcdctl --endpoints https://127.0.0.1:2379 \
159
+ --cacert=ca.pem --cert=cert.pem --key=key.pem \
160
+ snapshot save snapshotdb
161
+
162
+ //15. 其他,静态pod / 更新image,然后回滚
163
+ https://kubernetes.io/docs/tasks/administer-cluster/static-pod/
164
+ https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
docs/exam.txt ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Exam Tips for
2
+ Certified Kubernetes Administrator (CKA) and Certified Kubernetes Application Developer (CKAD)
3
+ Exam Details
4
+ ● You can take the CKA exam and the CKAD exam from any qualifying computer, anywhere there is internet, almost any time. No need to go to a test center. (see Hardware Compatibility Check below)
5
+ ● The online exams consists of a set of performance-based items (problems) to be solved on the command line. CKA exam consists of 24 problems, CKAD exam consists of 19 problems.
6
+ ● The exam is expected to take 3 hours (CKA) / 2 hours (CKAD) to complete.
7
+ What You Need For Your Exam
8
+ ● Make sure your ID is ready for the exam. You may use any current, non-expired government ID that has your photo and full name in the Latin alphabet
9
+ ● Exams are delivered online and closely monitored by proctors via webcam, audio, and remote screen viewing.
10
+ ● Candidates must provide their own front-end hardware to take exams, including a computer with:
11
+ ● Chrome or Chromium browser
12
+ ● reliable internet access
13
+ ● webcam
14
+ ● microphone
15
+ Hardware Compatibility Check
16
+ ● Candidates should ​run the compatibility check tool provided​ by the Exam Proctoring Partner to verify that their hardware meets the minimum requirements.
17
+ ● The tool is located at​ h​ ttps://www.examslocal.com/ScheduleExam/Home/CompatibilityCheck​. Select “Linux Foundation” as the Exam Sponsor and “CKA” or “CKAD” as the Exam.
18
+ ● At this time, only Chrome and Chromium browsers are supported and candidates need a functioning webcam so that the proctor can see them.
19
+ Exam Results
20
+ ● Results will be emailed 36 hours from the time that the exam was completed.
21
+ ● Results will also be made available on My Portal.
22
+
23
+ Resources allowed during exam
24
+ ● Candidates may use their Chrome or Chromium browser to open one additional tab in order to access assets at​ ​https://kubernetes.io/docs/​ and its subdomain, ​https://github.com/kubernetes/ and its subdomains, or​ https://kubernetes.io/blog/​. No other tabs may be opened and no other sites may be navigated to. ​The allowed sites above may contain links that point to external sites. It is the responsibility of the candidate not to click on any links that cause them to navigate to a domain that is not allowed.
25
+ Please see the ​Candidate Handbook​ for additional information covering policies, procedures and rules during the exam.
26
+ Answers to Frequently Asked Questions (FAQ) can be found ​here
27
+ If you cannot find an answer to your question in the Candidate Handbook or FAQ, you may contact Customer Support at ​certificationsupport@cncf.io
28
+ Technical Instructions
29
+ You may access these instructions at any time while taking the exam by typing 'man lf_exam'.
30
+ 1. Root privileges can be obtained by running 'sudo −i'.
31
+ 2. Rebooting of your server IS permitted at anytime.
32
+ 3. Do not stop or tamper with the gateone process as this will END YOUR EXAM SESSION.
33
+ 4. Do not block incoming ports 8080/tcp, 4505/tcp and 4506/tcp. This includes firewall rules that are
34
+ found within the distribution's default firewall configuration files as well as interactive firewall
35
+ commands.
36
+ 5. Use Ctrl+Alt+W instead of Ctrl+W.
37
+ 5.1. Ctrl+W is a keyboard shortcut that will close the current tab in Google Chrome.
38
+ 6. Ctrl+C & and Ctrl+V are not supported in your exam terminal, nor is copy and pasting large
39
+ amounts of text. To copy and paste limited amounts of text (1−2 lines) please use;
40
+ 6.1. For Linux: select text for copy and middle button for paste (or both left and right
41
+ simultaneously if you have no middle button).
42
+ 6.2. For Mac: ⌘+C to copy and ⌘+V to paste.
43
+ 6.3. For Windows: Ctrl+Insert to copy and Shift+Insert to paste.
44
+ 6.4. In addition, you might find it helpful to use the Notepad (see top menu under 'Exam
45
+ Controls') to manipulate text before pasting to the command line.
46
+ 7. Installation of services and applications included in this exam may require modification of system
47
+ security policies to successfully complete.
48
+ 8. Only a single terminal console is available during the exam. Terminal multiplexers such as GNU
49
+ Screen and tmux can be used to create virtual consoles.
50
+ General Notes
51
+ ● The first exam item contains instructions and notes on the exam environment. Ensure you read this item thoroughly before commencing your exam.
52
+ ● You can use the question navigation features to return to the first exam item at any time.
53
+ CKA & CKAD Environment
54
+ ● Each question on this exam must be completed on a designated cluster/configuration context.
55
+ ● To minimize switching, the questions are grouped so that all questions on a given cluster appear
56
+ consecutively.
57
+ ● There are six clusters (CKA) / four clusters (CKAD) that comprise the exam environment, made
58
+ up of varying numbers of containers, as follows:
files/langchain_bot.png ADDED
index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"index_struct": {"__type__": "vector_store", "__data__": {"index_id": "d27d8b04-59b3-4ef3-b17f-37ee2039538b", "summary": null, "nodes_dict": {"fd8eb358-e95e-470e-947e-502c4a7049d0": "fd8eb358-e95e-470e-947e-502c4a7049d0", "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02": "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02"}, "doc_id_dict": {"c16ba1d6-bc6d-4feb-b9e4-a4cbf51c1f9d": ["fd8eb358-e95e-470e-947e-502c4a7049d0"], "a8a4edb9-f4f6-4853-967a-cf727a6f77ce": ["dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02"]}, "embeddings_dict": {}}}, "docstore": {"__type__": "simple", "__data__": {"docs": {"fd8eb358-e95e-470e-947e-502c4a7049d0": {"text": "Master at least 2 core CPUs & 4GB RAM\nNodes at least 1 core CPUs & 4GB RAM\n\n//Installing runtime\nhttps://kubernetes.io/docs/setup/cri/#docker\n\n//Installing kubeadm, kubelet and kubectl\nhttps://kubernetes.io/docs/setup/independent/install-kubeadm/#installing-kubeadm-kubelet-and-kubectl\n\n//On Master\nsudo kubeadm init --pod-network-cidr=<> --apiserver-advertise-address=<ip-address-of-master>\n// For starting a Calico CNI: 192.168.0.0/16 or For starting a Flannel CNI: 10.244.0.0/16\n\n\n//Run the following commands as normal user\nmkdir -p $HOME/.kube\nsudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config\nsudo chown $(id -u):$(id -g) $HOME/.kube/config\n\nkubectl get nodes\nkubectl get pods --all-namespaces\nkubectl get -o wide pods --all-namespaces\n\n//Create POD based on Calico\nkubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/rbac-kdd.yaml\nkubectl apply -f https://docs.projectcalico.org/v3.3/getting-started/kubernetes/installation/hosted/kubernetes-datastore/calico-networking/1.7/calico.yaml\n\n//Create the dashboard\nkubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended/kubernetes-dashboard.yaml\n\n//enable proxy to access dashboard\nkubectl proxy\n\n//Create a service account for your dashboard\nkubectl create serviceaccount dashboard -n default\n\n//Add cluster binding rules for your roles\nkubectl create clusterrolebinding dashboard-admin -n default \\\n --clusterrole=cluster-admin \\\n --serviceaccount=default:dashboard\n\n//Get the secret key for the dashboard token password\nkubectl get secrets $(kubectl get serviceaccount dashboard -o jsonpath=\"{.secrets[0].name}\") -o jsonpath=\"{.data.token}\" |base64 --decode\n\n//Access the dashboard\nhttp://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/\n\n//Node add to the cluster\nsudo kubeadm join <master-ip>:<master-port> --token <token> --discovery-token-ca-cert-hash sha256:<hash>\n\n//Cluster is up!\n\n//On Master, deploy a NGINX app\nkubectl create deployment nginx --image=nginx //create a deployment\nkubectl get deployments //verify deployment\nkubectl describe deployment nginx //details of deployment\nkubectl create service nodeport nginx --tcp=80:80 //create service\nkubectl get svc //check service\nkubectl delete deployment nginx //delete deployment\n\n\n//Create deplyment with yaml\napiVersion: extensions/v1beta1\nkind: Deployment\nmetadata:\n name: rss\nspec:\n replicas: 2\n template:\n metadata:\n labels:\n app: rss\n spec:\n containers:\n - name: front-end\n image: nginx\n ports:\n - containerPort: 80\n - name: rss-reader\n image: nickchase/rss-php-nginx:v1 \n ports:\n - containerPort: 88\n\n\nkubectl create -f deployment.yaml\n\n\n\n// 1. Create deployment and service\n\n// 2. \u5217\u51fa\u73af\u5883\u5185\u6240\u6709\u7684pv \u5e76\u4ee5 name\u5b57\u6bb5\u6392\u5e8f\nkubectl get pv --sort-by=.metadata.name\n\n// 3. \u627e\u5230\u4e00\u4e2alabel\u7684\u6240\u6709pod\uff0c\u5e76\u628a\u7ed3\u679c\u5199\u5230\u6307\u5b9a\u6587\u4ef6\u4e2d\nkubectl get pods -l app=nginx\n\n// 4. \u5217\u51fak8s\u53ef\u7528\u7684\u8282\u70b9\uff0c\u4e0d\u5305\u542b\u4e0d\u53ef\u8c03\u5ea6\u7684 \u548c NoReachable\u7684\u8282\u70b9\uff0c\u5e76\u628a\u6570\u5b57\u5199\u5165\u5230\u6587\u4ef6\u91cc\nkubectl get nodes\nhttps://kubernetes.io/docs/reference/kubectl/cheatsheet/\n\n// 5. \u521b\u5efa\u4e00\u4e2apv\uff0c\u7c7b\u578b\u662fhostPath\napiVersion: v1\nkind: PersistentVolume\nmetadata:\n name: pv\nspec:\n capacity:\n storage: 1Gi \n accessModes:\n - ReadOnlyMany\n hostPath:\n path: /data\n\n// 6. \u7ed9\u51fa\u4e00\u4e2a\u96c6\u7fa4\uff0c\u6392\u67e5\u51fa\u96c6\u7fa4\u7684\u6545\u969c\uff0cconnect refuse\n\u6ca1\u505a\u51fa\u6765\uff0c\u53ef\u80fd\u662f\u8ba4\u8bc1\u95ee\u9898\n\n// 7. \u7ed9\u51fa\u4e00\u4e2a\u5931\u8054\u8282\u70b9\u96c6\u7fa4\uff0c\u6392\u67e5\u8282\u70b9\u6545\u969c\uff0c\u6062\u590d\u96c6\u7fa4\nkubectl get nodes\nkubectl describe node node1\nssh node1\nkubelete service not start\n\n//8. \u521b\u5efa\u4e00\u4e2apod\u540d\u79f0\u4e3anginx\uff0c\u5e76\u5c06\u5176\u8c03\u5ea6\u5230\u8282\u70b9\u4e3a disk=ssd\u4e0a\napiVersion: v1\nkind: Pod\nmetadata:\n name: nginx\n labels:\n app: nginx\nspec:\n containers:\n - name: nginx\n image: nginx\n imagePullPolicy: IfNotPresent\n nodeSelector:\n disktype: ssd\n\n//9. \u63d0\u4f9b\u4e00\u4e2apod\u7684yaml\uff0c\u8981\u6c42\u6dfb\u52a0Init Container\nInit Container\u7684\u4f5c\u7528\u662f\u521b\u5efa\u4e00\u4e2a\u7a7a\u6587\u4ef6\uff0cpod\u7684Containers\u5224\u65ad\u6587\u4ef6\u662f\u5426\u5b58\u5728\uff0c\u4e0d\u5b58\u5728\u5219\u9000\u51fa\nhttps://kubernetes.io/docs/concepts/workloads/pods/init-containers/\n\n//10. \u521b\u5efa\u4e00\u4e2anginx\u7684Workload\uff0c\u4fdd\u8bc1\u5176\u5728\u6bcf\u4e2a\u8282\u70b9\u4e0a\u8fd0\u884c\ndaemonset\nhttps://kubernetes.io/docs/concepts/workloads/controllers/daemonset/\n\n//11. \u5c06deployment\u4e3anginx-app\u7684\u526f\u672c\u6570\u4ece1\u53d8\u62104\nkubectl scale --replicas=4 deployment nginx-app\n\n//12. \u521b\u5efaSecret \u540d\u4e3amysecret\uff0c\u5185\u542b\u6709password\u5b57\u6bb5\uff0c\u503c\u4e3axx\uff0c\u7136\u540e \u5728pod\u91cc \u4f7f\u7528ENV\u8fdb\u884c\u8c03\u7528\nhttps://kubernetes.io/docs/concepts/configuration/secret/\n\n//13. TLS Bootstrapping\nhttps://kubernetes.io/docs/reference/command-line-tools-reference/kubelet-tls-bootstrapping/\nhttps://mritd.me/2018/08/28/kubernetes-tls-bootstrapping-with-bootstrap-token/\n\n//14. \u4f7f\u7528etcd \u5907\u4efd\u529f\u80fd\u5907\u4efdetcd\uff0c\u63d0\u4f9bendpoint \u8bc1\u4e66\nhttps://kubernetes.io/docs/tasks/administer-cluster/configure-upgrade-etcd/#backing-up-an-etcd-cluster\nETCDCTL_API=3 etcdctl --endpoints https://127.0.0.1:2379 \\\n--cacert=ca.pem --cert=cert.pem --key=key.pem \\\nsnapshot save snapshotdb\n\n//15. \u5176\u4ed6\uff0c\u9759\u6001pod \uff0f \u66f4\u65b0image\uff0c\u7136\u540e\u56de\u6eda\nhttps://kubernetes.io/docs/tasks/administer-cluster/static-pod/\nhttps://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\n", "doc_id": "fd8eb358-e95e-470e-947e-502c4a7049d0", "embedding": null, "doc_hash": "a5228c177f6e5670b8af678b87d0c2945126c646008cc8dae5e2c20de9b3f77c", "extra_info": null, "node_info": {"start": 0, "end": 4939}, "relationships": {"1": "c16ba1d6-bc6d-4feb-b9e4-a4cbf51c1f9d"}, "__type__": "1"}, "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02": {"text": "Exam Tips for\nCertified Kubernetes Administrator (CKA) and Certified Kubernetes Application Developer (CKAD)\nExam Details\n\u25cf You can take the CKA exam and the CKAD exam from any qualifying computer, anywhere there is internet, almost any time. No need to go to a test center. (see Hardware Compatibility Check below)\n\u25cf The online exams consists of a set of performance-based items (problems) to be solved on the command line. CKA exam consists of 24 problems, CKAD exam consists of 19 problems.\n\u25cf The exam is expected to take 3 hours (CKA) / 2 hours (CKAD) to complete.\nWhat You Need For Your Exam\n\u25cf Make sure your ID is ready for the exam. You may use any current, non-expired government ID that has your photo and full name in the Latin alphabet\n\u25cf Exams are delivered online and closely monitored by proctors via webcam, audio, and remote screen viewing.\n\u25cf Candidates must provide their own front-end hardware to take exams, including a computer with:\n\u25cf Chrome or Chromium browser\n\u25cf reliable internet access\n\u25cf webcam\n\u25cf microphone\nHardware Compatibility Check\n\u25cf Candidates should \u200brun the compatibility check tool provided\u200b by the Exam Proctoring Partner to verify that their hardware meets the minimum requirements.\n\u25cf The tool is located at\u200b h\u200b ttps://www.examslocal.com/ScheduleExam/Home/CompatibilityCheck\u200b. Select \u201cLinux Foundation\u201d as the Exam Sponsor and \u201cCKA\u201d or \u201cCKAD\u201d as the Exam.\n\u25cf At this time, only Chrome and Chromium browsers are supported and candidates need a functioning webcam so that the proctor can see them.\nExam Results\n\u25cf Results will be emailed 36 hours from the time that the exam was completed.\n\u25cf Results will also be made available on My Portal.\n \nResources allowed during exam\n\u25cf Candidates may use their Chrome or Chromium browser to open one additional tab in order to access assets at\u200b \u200bhttps://kubernetes.io/docs/\u200b and its subdomain, \u200bhttps://github.com/kubernetes/ and its subdomains, or\u200b https://kubernetes.io/blog/\u200b. No other tabs may be opened and no other sites may be navigated to. \u200bThe allowed sites above may contain links that point to external sites. It is the responsibility of the candidate not to click on any links that cause them to navigate to a domain that is not allowed.\nPlease see the \u200bCandidate Handbook\u200b for additional information covering policies, procedures and rules during the exam.\nAnswers to Frequently Asked Questions (FAQ) can be found \u200bhere\nIf you cannot find an answer to your question in the Candidate Handbook or FAQ, you may contact Customer Support at \u200bcertificationsupport@cncf.io\nTechnical Instructions\nYou may access these instructions at any time while taking the exam by typing 'man lf_exam'.\n1. Root privileges can be obtained by running 'sudo \u2212i'.\n2. Rebooting of your server IS permitted at anytime.\n3. Do not stop or tamper with the gateone process as this will END YOUR EXAM SESSION.\n4. Do not block incoming ports 8080/tcp, 4505/tcp and 4506/tcp. This includes firewall rules that are\nfound within the distribution's default firewall configuration files as well as interactive firewall\ncommands.\n5. Use Ctrl+Alt+W instead of Ctrl+W.\n5.1. Ctrl+W is a keyboard shortcut that will close the current tab in Google Chrome.\n6. Ctrl+C & and Ctrl+V are not supported in your exam terminal, nor is copy and pasting large\namounts of text. To copy and paste limited amounts of text (1\u22122 lines) please use;\n6.1. For Linux: select text for copy and middle button for paste (or both left and right\nsimultaneously if you have no middle button).\n6.2. For Mac: \u2318+C to copy and \u2318+V to paste.\n6.3. For Windows: Ctrl+Insert to copy and Shift+Insert to paste.\n6.4. In addition, you might find it helpful to use the Notepad (see top menu under 'Exam\nControls') to manipulate text before pasting to the command line.\n7. Installation of services and applications included in this exam may require modification of system\nsecurity policies to successfully complete.\n8. Only a single terminal console is available during the exam. Terminal multiplexers such as GNU\nScreen and tmux can be used to create virtual consoles.\nGeneral Notes\n\u25cf The first exam item contains instructions and notes on the exam environment. Ensure you read this item thoroughly before commencing your exam.\n\u25cf You can use the question navigation features to return to the first exam item at any time.\nCKA & CKAD Environment\n\u25cf Each question on this exam must be completed on a designated cluster/configuration context.\n\u25cf To minimize switching, the questions are grouped so that all questions on a given cluster appear\nconsecutively.\n\u25cf There are six clusters (CKA) / four clusters (CKAD) that comprise the exam environment, made\nup of varying numbers of containers, as follows:\n", "doc_id": "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02", "embedding": null, "doc_hash": "1dd10d117c62d49d035e0e4d1fc84ffcdfa5f8db9d597d847868ecc329de474a", "extra_info": null, "node_info": {"start": 0, "end": 4699}, "relationships": {"1": "a8a4edb9-f4f6-4853-967a-cf727a6f77ce"}, "__type__": "1"}}, "ref_doc_info": {"c16ba1d6-bc6d-4feb-b9e4-a4cbf51c1f9d": {"doc_hash": "a5228c177f6e5670b8af678b87d0c2945126c646008cc8dae5e2c20de9b3f77c"}, "a8a4edb9-f4f6-4853-967a-cf727a6f77ce": {"doc_hash": "1dd10d117c62d49d035e0e4d1fc84ffcdfa5f8db9d597d847868ecc329de474a"}, "fd8eb358-e95e-470e-947e-502c4a7049d0": {"doc_hash": "a5228c177f6e5670b8af678b87d0c2945126c646008cc8dae5e2c20de9b3f77c"}, "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02": {"doc_hash": "1dd10d117c62d49d035e0e4d1fc84ffcdfa5f8db9d597d847868ecc329de474a"}}}}, "vector_store": {"__type__": "simple", "__data__": {"simple_vector_store_data_dict": {"embedding_dict": {"fd8eb358-e95e-470e-947e-502c4a7049d0": [0.011989278718829155, -0.012316073291003704, 0.021173568442463875, -0.023883242160081863, -0.008510276675224304, 0.014596827328205109, -0.04763031750917435, -0.00572571437805891, -0.014828306622803211, -0.014555977657437325, -0.007890729233622551, 0.013058168813586235, -0.026483982801437378, 0.015495512634515762, -0.004129186272621155, 0.012922004796564579, 0.0012544147903099656, -0.011465045623481274, -0.001689290045760572, -0.010620825923979282, -0.0317535474896431, 0.007822646759450436, -0.0023199014831334352, -0.016312498599290848, -0.003130079945549369, -0.002137781586498022, 0.011349305510520935, -0.01263605896383524, 0.011573976837098598, -0.018177952617406845, 0.04874686524271965, -0.01636696420609951, -0.010416579432785511, -0.00581762520596385, 0.007060125935822725, 0.008346879854798317, 0.006586954463273287, -0.014501512050628662, 0.006164844613522291, -0.00825156457722187, 0.005153823643922806, 0.00860559195280075, 0.019049404188990593, -0.009912771172821522, -0.01159440167248249, 0.025707844644784927, -0.021745460107922554, -0.02924812026321888, -0.00128505181055516, 0.009231948293745518, 0.000606357236392796, 0.009905962273478508, -0.030065106227993965, 0.010886345990002155, -0.009940003976225853, -0.009116209112107754, -0.022862007841467857, 0.012976470403373241, 0.0021343776024878025, -0.010273606516420841, 0.01943066529929638, -0.0063112215138971806, -0.0036764396354556084, 0.002192247426137328, -0.016612060368061066, 0.00505510438233614, -0.012472662143409252, 0.005657632369548082, -0.015822306275367737, -0.01964852772653103, 0.03409557417035103, 0.027573296800255775, -0.018395815044641495, -0.020234035328030586, 0.03551168367266655, -0.01579507440328598, -0.0001982894609682262, -0.01850474625825882, 0.0007344369078055024, 0.00928641390055418, 0.008966428227722645, 0.014732991345226765, -0.00519467331469059, 0.021840775385499, 0.014406196773052216, -0.000152333959704265, 0.004295988008379936, -0.004772563464939594, -0.02091485634446144, 0.005970810540020466, 0.024577680975198746, 0.003075614105910063, 0.039460454136133194, 0.013024128042161465, -0.00320156617090106, 0.044090043753385544, -0.009354496374726295, -0.0013284542364999652, -0.016911622136831284, -0.037608616054058075, -0.016979705542325974, 0.02290285751223564, -0.012465854175388813, -0.009987661615014076, -0.010001277551054955, -0.03235267102718353, 0.01828688383102417, -0.007366495672613382, 0.02697417326271534, -0.009633633308112621, -0.03823497146368027, 0.0306642297655344, 0.0017360965721309185, -0.016707375645637512, -0.019607678055763245, -0.007659249473363161, 0.00704650953412056, -0.023284118622541428, -0.0006463555619120598, -0.023747077211737633, 0.025789543986320496, 0.014596827328205109, 0.01879069209098816, -0.009688099846243858, -0.013030936010181904, -0.010859113186597824, 0.006750351749360561, -0.012867539189755917, -0.00953831896185875, -0.024632146582007408, 0.02776392735540867, 0.016040170565247536, 0.0007501809159293771, 0.02313433773815632, -0.0077341399155557156, -0.00925237312912941, -0.017102252691984177, 0.0061308033764362335, -0.0023147952742874622, -0.004326624795794487, 0.009919579140841961, 0.03679163008928299, 0.0038670699577778578, -0.018559211865067482, -0.00772052351385355, 0.0252585019916296, -8.675163553562015e-05, 0.020411048084497452, -0.011036126874387264, -0.0024237269535660744, -0.0056644403375685215, 0.000427854189183563, -0.022222034633159637, -0.0033104978501796722, -0.00019105571846012026, 0.010076167993247509, 0.008741756901144981, 0.011206332594156265, 0.005385303404182196, -0.0015097231371328235, 0.007706907112151384, 0.02776392735540867, -0.0061308033764362335, -0.010702524334192276, -0.022807542234659195, 0.02603464014828205, 0.05029914155602455, 0.00093613046919927, 0.010675291530787945, 0.0018705589463934302, 0.002673929091542959, 0.034340668469667435, -0.03202587366104126, 0.008346879854798317, 0.012710949406027794, 0.05530999228358269, -0.01380707323551178, 0.02105102129280567, -0.03357814997434616, -0.014664909802377224, -0.0029820010531693697, -0.020261267200112343, -0.008768989704549313, 0.029683846980333328, -0.011757798492908478, -0.010232756845653057, 0.04218374192714691, 0.0028271139599382877, 0.011369730345904827, -0.007965619675815105, 0.03039190173149109, 0.0272465031594038, -0.008408153429627419, -0.009225140325725079, -0.5808230042457581, 0.001002510660327971, 0.006205693818628788, -0.016775459051132202, 0.0015437642578035593, 0.02903025783598423, 0.02271222695708275, 0.008530701510608196, -0.009477044455707073, -0.02156844548881054, 0.015604443848133087, 0.009449811652302742, -0.0023794735316187143, -0.00057614577235654, -0.008993661031126976, -0.027273735031485558, -0.00035551682231016457, -0.03428620472550392, -0.011941621080040932, 0.002255223458632827, -0.00672652292996645, 0.010722949169576168, -0.023297734558582306, -0.012887964025139809, -0.02163652889430523, -0.035184890031814575, 0.007100975140929222, 0.005538488272577524, 0.014487896114587784, 0.03129058703780174, -0.04076763242483139, 0.012765415944159031, 0.014651292935013771, 0.0066992901265621185, 0.06383388489484787, -0.011519511230289936, -0.03145398572087288, 0.0019028979586437345, 0.024632146582007408, 0.07107783108949661, 0.005467001814395189, -0.0027964769396930933, 0.018273266032338142, 0.012554360553622246, -0.0062907966785132885, -0.011730565689504147, 0.007461810950189829, -0.019621293991804123, -0.015890389680862427, 0.026415899395942688, -0.001102080917917192, 0.02027488499879837, 0.014705758541822433, -0.007509468588978052, -0.0224943645298481, -0.029847243800759315, 0.037254590541124344, -0.030337436124682426, -0.0006514617125503719, 0.001001659664325416, 0.01113144215196371, 0.013296457007527351, -0.0412578247487545, -0.016489513218402863, -0.04114888980984688, 0.02190885692834854, -0.028267735615372658, -0.016625678166747093, 0.005923152901232243, -0.0035709121730178595, 0.020792309194803238, -0.0031573127489537, 0.0124590452760458, -0.016353348270058632, 0.016258032992482185, 0.03891579434275627, 0.027055872604250908, 0.0036355904303491116, -0.013956854119896889, 0.020084254443645477, -0.019376199692487717, -0.010382537730038166, -0.0076660574413836, -0.026157187297940254, -0.001428875490091741, 0.01124718226492405, -0.01192119624465704, -0.027083106338977814, 0.013180716894567013, -0.010736565105617046, 0.01929450035095215, 0.038180507719516754, -0.005000638775527477, -0.0324343666434288, 0.0034807033371180296, 0.008993661031126976, 0.00230458308942616, 0.0015778053784742951, 0.000322752253850922, 0.0006459300057031214, -0.0055963583290576935, -0.023011788725852966, -0.015835924074053764, 0.005378494970500469, 0.03466746583580971, -0.0060729337856173515, -0.019389815628528595, 0.009790223091840744, 0.031916942447423935, -0.009790223091840744, -0.03031020238995552, 0.0070873587392270565, -0.00957235973328352, 0.008646441623568535, 0.028839627280831337, -0.03992341086268425, 0.005964002106338739, 0.03984171152114868, 0.020411048084497452, 0.02047913148999214, 0.01956682838499546, 0.01444704644382, -0.0015658909687772393, -0.01248627807945013, 0.01006255205720663, 0.006386111956089735, -0.00808135885745287, -0.008666866458952427, 0.00663461210206151, -0.016598444432020187, -0.02278031036257744, 0.0021684186067432165, 0.018246034160256386, -0.01601293683052063, 0.04076763242483139, 0.012731374241411686, 0.011716949753463268, 0.006593762896955013, 0.005936769302934408, -0.03387771174311638, 0.015713375061750412, 0.007060125935822725, 0.02022041752934456, -0.022603295743465424, 0.0028049873653799295, 0.016707375645637512, -0.017728609964251518, -0.014433429576456547, 0.003056891495361924, 0.012581593357026577, 0.0003474320692475885, 0.015318498946726322, -0.0028117955662310123, 0.005388707388192415, -0.011662484146654606, -0.0010510191787034273, 0.0029445558320730925, -0.01993447355926037, -0.0075639341957867146, -0.0050380839966237545, -0.0032049703877419233, 0.02047913148999214, -0.03820773959159851, -0.00828560534864664, -0.0170886367559433, 0.007169057615101337, 0.010014894418418407, -0.004796392284333706, -0.014310881495475769, -0.02192247286438942, -0.010321264155209064, 0.003952172584831715, -0.004408323671668768, -0.013459853827953339, 0.0010833583073690534, -0.01548189576715231, -0.014174717478454113, -0.01398408692330122, -0.02569422870874405, 0.013997703790664673, 0.018450280651450157, -0.0019011958502233028, -0.02498617395758629, 0.010089784860610962, 0.04801157861948013, 0.03507595881819725, 0.030827628448605537, 0.014773841015994549, -0.025013405829668045, 0.014869156293570995, 0.00590613204985857, 0.03643760085105896, -0.004176843911409378, 0.005211693700402975, 0.019607678055763245, 0.023815158754587173, -0.002100336365401745, 0.021445898339152336, -0.01145142875611782, 0.005800604820251465, 0.024999789893627167, 0.003982809837907553, 0.02889409288764, -0.022290118038654327, 0.005678056739270687, -0.02889409288764, 0.005810817237943411, 0.010791031643748283, 0.004067912232130766, -0.006416748743504286, 0.03278839588165283, -0.005184460896998644, -0.024101104587316513, -0.0053580706007778645, 0.0234883651137352, 0.017728609964251518, -0.008911961689591408, 0.007597975432872772, -0.010865922085940838, 0.021445898339152336, -0.03237990289926529, 0.011151866987347603, 0.009191099554300308, 0.005364878568798304, -0.0015871666837483644, 0.014855539426207542, 0.015032553113996983, -0.004949577152729034, 0.000437428243458271, -0.010702524334192276, -0.03101825714111328, -0.006498447619378567, 0.028703462332487106, 0.0025581892114132643, 0.016135485842823982, 0.012213950045406818, 0.03306072577834129, 0.00672311894595623, 0.01702055335044861, -0.01309901848435402, 0.007536701392382383, 0.016040170565247536, 0.029329819604754448, -0.03480362892150879, 0.023733461275696754, 0.01821880042552948, 0.009361304342746735, 0.04398111253976822, -0.006324837915599346, -0.024169186130166054, -0.027859242632985115, 0.02034296654164791, -0.014855539426207542, 0.009640442207455635, 0.010661674663424492, -0.038398370146751404, 0.015781458467245102, 0.00860559195280075, 0.009613209404051304, 0.034476835280656815, 0.033768780529499054, -0.004677248187363148, 0.014133867807686329, -0.001778647885657847, 0.007618399802595377, -0.02653844840824604, -0.013929621316492558, -0.00924556516110897, -0.00469767302274704, -0.024822775274515152, 0.012193525210022926, -0.00925237312912941, 0.003952172584831715, 0.0020867199636995792, -0.0009574061841703951, 0.021868007257580757, 0.002042466541752219, 0.00613420782610774, 0.006593762896955013, 0.004850857891142368, -0.003261138219386339, -0.01227522362023592, 0.014555977657437325, 0.005126590840518475, 0.018341349437832832, -0.01614910177886486, -0.009082167409360409, -0.0005216799909248948, 0.011928004212677479, -0.0008850687881931663, -0.0024781927932053804, -0.0012229267740622163, 0.0036185698118060827, 0.0011276117293164134, -0.013582401908934116, -0.028376668691635132, 0.03848006948828697, -0.03406834229826927, 0.008122208528220654, 0.006644824519753456, 0.008619208820164204, 0.009374921210110188, -0.032761164009571075, -0.016707375645637512, 0.024223651736974716, 0.00925237312912941, -0.03826220706105232, -0.0016203568084165454, 0.008135824464261532, -0.008796222507953644, 0.0023301139008253813, -0.013241991400718689, -0.010886345990002155, -0.021541213616728783, 0.012043744325637817, -0.008694099262356758, -0.021255267783999443, -0.0035266587510704994, 0.024033023044466972, 0.01879069209098816, -0.016053786501288414, 0.007625208236277103, -0.00522871408611536, 0.02638866752386093, 0.0017241821624338627, 0.01515510119497776, 0.020029788836836815, 0.01309901848435402, -0.012002894654870033, -0.006287392694503069, -0.01593123935163021, -1.581049946253188e-05, -0.006106975022703409, -0.00402025505900383, -0.010471045039594173, 0.011444620788097382, -0.0036185698118060827, -0.012697333469986916, 0.03798987716436386, -0.0017301393672823906, -0.012581593357026577, -0.014392580837011337, -0.00302285049110651, 0.004854261875152588, 0.019594062119722366, -0.016135485842823982, 0.03393217548727989, 0.006556317675858736, 0.031127190217375755, 0.010082975961267948, -0.00289179221726954, 0.004095145501196384, 0.006508660037070513, 0.0022024596109986305, 0.0072371396236121655, 0.007277988828718662, 0.027355434373021126, -0.004217693116515875, -0.02960214763879776, 0.02384239248931408, 0.007945194840431213, 0.05571848526597023, 0.002781158545985818, 0.011485469527542591, 0.006576742045581341, 0.00875537283718586, 0.004575124941766262, -0.016026554629206657, 0.041884180158376694, -0.029520448297262192, -0.018940472975373268, 0.014692142605781555, -0.027654996141791344, 0.00046551215928047895, 0.025952940806746483, 0.01248627807945013, -0.015672525390982628, -0.006443982012569904, 0.02212672121822834, 0.008149441331624985, -0.023651761934161186, -0.023787926882505417, -0.003894302761182189, -0.03003787435591221, -0.028866859152913094, -0.021595679223537445, 0.0047180973924696445, -0.0034364499151706696, -0.02347474917769432, -0.025721460580825806, -0.02305263839662075, 0.020765075460076332, -0.04438960552215576, -0.012847114354372025, -0.00672311894595623, -0.006736735347658396, -0.008122208528220654, 0.019580446183681488, -0.006321433931589127, 0.006025276146829128, 0.006246543489396572, 0.012819881550967693, -0.035184890031814575, 0.02832220122218132, -0.0009046424529515207, -0.010164675302803516, 0.0013922813814133406, -0.033986642956733704, 0.01006255205720663, 0.0028713673818856478, -0.008176674135029316, 0.006266967859119177, 0.0018416239181533456, 0.0005880601238459349, -0.0003321135591249913, -0.02441428229212761, 0.006971619091928005, -0.018177952617406845, -0.0070669339038431644, 0.013187525793910027, 0.00437768641859293, 0.015236799605190754, 0.012690525501966476, -0.025095105171203613, -0.008837071247398853, -0.01480107381939888, -0.007877112366259098, -0.012220758013427258, -0.0162171833217144, -0.01160120964050293, -0.009007276967167854, 0.0001655248925089836, -0.013248799368739128, -0.014542361721396446, -0.0017905622953549027, -0.007121399976313114, -0.0052082897163927555, -0.02768222987651825, 0.005797200836241245, -0.012282031588256359, -0.01109740138053894, 0.020165951922535896, 0.0056065707467496395, 0.028975792229175568, 0.028294969350099564, -0.017878390848636627, 0.0509527325630188, 0.02938428521156311, -0.004758947063237429, 0.0569167323410511, 0.002731798915192485, -0.009490661323070526, -0.012969662435352802, 0.02674269489943981, -0.0021667166147381067, 0.017619676887989044, -0.00586868729442358, -0.027015022933483124, -0.021091870963573456, -0.011322072707116604, 0.004922344349324703, 0.03586571291089058, -0.01650312915444374, -0.01043019536882639, -0.046078044921159744, -0.006032084580510855, 0.024359816685318947, -0.0027981791645288467, 0.018273266032338142, -0.024141954258084297, -0.04602357745170593, -0.0007008213433437049, 0.02719203755259514, 0.010511893779039383, 0.010028510354459286, 0.015754224732518196, -0.024645762518048286, -0.008476235903799534, -0.002127569168806076, -0.004833837505429983, 0.015604443848133087, 0.010382537730038166, 0.03221650421619415, 0.007679673843085766, 0.028921324759721756, -0.007196290418505669, 0.014896389096975327, 0.014474279247224331, -0.00974256545305252, 0.005272967740893364, -0.023093488067388535, -0.0035743163898587227, -0.0074958521872758865, -0.013330497778952122, -0.007114591542631388, 0.02318880334496498, 0.0023896857164800167, 0.021868007257580757, -0.006413344759494066, 0.015413814224302769, -0.002697757910937071, -0.005875495262444019, -0.033687081187963486, -0.044798098504543304, -0.010307647287845612, 0.018314115703105927, -0.007298413664102554, 0.009728948585689068, -0.01857282780110836, 0.006106975022703409, -0.00537509098649025, -0.011376538313925266, 0.03532105311751366, -0.00704650953412056, 0.02754606492817402, -0.02197694033384323, 0.02034296654164791, 0.002941151848062873, 0.0205063633620739, 0.004238117951899767, 0.015100635588169098, -0.028921324759721756, 0.02818603813648224, 0.03570231422781944, 0.0348580963909626, 0.013970470987260342, -0.010886345990002155, 0.013419005088508129, -0.008088167756795883, 0.00243564136326313, -0.015904005616903305, -0.02768222987651825, 0.0055146594531834126, -0.03673716261982918, 0.00015850391355343163, -0.035184890031814575, 0.006478022783994675, -0.0015548276714980602, -0.00029105148860253394, -0.0024679803755134344, -0.027940941974520683, 0.02569422870874405, -0.023733461275696754, 0.0060627213679254055, 0.020942090079188347, -0.005232118535786867, 0.04626867547631264, 0.012425004504621029, 0.03145398572087288, 0.02583039365708828, -0.005412536207586527, 0.006025276146829128, -0.013412196189165115, 0.0032713504042476416, -0.0052763717249035835, 0.03314242139458656, 0.04637760668992996, -0.018681760877370834, 0.0004880643973592669, 0.01497808750718832, 0.008380920626223087, -0.0012195226736366749, -0.040658701211214066, 0.0022296926472336054, 0.016693759709596634, 0.01680269092321396, -0.016312498599290848, -0.010314456187188625, -0.01608102023601532, 0.011213141493499279, -0.01526403333991766, -0.020547213032841682, 0.0180826373398304, -0.013037744909524918, -0.017524361610412598, 0.029983408749103546, -0.017333732917904854, 0.02470022812485695, 0.005238926503807306, 0.004901919513940811, 0.003795583499595523, -0.0038126041181385517, -0.010988470166921616, -0.00971533264964819, -0.0030977409332990646, 0.03594740852713585, -0.007169057615101337, -0.029302585870027542, 0.015059785917401314, 0.01892685703933239, 0.0002493511128704995, -0.01113144215196371, -0.016094636172056198, 0.039596617221832275, 0.003085826523602009, 0.004231309983879328, -0.010130633600056171, -0.004976809956133366, 0.023747077211737633, -0.02519042044878006, -0.010334880091249943, -0.004176843911409378, -0.0030841242987662554, -0.004687460605055094, 0.030718695372343063, -0.01672099158167839, 0.007597975432872772, -0.018191568553447723, 0.000571039563510567, -0.01751074567437172, -0.016966087743639946, 0.004428748041391373, 0.028485599905252457, -0.034967027604579926, -0.02291647344827652, 0.012602018192410469, -0.031481217592954636, -0.0054363650269806385, -0.0064405775628983974, -0.002149695996195078, 0.00872133206576109, 0.030582532286643982, -0.03872516378760338, -0.01021233294159174, 0.015032553113996983, -0.006763968151062727, -0.029193654656410217, 0.00039381306851282716, -0.010702524334192276, 0.010484660975635052, 0.004067912232130766, 0.0056065707467496395, -0.027437133714556694, -0.0302285049110651, 0.00590613204985857, 0.015985704958438873, 0.0032917752396315336, 0.002808391349390149, 0.03123612143099308, 0.004153015092015266, 0.004929152317345142, -0.02796817384660244, -0.0089323865249753, 0.004987022373825312, -0.034395135939121246, -0.027845626696944237, -0.006665248889476061, -0.0039453646168112755, 0.024141954258084297, -0.006695886142551899, 0.02086039073765278, 0.0010220842668786645, -0.018749842420220375, -0.023216035217046738, 0.00514361122623086, -0.006872899830341339, -0.01877707615494728, -0.016952471807599068, 0.00010031489364337176, -0.020397432148456573, -0.018681760877370834, 0.006260159891098738, 0.013248799368739128, 0.008271989412605762, 0.03997787833213806, 0.022453514859080315, 0.03202587366104126, 0.01444704644382, 0.02332496829330921, -0.014052169397473335, -0.03109995648264885, -0.005041487980633974, -0.04686779901385307, -0.027015022933483124, -0.006066125351935625, 0.04362708330154419, -0.004895111545920372, 0.015400197356939316, -0.007420961745083332, -0.033687081187963486, -0.007652441039681435, -0.017183952033519745, -0.005153823643922806, 0.031916942447423935, 0.005470406264066696, 0.030065106227993965, 0.02619803696870804, 0.02455044724047184, 0.0004125356790609658, 0.024632146582007408, -0.025707844644784927, 0.012758607044816017, -0.01564529351890087, -0.015686143189668655, 0.014038553461432457, -0.016612060368061066, -0.0062805842608213425, -0.020833158865571022, 0.002032254124060273, 0.03662823140621185, -0.007039701100438833, 0.012493086978793144, -0.003312199842184782, -0.020261267200112343, -0.0015692950692027807, -0.022235652431845665, -0.004367474000900984, -0.006675461307168007, 0.00942257884889841, -0.05427514389157295, -0.00042870521428994834, 0.025721460580825806, -0.02192247286438942, 0.010328072123229504, 0.00015871666255407035, -0.0017888601869344711, 0.0036287822294980288, -0.00892557855695486, -0.0035538917873054743, -0.016761841252446175, -0.0008178376010619104, -0.02796817384660244, -0.01714310236275196, -0.008905153721570969, -0.0035368711687624454, 0.04861070215702057, 0.006556317675858736, -0.03153568133711815, 0.0013599422527477145, -0.02638866752386093, -0.03464023023843765, -0.002387983724474907, -0.0010425089858472347, -0.02389685809612274, -0.00942257884889841, 0.03406834229826927, 0.009320455603301525, 0.006008255761116743, -0.020084254443645477, 0.0036185698118060827, -0.02177269198000431, 0.003693460253998637, -0.008231139741837978, 0.012942429631948471, -0.018817923963069916, -0.024741077795624733, 0.0014773841248825192, -0.032189272344112396, -0.022684995085000992, -0.02062891237437725, -0.008496660739183426, -0.028948558494448662, -0.0008276244625449181, -0.015754224732518196, 0.0019284287700429559, -0.025027023628354073, -0.009987661615014076, 0.017252033576369286, -0.015822306275367737, -0.006032084580510855, 0.24988897144794464, -0.023079872131347656, -0.009654058143496513, 0.02205863781273365, 0.011621634475886822, -0.009735756553709507, 0.006392919924110174, 0.0244823656976223, 0.007986043579876423, 0.017619676887989044, 0.007203098386526108, 0.004513850901275873, -0.013956854119896889, -0.007706907112151384, -0.0019182164687663317, -0.016053786501288414, -0.0302285049110651, -0.04580571502447128, -0.03172631189227104, -0.002721586497500539, -0.0009097486035898328, -0.007768180686980486, 0.00842857826501131, -0.029411517083644867, 0.007740947883576155, 0.002786264754831791, -0.015590827912092209, 0.02576231025159359, 0.029438750818371773, 0.023678995668888092, -0.026415899395942688, 0.011294839903712273, 0.014433429576456547, -0.02916642092168331, -0.023583680391311646, 0.0081085916608572, 0.04384494572877884, -0.0024662783835083246, 0.01142419595271349, 0.027913708239793777, 0.016843540593981743, -0.010661674663424492, 0.03436790406703949, -0.015236799605190754, -0.012649675831198692, 0.024033023044466972, -0.0011054850183427334, -0.01056636031717062, -0.019689377397298813, 0.009878729470074177, -0.014950854703783989, -0.004227905534207821, 0.013323689810931683, 0.017905622720718384, -0.009844688698649406, 0.0011063360143452883, 0.004663631785660982, 0.0031981621868908405, 0.011825880967080593, -0.004707885440438986, 0.014106635004281998, 0.016898006200790405, -0.013548361137509346, -0.002759031718596816, 0.004690864589065313, 0.0018143911147490144, -0.04142121970653534, 0.014964471571147442, 0.01749712973833084, -0.01159440167248249, -0.011526319198310375, 0.00537509098649025, -0.022385433316230774, -0.0016348242061212659, 0.0015752522740513086, -0.032134804874658585, 0.016898006200790405, 0.009504277259111404, 0.026293352246284485, 0.0549287311732769, -0.005562317091971636, -0.004078124649822712, 0.00012978172162547708, -0.012574785389006138, 0.009728948585689068, -0.04084933176636696, 0.003601549193263054, -0.02318880334496498, -0.006780988536775112, -0.002619463251903653, 0.0015250416472554207, -0.03186247870326042, -0.0014612146187573671, -0.007434578146785498, 0.025503598153591156, 0.012962854467332363, 0.0042517343536019325, 0.0178647730499506, -0.01715671829879284, -0.01010340079665184, -0.04147568717598915, 0.05827837809920311, 0.05460193753242493, 0.015100635588169098, -0.02576231025159359, -0.013493895530700684, 0.010559551417827606, -0.003901110962033272, 0.0015999320894479752, -0.027423515915870667, -0.03265223279595375, -0.03415004163980484, 0.029193654656410217, 0.000874856486916542, -0.022385433316230774, 0.029574915766716003, 0.004088337067514658, -0.004493426065891981, -0.021513979882001877, -0.008959619328379631, 0.01548189576715231, -0.022535214200615883, -0.003557295771315694, -0.012411387637257576, 0.010818264447152615, -0.015345731750130653, -0.024237269535660744, 0.014215567149221897, 0.007393728941679001, -0.0573524609208107, 0.035048723220825195, 0.001679077628068626, 0.01092719566076994, 0.017878390848636627, 0.019022170454263687, -0.0168707724660635, 0.026456749066710472, -0.0052661593072116375, -0.01427003275603056, -0.020751459524035454, -0.005786988418549299, -0.022371815517544746, 0.01757882907986641, 0.021650144830346107, 0.009402154013514519, -0.014038553461432457, -0.004857666324824095, 0.007686482276767492, -0.008653249591588974, -0.03692779317498207, -0.0319986417889595, -0.015141485258936882, -0.00365601503290236, -0.010266798548400402, 0.002387983724474907, -0.013555169105529785, -0.01757882907986641, -0.020193185657262802, -0.0034483643248677254, 0.004095145501196384, -0.053267527371644974, -0.02248074859380722, 0.004442364443093538, -0.007060125935822725, -0.014542361721396446, -0.03769031539559364, -0.17134931683540344, -0.010831880383193493, 0.02169099450111389, -0.018409430980682373, 0.025244886055588722, 0.014338115230202675, 0.005558913107961416, 0.008312839083373547, -0.01006255205720663, -0.023719843477010727, 0.019253650680184364, 0.01429726555943489, 0.00039381306851282716, -0.01998893916606903, 0.012002894654870033, 0.017469896003603935, 0.007005659863352776, 0.01593123935163021, 0.06203651428222656, 0.006467810366302729, 0.043681550770998, -0.03232543542981148, -0.01700693741440773, -0.013711757957935333, -0.013044552877545357, -0.0032696484122425318, -0.0010084678651764989, -0.014910005033016205, 8.600698492955416e-05, -0.016530362889170647, -0.010818264447152615, -0.009660866111516953, 0.012520319782197475, 0.011526319198310375, 0.027791161090135574, 0.0029905112460255623, -0.006532488856464624, 0.0027998811565339565, -0.01377303246408701, 0.029139189049601555, 0.03608357533812523, 0.03850730136036873, 0.043572619557380676, -0.009368113242089748, 0.00910940021276474, 0.026007406413555145, 0.016898006200790405, -0.014651292935013771, 0.03074592910706997, 0.006113782990723848, -0.00446619326248765, -0.010825072415173054, -0.02576231025159359, -0.016094636172056198, 0.01313305925577879, 0.02335220016539097, 0.00924556516110897, 0.0043334332294762135, 0.0011548446491360664, 0.004496830515563488, 0.0027164805214852095, -0.022017788141965866, 0.016829924657940865, 0.003451768308877945, -0.0011446322314441204, -0.01843666471540928, -0.012962854467332363, 0.03779924660921097, 0.010266798548400402, 0.003373473882675171, 0.002815199550241232, -0.025571679696440697, 0.012227565981447697, 0.0023556447122246027, 0.03493979200720787, -0.0028424325864762068, -0.02490447461605072, 0.0032441176008433104, 0.021786309778690338, 0.004381090402603149, 0.0010067657567560673, 0.01943066529929638, 0.015563595108687878, 0.0029547682497650385, -0.00695800269022584, 0.025871241465210915, -0.02086039073765278, -0.02404663898050785, 0.012479470111429691, -0.013527936302125454, 0.009905962273478508, -0.015413814224302769, -0.01736096478998661, -0.02163652889430523, -0.0005718906177207828, 0.008455811068415642, 0.025721460580825806, -0.026633763685822487, 0.007604783400893211, -0.004149611108005047, 0.02867623046040535, 0.004881495144218206, -0.014746608212590218, 0.003461980726569891, 0.04667716845870018, 0.02561252936720848, 0.014147484675049782, 0.01493723876774311, 0.01857282780110836, -0.010968045331537724, -0.025803159922361374, 0.014923621900379658, 0.03523935377597809, 0.027096722275018692, 0.009865113534033298, 0.023570062592625618, -0.018872389569878578, 0.012527127750217915, 0.002488404978066683, 0.007461810950189829, 0.005657632369548082, -0.014501512050628662, -0.02219480276107788, 0.018886007368564606, -0.003467086935415864, -0.018695376813411713, -0.08785329014062881, -0.002066295361146331, 0.011042935773730278, 0.04098549485206604, -0.028866859152913094, -0.00252755219116807, -0.007727331481873989, 0.022862007841467857, -0.02973831258714199, 0.029765544459223747, -0.002685843501240015, -0.008115400560200214, 0.0025190419983118773, 0.0008289010147564113, -0.028294969350099564, 0.0003306242579128593, 0.00748904375359416, -0.017987322062253952, -0.004656823817640543, 0.025735078379511833, 0.012602018192410469, -0.019948089495301247, -0.0025905282236635685, -0.021840775385499, -0.016952471807599068, 0.0041734399273991585, -0.023284118622541428, 0.016053786501288414, 0.00306880590505898, 0.011526319198310375, 0.0005463598063215613, -0.0035981452092528343, -0.01245223730802536, 0.014583210460841656, 0.00854431837797165, -0.023883242160081863, -0.030854860320687294, -0.02982001006603241, 0.03303349018096924, -0.016693759709596634, -0.009558742865920067, 0.0082175238057971, 0.011410579085350037, -0.019376199692487717, -0.02711033821105957, -0.0016152505995705724, -0.03722735494375229, 0.023229653015732765, -0.014147484675049782, -0.000667631218675524, -0.017524361610412598, -0.015400197356939316, -0.028621762990951538, 0.019798308610916138, 0.008591976016759872, -0.011138251051306725, 0.025503598153591156, 0.0282405037432909, -0.01444704644382, -0.010722949169576168, 0.011308455839753151, 0.020247651264071465, -0.024291735142469406, 0.009545126929879189, -0.0072575644589960575, -0.019948089495301247, -0.015087018720805645, 0.03235267102718353, -0.018981322646141052, 0.0013744097668677568, -0.031562916934490204, -0.001390579272992909, -0.018763458356261253, 0.007992852479219437, -0.028512831777334213, 0.0007391175604425371, -0.016625678166747093, -0.027668612077832222, 0.015754224732518196, 0.012785839848220348, -0.014855539426207542, -0.02126888372004032, -0.009327263571321964, -0.0302285049110651, 0.024141954258084297, 0.028975792229175568, 0.014024936594069004, -0.0228347759693861, 0.004176843911409378, -0.058605171740055084, -0.0032492238096892834, -5.933923603151925e-06, 0.015468279831111431, 0.006655036471784115, -0.012152675539255142, -0.0030432750936597586, -0.006055912934243679, 0.015672525390982628, 0.010648058727383614, 0.034340668469667435, -0.02099655568599701, 0.003649206832051277, -0.07690567523241043, 0.016707375645637512, 0.01657121069729328, -0.01737458072602749, -0.02263052947819233, -0.00528318015858531, 0.0050176591612398624, -0.031127190217375755, -0.014692142605781555, 0.028294969350099564, -0.042374372482299805, 0.0009046424529515207, -0.008101783692836761, 0.005398919805884361, -0.03224373608827591, -0.003172631375491619, 0.007557126227766275, -0.004101953469216824, -0.011839497834444046, 0.022249268367886543, -0.007550317794084549, 0.009027701802551746, 0.012397771701216698, 0.010988470166921616, -0.003761542495340109, -0.008197098970413208, -0.0016314201056957245, 0.02540828287601471, 0.0058244336396455765, -0.017919238656759262, 0.006324837915599346, 0.0044798096641898155, 0.005007447209209204, -0.006243139039725065, 0.017674142494797707, -0.011172291822731495, 0.01550912857055664, 0.01828688383102417, -0.013432621024549007, 0.02106463722884655, -0.016911622136831284, -0.02946598269045353, -0.004486618097871542, -0.023883242160081863, -0.036546532064676285, -0.0126292509958148, -0.011478661559522152, 0.016489513218402863, 0.011928004212677479, -0.002488404978066683, 0.03145398572087288, -0.0072575644589960575, -0.008551126345992088, -0.010668483562767506, 0.0028373263776302338, -0.018395815044641495, 0.005715501960366964, 0.004830433055758476, -0.02269861102104187, -0.02335220016539097, 0.04825667664408684, 0.012220758013427258, 0.03706395998597145, -0.01700693741440773, 0.0208467748016119, 0.015073402784764767, -0.0190766379237175, 0.015413814224302769, 0.01943066529929638, -0.060021281242370605, -0.023992173373699188, 0.005422748625278473, -0.0019301308784633875, -0.0001419088657712564, -0.013201141729950905, -0.015536361373960972, -0.0364103689789772, 0.0025888262316584587, 0.00010520830255700275, 0.014583210460841656, 0.008013277314603329, 0.0024577679578214884, -0.0089323865249753, 0.0005038083763793111, 0.010266798548400402, 0.0070873587392270565, 0.0011233565164729953, 0.011853113770484924, 0.013827498070895672, -0.008142633363604546, -0.026511214673519135, 0.003894302761182189, -0.009660866111516953, 0.0006625250680372119, 0.03624697029590607, 0.00906855147331953, -0.01095442846417427, 0.013248799368739128, 0.03627420589327812, 0.003952172584831715, 0.0014535553054884076, -0.01173737458884716, -0.008626016788184643, -0.016353348270058632, 0.00843538623303175, -0.00378877529874444, -0.015781458467245102, -0.003795583499595523, -0.0017956685042008758, 0.0036321862135082483, -0.014338115230202675, -0.003499425947666168, 0.03586571291089058, 0.033469218760728836, 0.01263605896383524, -0.007965619675815105, -0.007625208236277103, -0.023311350494623184, -0.021759076043963432, 0.009626825340092182, -0.0009369815234094858, 0.011846305802464485, 0.008203906938433647, 0.012200333178043365, 0.021786309778690338, 0.021445898339152336, 0.016326116397976875, -0.015291266143321991, 0.02461852878332138, -0.010641250759363174, 0.0013590912567451596, -0.011076976545155048, -0.02911195531487465, -0.03455853462219238, -0.01963491179049015, 0.013255607336759567, 0.003611761610955, -0.010559551417827606, 0.003894302761182189, 0.07320199906826019, 0.0068694958463311195, -0.014787457883358002, 0.012036935426294804, -0.00437428243458271, 0.020438281819224358, -0.012847114354372025, -0.01821880042552948, -0.02355644665658474, -0.04659546911716461, 0.025421898812055588, -0.014923621900379658, -0.0008625165792182088, -0.008803030475974083, -0.0059844269417226315, 0.0007940088398754597, -0.011036126874387264, 0.030119571834802628, 0.008707715198397636, -0.0076456330716609955, 0.012697333469986916, -0.010096592828631401, 0.01409301906824112, 0.013718566857278347, -0.0062227146700024605, -0.0033258162438869476, 0.027695845812559128, 0.004438960459083319, -0.010076167993247509, -0.04414450749754906, 0.017755841836333275, 0.01359601877629757, -0.05558232218027115, -0.02704225666821003, -0.01497808750718832, 0.015127868391573429, 0.0025837200228124857, 0.004956385586410761, 0.035756781697273254, -0.013235182501375675, 0.024958940222859383, -0.012084593065083027, -0.008803030475974083, -0.026987791061401367, 0.0038296247366815805, -0.0018433260265737772, 0.002056082943454385, 0.00022552233713213354, 0.0015948258806020021], "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02": [0.028243685141205788, -0.012018589302897453, 0.02792956307530403, -0.03744883090257645, -0.026673074811697006, 0.019366318359971046, -0.024242041632533073, -0.05244475603103638, -0.03220435604453087, -0.003211217001080513, 0.023340648040175438, 0.0011523505672812462, -0.0058454046957194805, 0.011922987177968025, -0.010646011680364609, 0.0011369858402758837, 0.009799247607588768, -0.018137143924832344, -0.003704593749716878, -0.03255945071578026, -0.02741057798266411, 0.014804717153310776, -0.002663210267201066, -0.00485523696988821, -0.019093168899416924, 0.012175650335848331, 0.002297872444614768, -0.008733963593840599, -0.0019478992326185107, -0.009252947755157948, 0.020281370729207993, 0.011424488388001919, -0.026290664449334145, -0.017809364944696426, -0.01617046631872654, 0.02529366873204708, -0.00724529754370451, -0.02985526993870735, 0.022944580763578415, -0.007982801645994186, 0.013261420652270317, 0.0018352249171584845, 0.01595194637775421, -0.03381593897938728, 0.012400999665260315, 0.022220732644200325, -0.020691094920039177, -0.019789699465036392, -0.0243376437574625, 0.02563510462641716, 0.014517909847199917, 0.000678606447763741, -0.0311390720307827, 0.01641630008816719, -0.0055107963271439075, 0.00334096304140985, 8.175820767064579e-06, 0.004735733848065138, -0.011943473480641842, -0.011998103000223637, -0.02790224738419056, 0.0025983371306210756, 0.0058761341497302055, 0.013957953080534935, -0.005893206223845482, -0.005445923190563917, 0.0012667319970205426, 0.024146439507603645, -0.014272075146436691, -0.012421485036611557, 0.04001643881201744, 0.029500175267457962, 0.019502893090248108, -0.0077028232626616955, 0.02960943430662155, -0.01330239325761795, -0.017891310155391693, -0.0032743827905505896, 0.00395042821764946, 0.004817679058760405, 0.012694635428488255, -0.018738074228167534, -0.0024890771601349115, 0.04195580258965492, -0.005763459950685501, 0.00760722067207098, 0.020786697044968605, -0.016020232811570168, -0.00017765404481906444, -0.006818500813096762, 0.020090164616703987, 0.00838569737970829, 0.03733957186341286, 0.032040465623140335, -0.005602984689176083, 0.016102178022265434, 0.008850052021443844, 0.015282729640603065, -0.01168398093432188, -0.034935854375362396, -0.009007113054394722, 0.022562170401215553, -0.009724131785333157, -0.014121842570602894, -0.025853624567389488, -0.03438955545425415, 0.009976794943213463, -0.012004932388663292, 0.027711043134331703, -0.007047263905405998, -0.027874933555722237, 0.017877651378512383, 0.002765641314908862, -0.030947867780923843, -0.004250893369317055, -0.018615156412124634, 0.008372040465474129, -0.04542480409145355, -0.004175777081400156, -0.02876267023384571, 0.009136859327554703, 0.02179735153913498, 0.019980905577540398, -0.022193418815732002, 0.00922563299536705, 0.013985267840325832, -0.02384597435593605, -0.019147798418998718, 0.001723404275253415, -0.026987196877598763, -0.004896209575235844, 0.006989219691604376, -0.003523631952702999, 0.014340362511575222, -0.004780120681971312, -0.014299389906227589, -0.020404286682605743, -0.00344510143622756, -0.005725902039557695, -0.042474787682294846, 0.024856628850102425, 0.041518762707710266, 0.0024156682193279266, 0.0005710537079721689, -0.03916967660188675, 0.00963535811752081, 0.019680440425872803, 0.014640827663242817, 0.0029346528463065624, 0.015897316858172417, 0.003981157671660185, 0.0030183049384504557, -0.013677974231541157, -0.005732730496674776, 0.013541399501264095, 0.007054092828184366, -0.0074228448793292046, 0.005783946253359318, 0.0015851221978664398, -0.01868344284594059, 0.0009005406172946095, 0.024733711034059525, -0.001041383482515812, -0.02264411561191082, 0.0020469159353524446, 0.022234391421079636, 0.01401258260011673, 0.016566533595323563, -0.005138630047440529, -0.011513262055814266, 0.005742973648011684, 0.01491397712379694, -0.03460807353258133, 0.02444690465927124, 0.002577850827947259, 0.020103823393583298, -0.012599032372236252, 0.014586197212338448, -0.020144794136285782, -0.02563510462641716, 0.013281906954944134, 0.0026802821084856987, 0.012974613346159458, 0.04302108660340309, -0.017945939674973488, 0.008652018383145332, 0.00045709905680269003, 0.03987986594438553, -0.008358382619917393, 0.006456577684730291, 0.029527489095926285, 0.02791590616106987, -0.012086876668035984, -0.014927634969353676, -0.6166629195213318, -0.0047630490735173225, 0.01714014820754528, -0.02802516520023346, 0.004080174490809441, 0.016102178022265434, 0.02635895274579525, 0.005247890017926693, -0.028298314660787582, 0.033706679940223694, 0.01629338413476944, -0.007293098606169224, 0.0035543611738830805, -0.015173469670116901, -0.03477196395397186, -0.026659416034817696, -0.0029636749532073736, -0.025730706751346588, 0.0011139388661831617, 0.0037899529561400414, -0.0030422054696828127, -0.004667446482926607, -0.01216882187873125, -0.011581550352275372, -0.01989896036684513, -0.023777686059474945, 0.0061697703786194324, -0.02900850400328636, 0.008658847771584988, 0.01750889979302883, -0.017713762819767, 0.003390471450984478, 0.007655022200196981, 0.004127975553274155, 0.04577989876270294, -0.011868356727063656, -0.024720054119825363, -0.00971047393977642, 0.00886370986700058, 0.04110904037952423, -0.0188200194388628, -0.0036089911591261625, 0.030019158497452736, 0.01533735916018486, -0.024720054119825363, 0.016457272693514824, -0.005176187958568335, -0.003537289332598448, -0.023176757618784904, -0.0018540039891377091, 0.0004122854152228683, -0.005507382098585367, 0.002632480813190341, -0.02070475183427334, -0.007265783846378326, -0.01678505353629589, 0.02394157648086548, -0.01760450191795826, -0.024610793218016624, 0.03679327294230461, 0.012858524918556213, 0.030811293050646782, -0.03701179102063179, -0.02597654238343239, -0.023777686059474945, 0.01795959658920765, -0.0015492712846025825, -0.021483229473233223, -0.0017012108583003283, -0.019926276057958603, 0.01288583967834711, 0.005971736740320921, -0.01570611074566841, -0.021865637972950935, 0.013179476372897625, 0.021715406328439713, 0.02060914970934391, -0.010946476832032204, -0.0027314976323395967, 0.0023012866731733084, 0.02205684408545494, 0.0004745977057609707, -0.0188200194388628, -0.008774936199188232, 0.020281370729207993, -0.012380513362586498, -0.03272334113717079, -0.020090164616703987, 0.004039201885461807, -0.001795959658920765, 0.018874648958444595, 0.028298314660787582, -0.01210053451359272, -0.044741932302713394, 0.0008356675389222801, 0.0105435810983181, -0.016484588384628296, 0.010113369673490524, -0.021988555788993835, 0.010208972729742527, -0.003305112011730671, -0.008843223564326763, -0.016853339970111847, -0.00010707257024478167, 0.0507512241601944, 0.004479655995965004, -0.022930921986699104, 0.008692990988492966, 0.04263867810368538, -0.009444152936339378, -0.01772741973400116, 0.007108722347766161, -0.02157883159816265, 0.009334892965853214, 0.005404951050877571, -0.02418741211295128, 0.019980905577540398, 0.042584046721458435, 0.024774683639407158, -0.029418230056762695, 0.02502051740884781, -0.0023576237726956606, 0.0009679744835011661, -0.019612152129411697, 0.0029619678389281034, -0.005288862157613039, -0.0025368784554302692, -0.025662420317530632, 0.0014587905025109649, 0.0021834908984601498, -0.025334641337394714, -0.0011753975413739681, -0.0002699487959034741, -0.0069243465550243855, 0.011998103000223637, 0.02600385807454586, 0.0033802282996475697, -0.019093168899416924, -0.0037865384947508574, -0.037667352706193924, -0.006384875625371933, -0.0032282888423651457, -0.0018796117510646582, -0.011035250499844551, -0.009143688715994358, 0.00281685683876276, -0.025443900376558304, -0.011963959783315659, -0.010338718071579933, 0.00773013848811388, 0.011492776684463024, 0.009526098147034645, -0.006350731942802668, 0.02215244621038437, 0.002823685761541128, -0.016703108325600624, 0.001768644666299224, -0.00928026344627142, -0.007641364820301533, -0.011526919901371002, -0.00718383863568306, 0.011882014572620392, -0.03332427144050598, 0.008167177438735962, -0.014067213051021099, 0.014340362511575222, 0.027997851371765137, 0.018983907997608185, -0.010345547460019588, -0.04037153348326683, -0.03184926137328148, -0.01413550041615963, -0.012803895398974419, 0.013309221714735031, 0.020991560071706772, -0.027287662029266357, -0.018738074228167534, 0.00422016391530633, 9.586916712578386e-05, -0.009526098147034645, 0.02192026935517788, 0.009676330722868443, 0.004950839560478926, -0.0366566963493824, 0.033133067190647125, 0.030456198379397392, 0.007354557514190674, 0.03340621665120125, -0.040535423904657364, 0.030264994129538536, -0.002005943562835455, 0.020882299169898033, 0.006121968850493431, 0.0018335178028792143, -0.005370807368308306, 0.015405646525323391, 0.02298555336892605, 0.008576902560889721, 0.013814548961818218, 0.01724940724670887, 0.012838038615882397, -0.002740033669397235, 0.03512705862522125, -0.021606145426630974, 0.014613511972129345, -0.019939932972192764, -0.0062790303491055965, 0.0003410103963688016, 0.01940729096531868, 0.01640264317393303, 0.012530745007097721, -0.023436250165104866, -0.015651481226086617, 0.012667320668697357, -0.010741614736616611, 0.0027263760566711426, -0.024856628850102425, 0.024856628850102425, -0.007170181255787611, 0.0014920806279405951, -0.006480478215962648, 0.0030661060009151697, 0.04179191216826439, -0.012967784889042377, 0.0004009753174614161, 0.028434889391064644, 0.003154879668727517, 0.021469570696353912, 0.001876197406090796, -0.02876267023384571, -0.004250893369317055, 0.004745976999402046, 0.004909866955131292, 0.009205146692693233, 0.03630160167813301, 0.026399925351142883, 0.008959311991930008, 0.009416838176548481, 0.03747614845633507, 0.004117732867598534, 0.0043362523429095745, -0.008228636346757412, 0.01294047012925148, -0.024761026725172997, 0.015323701314628124, 0.001696942956186831, -0.005200088489800692, 0.03463539108633995, -0.007545762229710817, 0.0035577756352722645, 0.009669501334428787, 0.0008117669494822621, -0.013869179412722588, -0.006695583462715149, 0.02802516520023346, 0.003414371982216835, 0.018642472103238106, 0.024624451994895935, 0.010099712759256363, 0.03021036460995674, 0.011171825230121613, 0.007129208650439978, -0.00449672807008028, -0.014053555205464363, 0.0007319559808820486, 0.00915734563022852, 0.006022952031344175, -0.02936359867453575, 0.019461920484900475, -0.010256773792207241, -0.009853878058493137, 0.0076481932774186134, -0.02649552747607231, -0.003317062510177493, -0.006296101957559586, 0.015514906495809555, -0.011062565259635448, -0.013165818527340889, 0.01485934667289257, 0.02900850400328636, -0.002031551441177726, -0.008208150044083595, 0.03452612832188606, 0.002221049042418599, 0.00355094694532454, -0.022316334769129753, 0.004930353257805109, -0.011397173628211021, -0.009491953998804092, 0.02349087968468666, -0.02900850400328636, 0.009860706515610218, 0.012305396609008312, -0.021182764321565628, -0.005978565197438002, -0.02802516520023346, 0.02025405503809452, 0.0019274130463600159, 0.014449622482061386, 0.018833676353096962, -0.002873194171115756, 0.009628528729081154, -0.010973791591823101, -0.021510543301701546, 0.02670038864016533, -0.006753627676516771, -0.03769466653466225, -0.027601784095168114, 0.026536500081419945, -0.016388986259698868, -0.00563371367752552, 0.010154342278838158, -0.029308969154953957, -0.01126059889793396, 0.014845689758658409, 0.005203503184020519, -0.027219373732805252, -0.005514211021363735, 0.011854699812829494, 0.007436502259224653, -0.0006824476295150816, 0.002135689603164792, 0.0003448515781201422, 0.02958211861550808, 0.050478074699640274, -0.006692169234156609, 0.020185766741633415, 0.021032530814409256, -0.029254339635372162, -0.01760450191795826, -0.017809364944696426, -0.024651765823364258, 0.02156517282128334, 0.014750087633728981, -0.029418230056762695, -0.018260061740875244, 0.016361670568585396, 0.005544940009713173, 0.018833676353096962, 0.01281755231320858, -0.0081535205245018, -0.0033529133070260286, -0.0004933767486363649, 0.023627454414963722, 0.01880636066198349, -0.003574847476556897, 0.011718125082552433, 0.010686984285712242, 0.045943789184093475, 0.0007460403139702976, 0.010495780035853386, 0.015378331765532494, 0.0121073629707098, -0.02250754088163376, -0.014231102541089058, 0.02024039812386036, 0.004052859731018543, 0.0003388764162082225, -0.00802377425134182, 0.056979041546583176, -0.0024890771601349115, 0.04370396211743355, -0.01498226448893547, -0.003858240321278572, 0.0027673484291881323, -0.01510518230497837, 0.0364108644425869, -0.01677139475941658, 0.00038902502274140716, -0.01821908913552761, 0.010755271650850773, 0.022930921986699104, -0.0210871621966362, -0.02070475183427334, 0.0020981316920369864, 0.027711043134331703, -0.02156517282128334, 0.003030255204066634, 0.014394992031157017, 0.00019814027473330498, -0.00449672807008028, -0.012831210158765316, -0.010748443193733692, -0.035782620310783386, -0.024842970073223114, -0.015992918983101845, 0.0001182226333185099, 0.0029414815362542868, -0.026058487594127655, -0.0027536910492926836, -0.04588916152715683, -0.007982801645994186, -0.041873857378959656, -0.01089867576956749, -0.004254307597875595, -0.010270430706441402, -0.023750372231006622, 0.008399355225265026, 0.0055107963271439075, 0.0002842464600689709, 0.01582902856171131, -0.01916145533323288, -0.019024880602955818, 0.010700642131268978, -0.011055736802518368, -0.003912870306521654, -0.0105435810983181, -0.01819177344441414, 0.016948942095041275, 0.033706679940223694, -0.021879296749830246, 0.005934178363531828, -0.008938825689256191, 0.00626195827499032, -0.01666213572025299, -0.011847871355712414, -0.011308399960398674, -0.04938547685742378, 0.0012556352885439992, 0.00647023506462574, 0.03067471832036972, 0.013118017464876175, -0.011007935740053654, -0.02443324588239193, -0.008494957350194454, -0.027601784095168114, 0.011888843029737473, -0.005087414290755987, 0.009881192818284035, -0.004967911168932915, -0.01939363405108452, -0.006384875625371933, -0.020923271775245667, -0.022862635552883148, -0.0005172773380763829, -0.0012829502811655402, 0.0014587905025109649, -0.017440611496567726, 0.03662938252091408, 0.018587840721011162, -3.5043995012529194e-06, 0.027629097923636436, 0.005008883774280548, 0.03116638772189617, -0.0034553445875644684, -0.015023237094283104, 0.0326140820980072, 0.006640953477472067, 0.0008681041072122753, 0.038514114916324615, -0.009689987637102604, -0.006801429204642773, -0.014517909847199917, 0.0009329771855846047, -0.00999728124588728, 0.038404855877161026, -0.03029230795800686, -0.022698745131492615, -0.016962600871920586, -0.02239827997982502, -0.011574720963835716, 0.04490582272410393, -0.0006005027098581195, -0.00449672807008028, -0.032996490597724915, 0.010379690676927567, 0.028134426102042198, -0.006938003934919834, 0.001229173969477415, -0.02777933143079281, -0.04452341049909592, -0.012346369214355946, 0.003076349152252078, 0.0254985298961401, 0.0026990610640496016, 0.0027007681783288717, -0.03332427144050598, -0.027164744213223457, -0.006658025551587343, -0.009949480183422565, 0.01906585320830345, 0.009915336035192013, 0.021742722019553185, 0.02263045869767666, 0.009526098147034645, -0.015856344252824783, 0.020773040130734444, -0.0035338751040399075, -0.012489773333072662, 0.0010200436227023602, -0.015965603291988373, 0.01510518230497837, -0.0004502703086473048, -0.0009927286300808191, 0.016593847423791885, 0.0009176124585792422, -0.007518447004258633, 0.011110366322100163, 0.009737788699567318, 0.034799281507730484, 0.0015868294285610318, -0.009020770899951458, -0.03184926137328148, -0.027970535680651665, 0.014845689758658409, 0.0029619678389281034, -0.009027599357068539, -0.0018181530758738518, -0.01711283251643181, 0.01666213572025299, 0.017686447128653526, 0.005234232172369957, 0.007825740613043308, -0.021292023360729218, 0.005080585367977619, -0.009778761304914951, 0.012967784889042377, 0.02694622427225113, 0.01690796948969364, -0.011765926145017147, -0.004267964977771044, -0.02361379750072956, 0.019106825813651085, 0.014381335116922855, 0.02156517282128334, 0.01570611074566841, 0.026427239179611206, 0.01455888245254755, -0.02346356399357319, 0.01953020878136158, -0.020295027643442154, -0.0030900067649781704, -0.007409187499433756, -0.024269357323646545, 0.007299927528947592, -0.031111758202314377, 1.493787749495823e-05, 0.017713762819767, -0.026386266574263573, 0.01965312473475933, 0.03176731616258621, 0.018779046833515167, -0.0011958838440477848, -0.018724415451288223, 0.008945655077695847, -0.006507792975753546, 0.03452612832188606, -0.00963535811752081, 0.020759381353855133, 0.014845689758658409, 0.018615156412124634, 0.01173861138522625, -0.0022790932562202215, 0.007149694953113794, -0.0007635389338247478, 0.02528000995516777, 0.047719262540340424, -0.00880225095897913, 0.011001106351613998, 0.002367866924032569, -0.00010541873780312017, -0.022302677854895592, -0.027765672653913498, 0.04012570157647133, 0.001304290140978992, 0.009724131785333157, -0.019366318359971046, 0.006019537802785635, -0.03318769484758377, 0.006384875625371933, -0.006873130798339844, -0.01365748792886734, -0.0010354083497077227, -0.023094812408089638, 0.002789541846141219, 0.039005786180496216, -0.03520900383591652, 0.004028959199786186, 0.019106825813651085, 0.006456577684730291, 0.006176598835736513, 0.0073135849088430405, -0.03428029641509056, 0.003127564676105976, 0.010816730558872223, 0.016935285180807114, 0.007573076989501715, -0.015583193860948086, 0.008419841527938843, 0.02179735153913498, -0.013746261596679688, -0.02252119779586792, -0.01084404531866312, 0.024255698546767235, -0.001795959658920765, -0.012926812283694744, 0.009184660390019417, -0.00887053832411766, 0.005056684836745262, 0.008290095254778862, 0.0010234579676762223, 0.0133638521656394, -0.014394992031157017, 0.010202143341302872, 0.008822737261652946, 0.0008062185952439904, -0.015719769522547722, -0.03990717977285385, -0.014545224606990814, 0.008774936199188232, -0.019980905577540398, -0.023149441927671432, 0.021251050755381584, -0.033105749636888504, -0.02502051740884781, 0.009252947755157948, -0.02827100083231926, -0.023272359743714333, 0.02192026935517788, 0.016566533595323563, -0.0022534856107085943, 0.012558060698211193, -0.0027195473667234182, 0.020650122314691544, 0.013275078497827053, 0.0077506243251264095, -0.012148335576057434, 0.02526635304093361, -0.005340077914297581, -0.0014161107828840613, 0.0240918081253767, -0.0027075971011072397, -0.030374253168702126, -0.02313578501343727, 0.006514621898531914, 0.013418481685221195, 0.002265435876324773, -0.008897853083908558, 0.018423952162265778, 0.04179191216826439, -0.004527457524091005, -0.005862476769834757, -0.030346939340233803, 0.00019291201897431165, -0.030592773109674454, -0.01942094787955284, 0.028189055621623993, 0.00667851185426116, 0.0026171160861849785, -0.009594385512173176, 0.005070342682301998, 0.014995922334492207, -0.023053839802742004, -0.02349087968468666, -0.007054092828184366, 0.009539755061268806, -0.004950839560478926, -0.012995099648833275, -0.0128107238560915, -0.025006860494613647, -0.010953305289149284, 0.007258954923599958, -0.0015561000909656286, 0.018232746049761772, 0.01593828946352005, -0.0070336065255105495, -0.002425911370664835, 0.03990717977285385, 0.0028544149827212095, 0.00563371367752552, -0.02431032806634903, -0.016348013654351234, -0.03796781599521637, 0.0028902660124003887, -0.018956594169139862, 0.02131933905184269, -0.015132497064769268, -0.00928026344627142, -0.02193392626941204, -0.03824096545577049, -0.026686731725931168, 0.01365065947175026, 0.0010618696687743068, 0.0210871621966362, 0.018123487010598183, 0.03135759383440018, 0.010407006368041039, 0.016033891588449478, -0.008119376376271248, 0.016375327482819557, -0.03657475486397743, 0.00850178673863411, 0.005688343662768602, 0.0054083652794361115, 0.007593563292175531, -0.01989896036684513, -0.027997851371765137, -0.025812651962041855, 0.015487591736018658, 0.015118839219212532, 0.012858524918556213, 0.025703392922878265, 0.010393348522484303, -0.010441149584949017, 0.00046819576527923346, -0.01690796948969364, 0.012400999665260315, 0.015774399042129517, 0.006070753559470177, -0.030237678438425064, 0.004984983243048191, 0.012640004977583885, -0.01035920437425375, 0.028653409332036972, 0.003673864295706153, 0.011875186115503311, -0.023340648040175438, 0.006057096179574728, -0.008576902560889721, -0.0070336065255105495, 0.005855647847056389, -0.002973918104544282, -0.004619645420461893, -0.002009358024224639, 0.006104897242039442, 0.02816173993051052, 0.0015842686407268047, -0.0318765789270401, 0.003998229745775461, -0.022671429440379143, -0.04206506162881851, 0.0029875754844397306, 0.001954728038981557, -0.03488122299313545, 0.003957257140427828, 0.022739717736840248, -0.0034741235431283712, -0.020909614861011505, -0.003240239107981324, 0.0011147924233227968, -0.005285447929054499, 0.013077044859528542, 0.004179191309958696, 0.008003287948668003, 0.019257057458162308, -0.00909588672220707, 0.014463280327618122, -0.015296386554837227, 0.003632891923189163, -0.009020770899951458, -0.011205969378352165, -0.030401568859815598, 0.00971047393977642, 0.005329834762960672, -0.017549872398376465, 0.015665138140320778, -0.0011685688514262438, 0.0043669817969202995, -0.005241061095148325, -0.003052448621019721, 0.2239828109741211, 0.010304574854671955, 0.0016039012698456645, 0.011479118838906288, -0.0017584016313776374, -0.014231102541089058, 0.017317695543169975, 0.030975183472037315, -0.009676330722868443, 0.03507243096828461, 0.016962600871920586, 0.004769877530634403, -0.018273718655109406, -0.003571433247998357, -0.004616231191903353, -0.00905491504818201, -0.020581834018230438, -0.036465492099523544, -0.00500205485150218, 0.025689736008644104, 0.03594650700688362, -0.008822737261652946, 0.007170181255787611, -0.005787360481917858, 0.037066422402858734, 0.002485662931576371, -0.004138218704611063, 0.009136859327554703, 0.04108172282576561, 0.004517214372754097, -0.016443615779280663, -0.014954949729144573, 0.004326009191572666, -0.014627169817686081, -0.012305396609008312, 0.009061743505299091, 0.009744618088006973, 0.0034860738087445498, 0.005186431109905243, 0.020090164616703987, -0.002033258555456996, -0.014750087633728981, 0.00428503705188632, -0.011595207266509533, -0.012510258704423904, 0.010215801186859608, -0.01420378778129816, -0.01750889979302883, -0.005179602187126875, 0.002374695846810937, -0.01229173969477415, -0.00355094694532454, 0.02720571681857109, -0.0032726756762713194, -0.006787771824747324, -0.009293920360505581, 0.0015415889210999012, -0.03018304891884327, 0.004804021678864956, 0.008262780494987965, -0.004698175936937332, 0.008959311991930008, -0.026755020022392273, 0.027492523193359375, -0.014531567692756653, 0.0057737031020224094, -0.016211438924074173, 0.013281906954944134, 0.02745155058801174, -0.0007221396663226187, -0.0035611900966614485, -0.004711833316832781, -0.018738074228167534, 0.007675508502870798, 0.003305112011730671, -0.027888590469956398, 0.02493857406079769, -0.0003548812819644809, 0.04048079624772072, 0.0013486769748851657, 0.0011660080635920167, -0.009362207725644112, 0.002630773698911071, -0.009150517173111439, -0.012530745007097721, -0.010441149584949017, 0.021401284262537956, -0.03272334113717079, -0.00395042821764946, -0.01951655000448227, -0.010038253851234913, -0.02634529396891594, -0.007975973188877106, 0.0031087857205420732, 0.02407815121114254, 0.02170174941420555, 0.004080174490809441, -0.002207391429692507, 0.0012436850229278207, -0.03195852041244507, -0.02444690465927124, 0.06331611424684525, 0.016716765239834785, 0.004520628601312637, -0.016621163114905357, -0.003414371982216835, -0.014763744547963142, 0.003902627155184746, 0.015351017005741596, -0.026645759120583534, -0.004619645420461893, -0.02119642123579979, 0.00977193284779787, -0.017563529312610626, 0.003704593749716878, 0.044741932302713394, -0.006599981337785721, -0.024883942678570747, -0.0061697703786194324, -0.008119376376271248, 0.01378040574491024, -0.0160612054169178, 2.0022757780679967e-06, -0.004964496940374374, 0.0028629510197788477, -0.02481565624475479, -0.04649008810520172, -0.01317264698445797, -0.01700357347726822, -0.038514114916324615, 0.024146439507603645, 0.001980335684493184, 0.013145332224667072, 0.013732604682445526, 0.01567879691720009, -0.016839683055877686, 0.033378902822732925, -0.0326140820980072, 0.009389523416757584, 0.0018966837087646127, 0.021742722019553185, 0.00563029944896698, 0.01229173969477415, 0.022302677854895592, -0.003834339790046215, -0.03127564862370491, 0.0059068636037409306, 0.00667851185426116, -0.02563510462641716, -0.038295596837997437, -0.03594650700688362, -0.0073067559860646725, -0.014231102541089058, -0.024774683639407158, 0.006733141839504242, -0.0069721476174890995, -0.01455888245254755, -0.01918877102434635, 0.008706648834049702, 0.013773576356470585, -0.0356733575463295, -0.02564876340329647, 0.03417103365063667, 0.0116771524772048, -0.016129493713378906, -0.024993203580379486, -0.17394177615642548, 0.01274926494807005, 0.01365065947175026, -0.02241193875670433, 0.012435142882168293, 0.017768392339348793, 0.010079226456582546, -6.78606447763741e-05, -0.01592463068664074, -0.010195314884185791, 0.0017601087456569076, -0.009266605600714684, -0.008467642590403557, 0.0047869496047496796, 0.025116121396422386, -0.00710189389064908, 0.013800892047584057, 0.028817299753427505, 0.0316307432949543, 0.005258132703602314, 0.011171825230121613, -0.027465209364891052, 0.001693528494797647, 0.007272612303495407, -0.014640827663242817, -0.012838038615882397, -0.04903038218617439, -0.021838324144482613, -0.008692990988492966, -0.011035250499844551, -0.0024924916215240955, 0.014094527810811996, 0.0005945275188423693, 0.012510258704423904, -0.012366855517029762, -0.009369037114083767, -0.011055736802518368, 0.0014903733972460032, -0.032532136887311935, 0.011089880019426346, 0.03160342574119568, 0.028680725023150444, 0.022015871480107307, -0.008399355225265026, 0.0231084693223238, 0.023299675434827805, -0.0014784231316298246, -0.006541936658322811, 0.005763459950685501, -0.02517075091600418, 0.03897847235202789, -0.001956435153260827, -0.007805254310369492, -0.005947836209088564, 0.011547406204044819, 0.015050551854074001, 0.003499731421470642, 0.027738358825445175, 0.005657614674419165, 0.010256773792207241, 0.015077866613864899, -0.02492491528391838, -0.01651190221309662, 0.004124561324715614, 0.0010541874216869473, -0.017099175602197647, -0.017085516825318336, 0.04823824763298035, 0.016388986259698868, 0.0032795043662190437, -0.001201005419716239, -0.02216610312461853, 0.03428029641509056, 0.0018693687161430717, 0.004537700209766626, -0.0006837280234321952, -0.018123487010598183, -9.336173388874158e-05, 0.018355663865804672, -0.007149694953113794, -0.0070199486799538136, 0.01951655000448227, 0.001987164607271552, 0.0018454680684953928, -0.019748728722333908, -0.015036894008517265, -0.0034348582848906517, -0.0015740254893898964, -0.009171003475785255, 0.013869179412722588, 0.02958211861550808, -0.020049192011356354, -0.0254985298961401, -0.005824918858706951, 0.006712655536830425, 0.0004805728676728904, 0.02265777252614498, -0.02455616369843483, -0.005544940009713173, -0.025935569778084755, 0.003021719167008996, -0.006098068319261074, -0.01987164467573166, -0.005370807368308306, 0.0323682464659214, 0.011984446085989475, -0.013411653228104115, 0.026563813909888268, 0.014709115028381348, 0.0023422592785209417, -0.032777972519397736, 0.014722771942615509, 0.03190389275550842, 0.018410293385386467, 0.010290917009115219, 0.02840757556259632, 0.0003862508456222713, -0.01977604255080223, -0.010762101039290428, -0.011984446085989475, 0.04097246378660202, -0.025075148791074753, -0.014476937241852283, 0.008815908804535866, -0.008331067860126495, -0.021633461117744446, -0.08451253920793533, -0.023805001750588417, 0.01698991470038891, 0.01556953601539135, 0.0005821504164487123, -0.0005876987706869841, 0.021947583183646202, 0.02768372930586338, -0.011991274543106556, 0.015351017005741596, -0.0017515728250145912, -0.0013085580430924892, 0.006354146171361208, 0.005732730496674776, -0.02563510462641716, 0.006415605079382658, 0.014517909847199917, -0.0069789765402674675, 0.016580190509557724, 0.005538111552596092, -0.008959311991930008, -0.022248048335313797, 0.00710189389064908, -0.009450981393456459, -0.0404534786939621, -0.003547532483935356, -0.02805248089134693, 0.009334892965853214, 0.006350731942802668, 0.009983623400330544, 0.0002439141971990466, -0.011117195710539818, -0.017181120812892914, -0.008515443652868271, 0.014804717153310776, -0.0054015363566577435, -0.017345009371638298, -0.026891594752669334, 0.053619299083948135, -0.013507255353033543, -0.01498226448893547, -0.012080048210918903, 0.008727135136723518, -0.02085498347878456, 0.02406449429690838, 0.005807846784591675, -0.017713762819767, -0.0018983908230438828, -0.01083721686154604, -0.038896527141332626, -0.020936928689479828, 0.0009765104041434824, -0.030401568859815598, -0.0005949542974121869, 0.013418481685221195, -0.010803072713315487, 0.016470931470394135, 0.01096696313470602, -0.006736556068062782, -0.002946603111922741, 0.01866978593170643, 0.009375865571200848, -0.006429262459278107, -0.009341721422970295, 0.0034041288308799267, 0.00880907941609621, -0.03673864156007767, 0.013404824770987034, -0.001041383482515812, 0.001436597085557878, 0.016266068443655968, -0.013582372106611729, -0.04255673289299011, 0.022835319861769676, -0.01582902856171131, -0.012503430247306824, -0.01084404531866312, -0.0024156682193279266, -0.007620878517627716, 0.03572798892855644, -0.01485934667289257, -0.009027599357068539, -0.01436767727136612, -0.013903322629630566, 0.010031425394117832, 0.0231084693223238, -0.0014041605172678828, -0.01892927847802639, 0.01174543984234333, -0.03908773139119148, 0.008460814133286476, 0.012892669066786766, -0.00038646423490718007, 0.011520091444253922, -0.028598779812455177, -0.002210805891081691, 0.029254339635372162, 0.0019922861829400063, 0.009621700271964073, 0.019557522609829903, -0.009812905453145504, 0.010045082308351994, -0.0702541172504425, 0.011950301937758923, -0.006255129352211952, -0.005374221596866846, -0.011649837717413902, 0.0042577218264341354, 0.027943219989538193, -0.01810983009636402, -0.02577167935669422, 0.020786697044968605, -0.02624969184398651, 0.012756094336509705, -0.021483229473233223, -0.00562688522040844, -0.04124561324715614, 0.009300749748945236, 0.005722487345337868, -0.005428851582109928, 0.012011760845780373, 0.009546584449708462, -0.008652018383145332, -0.0004005485097877681, 0.021483229473233223, -0.0006359267863444984, 0.0012445385800674558, -0.0006803136202506721, -0.03354278951883316, 0.012175650335848331, 0.006832158658653498, -0.00899345614016056, 0.033952515572309494, 0.011014764197170734, 0.004547943361103535, 0.019011223688721657, -0.015555879101157188, 0.01000410970300436, -0.005473238416016102, 0.01854686811566353, -0.009143688715994358, 0.038869209587574005, 0.004203091841191053, -0.02034965716302395, 0.006982390768826008, -0.036492809653282166, -0.03042888268828392, -0.004291865509003401, -0.011499605141580105, 0.008850052021443844, -0.006459991913288832, 0.01892927847802639, 0.012305396609008312, -0.007477474864572287, 0.019830672070384026, -0.012312225997447968, 0.013664317317306995, -0.023859631270170212, 0.01903853751718998, 0.013063387013971806, -0.0015740254893898964, -0.02062280662357807, 0.046080365777015686, -0.01067332737147808, 0.01843760907649994, 0.001795959658920765, 0.021974898874759674, 0.010727956891059875, -0.03499048575758934, 0.0006969586829654872, -0.009628528729081154, -0.03031962364912033, -0.021988555788993835, -0.004978154320269823, -0.004674275405704975, 0.0012616104213520885, 0.00011576855467865244, -0.007641364820301533, -0.006128797773271799, -0.007142866495996714, -0.0052103316411376, 0.01365748792886734, 0.0054322658106684685, 0.031576111912727356, -0.0013674560468643904, -0.002989282598719001, 0.0047084190882742405, -0.009239290840923786, 0.032067783176898956, 0.004903038032352924, 0.01413550041615963, 0.009608043357729912, -0.021237393841147423, 0.008795422501862049, 0.002243242459371686, 0.01078258641064167, 0.004623059649020433, 0.0028766083996742964, -0.01420378778129816, -0.018273718655109406, 0.018847333267331123, 0.016607506200671196, 0.003071227576583624, 0.009000284597277641, -0.016252411529421806, -0.004264550749212503, -0.015432961285114288, 0.017426954582333565, -0.01819177344441414, -0.03428029641509056, -0.009423666633665562, 0.013985267840325832, 0.02373671345412731, 0.007634535897523165, 0.02469273842871189, 0.023873290047049522, -0.015583193860948086, -0.0128107238560915, -0.002866365248337388, -0.006173184607177973, -0.022671429440379143, 0.018874648958444595, -0.025443900376558304, -0.00024562139878980815, 0.017099175602197647, 0.015364673919975758, 0.05042344704270363, 0.0013947709230706096, 0.041163668036460876, -0.01641630008816719, 0.021742722019553185, -0.012284910306334496, -0.014231102541089058, -0.004650374874472618, -0.006354146171361208, -0.030592773109674454, -0.019352661445736885, 0.00029214221285656095, 0.01300192903727293, 0.0003004647442139685, -0.0006269640871323645, 0.09707742929458618, 0.03463539108633995, -0.018956594169139862, 0.030155733227729797, 0.01570611074566841, 0.005200088489800692, 0.003626063000410795, -0.016744080930948257, 0.017276722937822342, -0.022097816690802574, 0.023518195375800133, -0.006801429204642773, 0.007272612303495407, -0.0245834793895483, -0.027000853791832924, -0.01629338413476944, 0.02024039812386036, 0.017454270273447037, 0.0026734531857073307, -0.021264709532260895, 0.03130296245217323, -0.015473933890461922, 0.007074578665196896, 0.01580171287059784, -0.019817015156149864, -0.016498245298862457, 0.03067471832036972, 0.0008971262723207474, -0.0021442256402224302, -0.012797066010534763, 0.014681799337267876, 0.0038548260927200317, -0.04015301540493965, -0.021974898874759674, 0.0208413265645504, -0.010017767548561096, 0.008788594044744968, -0.0003681119706016034, 0.036110397428274155, -0.018738074228167534, 0.035646043717861176, -0.009724131785333157, -0.015282729640603065, -0.023436250165104866, -0.0209642443805933, -0.0004078040656168014, 0.01161569356918335, 0.007381872273981571, -0.0035168032627552748]}, "text_id_to_doc_id": {"fd8eb358-e95e-470e-947e-502c4a7049d0": "c16ba1d6-bc6d-4feb-b9e4-a4cbf51c1f9d", "dfcf8ff4-d83e-40d3-bdfb-0a86b70fef02": "a8a4edb9-f4f6-4853-967a-cf727a6f77ce"}}}}}