Commit a7b494e229505dd4eeb2a0e0e0f28d890faca4c9
Merge branch 'master' of http://39.108.227.113:8001/zhusen/canrud-nuxt-front
# Conflicts: # nuxt.config.ts
Showing
18 changed files
with
4017 additions
and
456 deletions
components/CategoryList.vue
@@ -79,7 +79,9 @@ import { useProductListStore } from "@/stores/product_list"; | @@ -79,7 +79,9 @@ import { useProductListStore } from "@/stores/product_list"; | ||
79 | import type { CategoryRootType } from "@/type"; | 79 | import type { CategoryRootType } from "@/type"; |
80 | import { computed } from "vue"; | 80 | import { computed } from "vue"; |
81 | import { useRouter, useRoute } from "vue-router"; | 81 | import { useRouter, useRoute } from "vue-router"; |
82 | +import { useRouteQuery } from "@/stores/route_query"; | ||
82 | 83 | ||
84 | +const routeQuery = useRouteQuery(); | ||
83 | const route = useRoute(); | 85 | const route = useRoute(); |
84 | const router = useRouter(); | 86 | const router = useRouter(); |
85 | 87 | ||
@@ -91,13 +93,16 @@ watchEffect(async () => { | @@ -91,13 +93,16 @@ watchEffect(async () => { | ||
91 | productStore.updateKeyword(""); | 93 | productStore.updateKeyword(""); |
92 | const categories = route.query.categories.split(","); | 94 | const categories = route.query.categories.split(","); |
93 | const mainCategory = categories[0].trim(); // 取第一个值 | 95 | const mainCategory = categories[0].trim(); // 取第一个值 |
94 | - const subCategoryName = categories[1] ? categories[1].trim() : null; // 取第二个值(如果存在) | 96 | + const subCategoryName = ref("Not specified"); |
97 | + subCategoryName.value = categories[1] | ||
98 | + ? categories[1].trim() | ||
99 | + : "Not specified"; // 取第二个值(如果存在) | ||
95 | 100 | ||
96 | // 2. 更新选中的主分类 | 101 | // 2. 更新选中的主分类 |
97 | categoryStore.updateCategory(mainCategory); | 102 | categoryStore.updateCategory(mainCategory); |
98 | - | 103 | + routeQuery.updateCategories(mainCategory + "," + subCategoryName.value); |
99 | // 3. 如果有子分类名称,查找其对应的 ID | 104 | // 3. 如果有子分类名称,查找其对应的 ID |
100 | - if (subCategoryName) { | 105 | + if (subCategoryName.value) { |
101 | const subCategoryList = computed(() => { | 106 | const subCategoryList = computed(() => { |
102 | if (categoryStore.selectedCategory) { | 107 | if (categoryStore.selectedCategory) { |
103 | const tmp = categoryStore.list.filter( | 108 | const tmp = categoryStore.list.filter( |
@@ -111,7 +116,7 @@ watchEffect(async () => { | @@ -111,7 +116,7 @@ watchEffect(async () => { | ||
111 | 116 | ||
112 | // 4. 查找对应的子分类 ID | 117 | // 4. 查找对应的子分类 ID |
113 | const foundFuncCategory = subCategoryList.value.find( | 118 | const foundFuncCategory = subCategoryList.value.find( |
114 | - (func) => func.name === subCategoryName | 119 | + (func) => func.name === subCategoryName.value |
115 | ); | 120 | ); |
116 | 121 | ||
117 | if (foundFuncCategory) { | 122 | if (foundFuncCategory) { |
@@ -123,6 +128,7 @@ watchEffect(async () => { | @@ -123,6 +128,7 @@ watchEffect(async () => { | ||
123 | // 5. 判断 query 中是否存在 function,并查找对应的 ID | 128 | // 5. 判断 query 中是否存在 function,并查找对应的 ID |
124 | if (route.query.function) { | 129 | if (route.query.function) { |
125 | const functionName = route.query.function.trim(); | 130 | const functionName = route.query.function.trim(); |
131 | + routeQuery.updateFunction(functionName); | ||
126 | const funcCategoryList = computed(() => { | 132 | const funcCategoryList = computed(() => { |
127 | if (categoryStore.selectedCategory) { | 133 | if (categoryStore.selectedCategory) { |
128 | const tmp = categoryStore.list.filter( | 134 | const tmp = categoryStore.list.filter( |
@@ -152,15 +158,30 @@ watchEffect(async () => { | @@ -152,15 +158,30 @@ watchEffect(async () => { | ||
152 | // // 使用找到的 funcCategoryId | 158 | // // 使用找到的 funcCategoryId |
153 | // categoryStore.updateFuncCategory(funcCategoryId); | 159 | // categoryStore.updateFuncCategory(funcCategoryId); |
154 | // } | 160 | // } |
161 | + } else if (route.query.categories.includes("Energy materials")) { | ||
162 | + const defaultCategory = categoryStore.list[1]; | ||
163 | + const defaultFuncCategory = defaultCategory.productFunctions[1]; | ||
164 | + if (defaultFuncCategory) { | ||
165 | + categoryStore.updateFuncCategory(defaultFuncCategory.id); | ||
166 | + } | ||
167 | + router.push({ | ||
168 | + query: { | ||
169 | + categories: route.query.categories, | ||
170 | + function: defaultFuncCategory.name, | ||
171 | + }, | ||
172 | + }); | ||
155 | } | 173 | } |
156 | - } else if (Object.keys(route.query).length === 0) { | 174 | + } else if ( |
175 | + Object.keys(route.query).length === 0 && | ||
176 | + !route.path.includes("/products/detail") | ||
177 | + ) { | ||
157 | // 检查是否有默认的分类 | 178 | // 检查是否有默认的分类 |
158 | const defaultCategory = categoryStore.list[0]; // 假设第一个分类是默认的 | 179 | const defaultCategory = categoryStore.list[0]; // 假设第一个分类是默认的 |
159 | 180 | ||
160 | if (defaultCategory) { | 181 | if (defaultCategory) { |
161 | const defaultCategoryName = defaultCategory.categoryDisplayName; | 182 | const defaultCategoryName = defaultCategory.categoryDisplayName; |
162 | - const defaultSubCategory = defaultCategory.list[0]; // 假设第一个子分类为默认子分类 | ||
163 | - const defaultFuncCategory = defaultCategory.productFunctions[0]; // 假设第一个功能分类为默认功能分类 | 183 | + const defaultSubCategory = defaultCategory.list[1]; // 假设第一个子分类为默认子分类 |
184 | + const defaultFuncCategory = defaultCategory.productFunctions[1]; // 假设第一个功能分类为默认功能分类 | ||
164 | 185 | ||
165 | // 更新 store 和 URL | 186 | // 更新 store 和 URL |
166 | categoryStore.updateCategory(defaultCategoryName); | 187 | categoryStore.updateCategory(defaultCategoryName); |
components/Footer.vue
@@ -5,7 +5,9 @@ | @@ -5,7 +5,9 @@ | ||
5 | <v-col cols="12" lg="3" sm="12" md="6"> | 5 | <v-col cols="12" lg="3" sm="12" md="6"> |
6 | <b>Solution</b> | 6 | <b>Solution</b> |
7 | <p><router-link to="/equipment">Lab Device</router-link></p> | 7 | <p><router-link to="/equipment">Lab Device</router-link></p> |
8 | - <p><router-link to="/customize">Customized BatterTesting</router-link></p> | 8 | + <p> |
9 | + <router-link to="/customize">Customized BatterTesting</router-link> | ||
10 | + </p> | ||
9 | <p><router-link to="/pack">Pack</router-link></p> | 11 | <p><router-link to="/pack">Pack</router-link></p> |
10 | </v-col> | 12 | </v-col> |
11 | <v-col cols="12" lg="3" sm="12" md="6"> | 13 | <v-col cols="12" lg="3" sm="12" md="6"> |
@@ -16,6 +18,39 @@ | @@ -16,6 +18,39 @@ | ||
16 | <v-col cols="12" lg="3" sm="12" md="6"> | 18 | <v-col cols="12" lg="3" sm="12" md="6"> |
17 | <b>About</b> | 19 | <b>About</b> |
18 | <p><router-link to="/about">About us</router-link></p> | 20 | <p><router-link to="/about">About us</router-link></p> |
21 | + <p> | ||
22 | + <a | ||
23 | + href="https://www.linkedin.com/company/canrd?originalSubdomain=cn" | ||
24 | + rel="noopener noreferrer" | ||
25 | + >LinkedIn</a | ||
26 | + > | ||
27 | + </p> | ||
28 | + <p> | ||
29 | + <a | ||
30 | + href="https://www.amazon.com/s?me=A3A2SQ086XUS66&marketplaceID=ATVPDKIKX0DER" | ||
31 | + rel="noopener noreferrer" | ||
32 | + >Amazon</a | ||
33 | + > | ||
34 | + </p> | ||
35 | + <p> | ||
36 | + <a | ||
37 | + href="https://canrd.en.alibaba.com/company_profile.html?spm=a2700.galleryofferlist.normal_offer.d_companyName.262213a0fqshG2" | ||
38 | + rel="noopener noreferrer" | ||
39 | + >Alibaba</a | ||
40 | + > | ||
41 | + </p> | ||
42 | + <p> | ||
43 | + <a | ||
44 | + href="https://www.youtube.com/@Canrd_Tech" | ||
45 | + rel="noopener noreferrer" | ||
46 | + >Youtube</a | ||
47 | + > | ||
48 | + </p> | ||
49 | + <p> | ||
50 | + <a href="https://x.com/canrdenerge?s=11" rel="noopener noreferrer" | ||
51 | + >Twitter</a | ||
52 | + > | ||
53 | + </p> | ||
19 | </v-col> | 54 | </v-col> |
20 | <v-col cols="12" lg="3" sm="12" md="6"> | 55 | <v-col cols="12" lg="3" sm="12" md="6"> |
21 | <div class="tw-w-[250px] tw-float-left tw-mr-[8px]"> | 56 | <div class="tw-w-[250px] tw-float-left tw-mr-[8px]"> |
@@ -24,14 +59,20 @@ | @@ -24,14 +59,20 @@ | ||
24 | <p>Phone: +86 19867737979</p> | 59 | <p>Phone: +86 19867737979</p> |
25 | <p>Wechat: contactcanrd</p> | 60 | <p>Wechat: contactcanrd</p> |
26 | </div> | 61 | </div> |
27 | - <img class="tw-float-left" src="/wechat.jpg" alt="canrud-wechat" width="80" /> | 62 | + <img |
63 | + class="tw-float-left" | ||
64 | + src="/wechat.jpg" | ||
65 | + alt="canrud-wechat" | ||
66 | + width="80" | ||
67 | + /> | ||
28 | </v-col> | 68 | </v-col> |
29 | </v-row> | 69 | </v-row> |
30 | </v-container> | 70 | </v-container> |
31 | </div> | 71 | </div> |
32 | </template> | 72 | </template> |
33 | 73 | ||
34 | -<script setup lang="ts"></script> | 74 | +<script setup lang="ts"> |
75 | +</script> | ||
35 | 76 | ||
36 | <style> | 77 | <style> |
37 | b { | 78 | b { |
components/MobileCategoryList.vue
@@ -3,7 +3,9 @@ | @@ -3,7 +3,9 @@ | ||
3 | class="pr-4 tw-h-[48px] tw-leading-[48px] border-b tw-flex tw-justify-between tw-items-center" | 3 | class="pr-4 tw-h-[48px] tw-leading-[48px] border-b tw-flex tw-justify-between tw-items-center" |
4 | > | 4 | > |
5 | <span class="ml-4 tw-font-bold">{{ categoryStore.selectedCategory }}</span> | 5 | <span class="ml-4 tw-font-bold">{{ categoryStore.selectedCategory }}</span> |
6 | - <span class="ml-1 text-grey-darken-4 text-body-2" @click="drawerVis = !drawerVis" | 6 | + <span |
7 | + class="ml-1 text-grey-darken-4 text-body-2" | ||
8 | + @click="drawerVis = !drawerVis" | ||
7 | >Filter <v-icon> mdi-filter-outline </v-icon></span | 9 | >Filter <v-icon> mdi-filter-outline </v-icon></span |
8 | > | 10 | > |
9 | </div> | 11 | </div> |
@@ -16,7 +18,11 @@ | @@ -16,7 +18,11 @@ | ||
16 | touchless | 18 | touchless |
17 | class="!tw-h-[70%] bg-grey-lighten-4 tw-overflow-y-auto tw-overflow-x-hidden" | 19 | class="!tw-h-[70%] bg-grey-lighten-4 tw-overflow-y-auto tw-overflow-x-hidden" |
18 | > | 20 | > |
19 | - <div class="mb-4 pa-2 tw-bg-[#fff]" v-for="(item, index) in categoryStore.list" :key="index"> | 21 | + <div |
22 | + class="mb-4 pa-2 tw-bg-[#fff]" | ||
23 | + v-for="(item, index) in categoryStore.list" | ||
24 | + :key="index" | ||
25 | + > | ||
20 | <div class="mb-4 tw-flex tw-items-center"> | 26 | <div class="mb-4 tw-flex tw-items-center"> |
21 | <div> | 27 | <div> |
22 | <v-img | 28 | <v-img |
@@ -29,7 +35,9 @@ | @@ -29,7 +35,9 @@ | ||
29 | " | 35 | " |
30 | ></v-img> | 36 | ></v-img> |
31 | </div> | 37 | </div> |
32 | - <strong class="tw-m-0 tw-inline">{{ item.categoryDisplayName }}</strong> | 38 | + <strong class="tw-m-0 tw-inline">{{ |
39 | + item.categoryDisplayName | ||
40 | + }}</strong> | ||
33 | </div> | 41 | </div> |
34 | <div class="tw-flex tw-flex-wrap tw-justify-between"> | 42 | <div class="tw-flex tw-flex-wrap tw-justify-between"> |
35 | <template v-if="index !== 0"> | 43 | <template v-if="index !== 0"> |
@@ -43,7 +51,7 @@ | @@ -43,7 +51,7 @@ | ||
43 | : ' bg-grey-lighten-4 ') | 51 | : ' bg-grey-lighten-4 ') |
44 | " | 52 | " |
45 | :key="i" | 53 | :key="i" |
46 | - @click="handleCategoryClick(item, k.id)" | 54 | + @click="handleCategoryClick(item, k.id, k)" |
47 | > | 55 | > |
48 | {{ k.name }} | 56 | {{ k.name }} |
49 | </div> | 57 | </div> |
@@ -59,7 +67,7 @@ | @@ -59,7 +67,7 @@ | ||
59 | ' tw-w-[48%] mb-4 py-3 px-2 tw-rounded-lg tw-whitespace-nowrap tw-overflow-hidden tw-text-ellipsis' | 67 | ' tw-w-[48%] mb-4 py-3 px-2 tw-rounded-lg tw-whitespace-nowrap tw-overflow-hidden tw-text-ellipsis' |
60 | " | 68 | " |
61 | :key="i" | 69 | :key="i" |
62 | - @click="handleCategoryClick(item, k.id)" | 70 | + @click="handleCategoryClick(item, k.id, k)" |
63 | > | 71 | > |
64 | {{ k.name }} | 72 | {{ k.name }} |
65 | </div> | 73 | </div> |
@@ -71,62 +79,259 @@ | @@ -71,62 +79,259 @@ | ||
71 | </template> | 79 | </template> |
72 | 80 | ||
73 | <script setup lang="ts"> | 81 | <script setup lang="ts"> |
74 | -import { useCategoryStore } from '@/stores/category' | ||
75 | -import { useProductListStore } from '@/stores/product_list' | ||
76 | -import type { CategoryRootType } from '@/type' | ||
77 | -import { computed, ref, watchEffect } from 'vue' | ||
78 | -import { useRouter } from 'vue-router' | 82 | +import { useCategoryStore } from "@/stores/category"; |
83 | +import { useProductListStore } from "@/stores/product_list"; | ||
84 | +import type { CategoryRootType } from "@/type"; | ||
85 | +import { computed, ref, watchEffect } from "vue"; | ||
86 | +import { useRouter, useRoute } from "vue-router"; | ||
79 | 87 | ||
80 | -const router = useRouter() | 88 | +const router = useRouter(); |
89 | +const route = useRoute(); | ||
81 | 90 | ||
82 | -const categoryStore = useCategoryStore() | ||
83 | -const productStore = useProductListStore() | 91 | +const categoryStore = useCategoryStore(); |
92 | +const productStore = useProductListStore(); | ||
93 | +const routeQuery = useRouteQuery(); | ||
84 | 94 | ||
85 | -const drawerVis = ref(false) | 95 | +const drawerVis = ref(false); |
86 | 96 | ||
87 | const CATEGORY_IMG = [ | 97 | const CATEGORY_IMG = [ |
88 | - { normal: '/category/1.png', selected: '/category/1.1.png', name: 'Energy materials' }, | ||
89 | - { normal: '/category/2.png', selected: '/category/2.1.png', name: 'Laboratory consumables' }, | ||
90 | - { normal: '/category/3.png', selected: '/category/3.1.png', name: 'Low-dimensional materials' }, | ||
91 | - { normal: '/category/4.png', selected: '/category/4.1.png', name: 'Equipment' } | ||
92 | -] | 98 | + { |
99 | + normal: "/category/1.png", | ||
100 | + selected: "/category/1.1.png", | ||
101 | + name: "Energy materials", | ||
102 | + }, | ||
103 | + { | ||
104 | + normal: "/category/2.png", | ||
105 | + selected: "/category/2.1.png", | ||
106 | + name: "Laboratory consumables", | ||
107 | + }, | ||
108 | + { | ||
109 | + normal: "/category/3.png", | ||
110 | + selected: "/category/3.1.png", | ||
111 | + name: "Low-dimensional materials", | ||
112 | + }, | ||
113 | + { | ||
114 | + normal: "/category/4.png", | ||
115 | + selected: "/category/4.1.png", | ||
116 | + name: "Equipment", | ||
117 | + }, | ||
118 | +]; | ||
119 | + | ||
120 | +watchEffect(async () => { | ||
121 | + if (route.query.categories) { | ||
122 | + // 1. 提取 query.category 的内容 | ||
123 | + productStore.updateKeyword(""); | ||
124 | + const categories = route.query.categories.split(","); | ||
125 | + const mainCategory = categories[0].trim(); // 取第一个值 | ||
126 | + const subCategoryName = ref(""); | ||
127 | + subCategoryName.value = categories[1] | ||
128 | + ? categories[1].trim() | ||
129 | + : "Not specified"; // 取第二个值(如果存在) | ||
130 | + | ||
131 | + // 2. 更新选中的主分类 | ||
132 | + categoryStore.updateCategory(mainCategory); | ||
133 | + routeQuery.updateCategories(mainCategory + "," + subCategoryName.value); | ||
134 | + if (!route.query.categories.includes("Energy materials")) { | ||
135 | + // 3. 如果有子分类名称,查找其对应的 ID | ||
136 | + if (subCategoryName.value) { | ||
137 | + // if (subCategoryName.value && mainCategory !== "Energy materials") { | ||
138 | + const subCategoryList = computed(() => { | ||
139 | + if (categoryStore.selectedCategory) { | ||
140 | + const tmp = categoryStore.list.filter( | ||
141 | + (item) => | ||
142 | + item.categoryDisplayName === categoryStore.selectedCategory | ||
143 | + ); | ||
144 | + return tmp?.[0]?.list || []; | ||
145 | + } | ||
146 | + return []; | ||
147 | + }); | ||
148 | + | ||
149 | + // 4. 查找对应的子分类 ID | ||
150 | + const foundFuncCategory = subCategoryList.value.find( | ||
151 | + (func) => func.name === subCategoryName.value | ||
152 | + ); | ||
153 | + | ||
154 | + if (foundFuncCategory) { | ||
155 | + const funcCategoryId = foundFuncCategory.id; | ||
156 | + // 你可以在这里使用找到的 funcCategoryId | ||
157 | + categoryStore.updateSubCategory(funcCategoryId); | ||
158 | + } | ||
159 | + } | ||
160 | + } else { | ||
161 | + // 3. 如果有子分类名称,查找其对应的 ID | ||
162 | + if (subCategoryName.value) { | ||
163 | + // if (subCategoryName.value && mainCategory !== "Energy materials") { | ||
164 | + const subCategoryList = computed(() => { | ||
165 | + if (categoryStore.selectedCategory) { | ||
166 | + const tmp = categoryStore.list.filter( | ||
167 | + (item) => | ||
168 | + item.categoryDisplayName === categoryStore.selectedCategory | ||
169 | + ); | ||
170 | + return tmp?.[0]?.list || []; | ||
171 | + } | ||
172 | + return []; | ||
173 | + }); | ||
174 | + | ||
175 | + // 4. 查找对应的子分类 ID | ||
176 | + const foundFuncCategory = subCategoryList.value.find( | ||
177 | + (func) => func.name === subCategoryName.value | ||
178 | + ); | ||
179 | + | ||
180 | + if (foundFuncCategory) { | ||
181 | + const funcCategoryId = foundFuncCategory.id; | ||
182 | + // 你可以在这里使用找到的 funcCategoryId | ||
183 | + categoryStore.updateSubCategory(funcCategoryId); | ||
184 | + } | ||
185 | + } | ||
186 | + // 5. 判断 query 中是否存在 function,并查找对应的 ID | ||
187 | + if (route.query.function) { | ||
188 | + const functionName = route.query.function.trim(); | ||
189 | + routeQuery.updateFunction(functionName); | ||
190 | + const funcCategoryList = computed(() => { | ||
191 | + if (categoryStore.selectedCategory) { | ||
192 | + const tmp = categoryStore.list.filter( | ||
193 | + (item) => | ||
194 | + item.categoryDisplayName === categoryStore.selectedCategory | ||
195 | + ); | ||
196 | + return tmp?.[0]?.productFunctions || []; | ||
197 | + } | ||
198 | + return []; | ||
199 | + }); | ||
200 | + const foundFuncCategory = funcCategoryList.value.find( | ||
201 | + (func) => func.name === functionName | ||
202 | + ); | ||
203 | + console.log(foundFuncCategory, "functionName"); | ||
204 | + | ||
205 | + if (foundFuncCategory) { | ||
206 | + const funcCategoryId = foundFuncCategory.id; | ||
207 | + if (typeof window !== "undefined") { | ||
208 | + window.selectedFuncCategory = foundFuncCategory.id; | ||
209 | + } | ||
210 | + // 你可以在这里使用找到的 funcCategoryId | ||
211 | + categoryStore.updateFuncCategory(funcCategoryId); | ||
212 | + } | ||
213 | + // // 6. 查找对应的功能分类 ID | ||
214 | + // const foundFuncCategory = funcCategories.find( | ||
215 | + // (func) => func.name === functionName | ||
216 | + // ); | ||
217 | + | ||
218 | + // if (foundFuncCategory) { | ||
219 | + // const funcCategoryId = foundFuncCategory.id; | ||
220 | + // // 使用找到的 funcCategoryId | ||
221 | + // categoryStore.updateFuncCategory(funcCategoryId); | ||
222 | + // } | ||
223 | + } else if (route.query.categories.includes("Energy materials")) { | ||
224 | + //没有function默认为第一个 | ||
225 | + const defaultCategory = categoryStore.list[0]; | ||
226 | + const defaultFuncCategory = defaultCategory.productFunctions[1]; | ||
227 | + if (defaultFuncCategory) { | ||
228 | + categoryStore.updateFuncCategory(defaultFuncCategory.id); | ||
229 | + } | ||
230 | + } | ||
231 | + } | ||
232 | + } else if ( | ||
233 | + Object.keys(route.query).length === 0 && | ||
234 | + !route.path.includes("/products/detail") | ||
235 | + ) { | ||
236 | + // 检查是否有默认的分类 | ||
237 | + const defaultCategory = categoryStore.list[0]; // 假设第一个分类是默认的 | ||
238 | + | ||
239 | + if (defaultCategory) { | ||
240 | + const defaultCategoryName = defaultCategory.categoryDisplayName; | ||
241 | + const defaultSubCategory = defaultCategory.list[1]; // 假设第一个子分类为默认子分类 | ||
242 | + const defaultFuncCategory = defaultCategory.productFunctions[1]; // 假设第一个功能分类为默认功能分类 | ||
243 | + | ||
244 | + // 更新 store 和 URL | ||
245 | + categoryStore.updateCategory(defaultCategoryName); | ||
246 | + productStore.updatePageNo(1); | ||
247 | + | ||
248 | + if (defaultSubCategory) { | ||
249 | + categoryStore.updateSubCategory(defaultSubCategory.id); | ||
250 | + | ||
251 | + // 如果有之前的值则使用之前的值,拼接新的子分类名 | ||
252 | + const updatedCategory = | ||
253 | + defaultCategoryName + "," + defaultSubCategory.name; | ||
254 | + | ||
255 | + // 拼接设备类型到 URL | ||
256 | + router.push({ | ||
257 | + query: { | ||
258 | + categories: defaultCategoryName + "," + defaultSubCategory.name, | ||
259 | + }, | ||
260 | + }); | ||
261 | + } | ||
262 | + | ||
263 | + if (defaultFuncCategory) { | ||
264 | + categoryStore.updateFuncCategory(defaultFuncCategory.id); | ||
265 | + // 拼接功能类型到 URL | ||
266 | + router.push({ | ||
267 | + query: { | ||
268 | + categories: defaultCategoryName + "," + defaultSubCategory.name, | ||
269 | + function: defaultFuncCategory.name, | ||
270 | + }, | ||
271 | + }); | ||
272 | + } | ||
273 | + } | ||
274 | + } | ||
275 | +}); | ||
93 | 276 | ||
94 | const SEO = { | 277 | const SEO = { |
95 | - 'Energy materials': | ||
96 | - 'Energy materials,Not specified,Battery accessories,Lithium-ion batteries,Capacitors,Sodium-ion batteries,Lithium-sulfur batteries,Potassium/magnesium/aluminum/zinc batteries,Air/fuel/solar,Analytical electrodes,Complete battery accessories', | ||
97 | - 'Laboratory consumables': | ||
98 | - 'Laboratory consumables,Not specified,Glass materials,Plastic materials,Metal materials,Ceramic materials,Paper film materials,Chemical materials,Tetrafluoro materials,Safety protection,Office supplies,Tools,Others', | ||
99 | - 'Low-dimensional materials': | ||
100 | - ',Low-dimensional materialsNot specified,Zero-dimensional carbon materials,One-dimensional carbon materials,Two-dimensional carbon materials,Three-dimensional carbon materials,Inorganic nanomaterials,Organic nanomaterials,Metal nanomaterials,Others', | 278 | + "Energy materials": |
279 | + "Energy materials,Not specified,Battery accessories,Lithium-ion batteries,Capacitors,Sodium-ion batteries,Lithium-sulfur batteries,Potassium/magnesium/aluminum/zinc batteries,Air/fuel/solar,Analytical electrodes,Complete battery accessories", | ||
280 | + "Laboratory consumables": | ||
281 | + "Laboratory consumables,Not specified,Glass materials,Plastic materials,Metal materials,Ceramic materials,Paper film materials,Chemical materials,Tetrafluoro materials,Safety protection,Office supplies,Tools,Others", | ||
282 | + "Low-dimensional materials": | ||
283 | + ",Low-dimensional materialsNot specified,Zero-dimensional carbon materials,One-dimensional carbon materials,Two-dimensional carbon materials,Three-dimensional carbon materials,Inorganic nanomaterials,Organic nanomaterials,Metal nanomaterials,Others", | ||
101 | Equipment: | 284 | Equipment: |
102 | - 'Equipment,Not specified,Equipment,Accessories & fixtures,Fuel cell manufacturing and testing equipment' | ||
103 | -} | 285 | + "Equipment,Not specified,Equipment,Accessories & fixtures,Fuel cell manufacturing and testing equipment", |
286 | +}; | ||
104 | 287 | ||
105 | const handleDrawerHide = () => { | 288 | const handleDrawerHide = () => { |
106 | - productStore.updatePageNo(1) | 289 | + // productStore.updatePageNo(1); |
107 | 290 | ||
108 | - router.push({ query: { category: categoryStore.selectedCategory } }) | 291 | + // router.push({ |
292 | + // query: { | ||
293 | + // categories: categoryStore.selectedCategory, | ||
294 | + // }, | ||
295 | + // }); | ||
109 | 296 | ||
110 | - const doc = document as any | ||
111 | - const head = doc.getElementsByTagName('head') | ||
112 | - const meta = doc.createElement('meta') | ||
113 | - document.title = SEO[categoryStore.selectedCategory as keyof typeof SEO] | 297 | + const doc = document as any; |
298 | + const head = doc.getElementsByTagName("head"); | ||
299 | + const meta = doc.createElement("meta"); | ||
300 | + document.title = SEO[categoryStore.selectedCategory as keyof typeof SEO]; | ||
114 | doc | 301 | doc |
115 | .querySelector('meta[name="keywords"]') | 302 | .querySelector('meta[name="keywords"]') |
116 | - .setAttribute('content', SEO[categoryStore.selectedCategory as keyof typeof SEO]) | ||
117 | - head[0].appendChild(meta) | ||
118 | -} | 303 | + .setAttribute( |
304 | + "content", | ||
305 | + SEO[categoryStore.selectedCategory as keyof typeof SEO] | ||
306 | + ); | ||
307 | + head[0].appendChild(meta); | ||
308 | +}; | ||
119 | 309 | ||
120 | -const handleCategoryClick = (item: CategoryRootType, id: string) => { | ||
121 | - categoryStore.updateCategory(item.categoryDisplayName) | 310 | +const handleCategoryClick = ( |
311 | + item: CategoryRootType, | ||
312 | + id: string, | ||
313 | + subItem: any | ||
314 | +) => { | ||
315 | + categoryStore.updateCategory(item.categoryDisplayName); | ||
122 | 316 | ||
123 | - if (item.categoryDisplayName === 'Energy materials') { | ||
124 | - categoryStore.updateFuncCategory(id) | ||
125 | - categoryStore.updateSubCategory(item.list[0].id) | 317 | + if (item.categoryDisplayName === "Energy materials") { |
318 | + categoryStore.updateFuncCategory(id); | ||
319 | + categoryStore.updateSubCategory(item.list[0].id); | ||
320 | + router.push({ | ||
321 | + query: { | ||
322 | + categories: categoryStore.selectedCategory + "," + item.list[0].name, | ||
323 | + function: subItem.name, | ||
324 | + }, | ||
325 | + }); | ||
126 | } else { | 326 | } else { |
127 | - categoryStore.updateSubCategory(id) | 327 | + categoryStore.updateSubCategory(id); |
328 | + router.push({ | ||
329 | + query: { | ||
330 | + categories: categoryStore.selectedCategory + "," + subItem.name, | ||
331 | + }, | ||
332 | + }); | ||
128 | } | 333 | } |
129 | -} | 334 | +}; |
130 | </script> | 335 | </script> |
131 | 336 | ||
132 | <style lang="less" scoped></style> | 337 | <style lang="less" scoped></style> |
components/MobileHeader.vue
@@ -5,37 +5,87 @@ | @@ -5,37 +5,87 @@ | ||
5 | <v-layout> | 5 | <v-layout> |
6 | <v-app-bar scroll-behavior="elevate" color="white" density="default"> | 6 | <v-app-bar scroll-behavior="elevate" color="white" density="default"> |
7 | <v-app-bar-title v-if="!showSearch"> | 7 | <v-app-bar-title v-if="!showSearch"> |
8 | - <a href="/"><v-img src="/mobile/index-logo.png" alt="canrud" width="100" height="40" /></a> | 8 | + <a href="/" |
9 | + ><v-img | ||
10 | + src="/mobile/index-logo.png" | ||
11 | + alt="canrud" | ||
12 | + width="100" | ||
13 | + height="40" | ||
14 | + /></a> | ||
9 | </v-app-bar-title> | 15 | </v-app-bar-title> |
10 | <template v-slot:append> | 16 | <template v-slot:append> |
11 | <v-btn icon v-if="!showSearch"> | 17 | <v-btn icon v-if="!showSearch"> |
12 | <v-icon @click="showSearch = !showSearch">mdi-magnify</v-icon> | 18 | <v-icon @click="showSearch = !showSearch">mdi-magnify</v-icon> |
13 | </v-btn> | 19 | </v-btn> |
14 | 20 | ||
15 | - <v-app-bar-nav-icon @click="drawer = !drawer" v-if="!drawer"></v-app-bar-nav-icon> | ||
16 | - <v-app-bar-nav-icon @click="drawer = !drawer" v-if="drawer" icon="mdi-window-close"></v-app-bar-nav-icon> | 21 | + <v-app-bar-nav-icon |
22 | + @click="drawer = !drawer" | ||
23 | + v-if="!drawer" | ||
24 | + ></v-app-bar-nav-icon> | ||
25 | + <v-app-bar-nav-icon | ||
26 | + @click="drawer = !drawer" | ||
27 | + v-if="drawer" | ||
28 | + icon="mdi-window-close" | ||
29 | + ></v-app-bar-nav-icon> | ||
17 | </template> | 30 | </template> |
18 | 31 | ||
19 | <div class="tw-h-[36px] tw-w-[300px] ml-8" v-if="showSearch"> | 32 | <div class="tw-h-[36px] tw-w-[300px] ml-8" v-if="showSearch"> |
20 | - <v-text-field dense density="compact" height="24" label="Search keyword" hide-details="auto" variant="solo" | ||
21 | - append-inner-icon="mdi-close" @click:appendInner="handleClick" @keydown="handleKeyDown" v-model="input"> | 33 | + <v-text-field |
34 | + dense | ||
35 | + density="compact" | ||
36 | + height="24" | ||
37 | + label="Search keyword" | ||
38 | + hide-details="auto" | ||
39 | + variant="solo" | ||
40 | + append-inner-icon="mdi-close" | ||
41 | + @click:appendInner="handleClick" | ||
42 | + @keydown="handleKeyDown" | ||
43 | + v-model="input" | ||
44 | + > | ||
22 | </v-text-field> | 45 | </v-text-field> |
23 | </div> | 46 | </div> |
24 | </v-app-bar> | 47 | </v-app-bar> |
25 | 48 | ||
26 | - <v-navigation-drawer width="512" v-model="drawer" location="right" temporary floating> | 49 | + <v-navigation-drawer |
50 | + width="512" | ||
51 | + v-model="drawer" | ||
52 | + location="right" | ||
53 | + temporary | ||
54 | + floating | ||
55 | + > | ||
27 | <v-list density="compact" nav> | 56 | <v-list density="compact" nav> |
28 | - <v-list-item to="/" title="Home" value="home" @click="handleTabClick" color="blue-darken-1"> | 57 | + <v-list-item |
58 | + to="/" | ||
59 | + title="Home" | ||
60 | + value="home" | ||
61 | + @click="handleTabClick" | ||
62 | + color="blue-darken-1" | ||
63 | + > | ||
29 | </v-list-item> | 64 | </v-list-item> |
30 | <v-divider></v-divider> | 65 | <v-divider></v-divider> |
31 | - <v-list-item to="/products" title="Products" value="Products" @click="handleTabClick" | ||
32 | - color="blue-darken-1"></v-list-item> | 66 | + <v-list-item |
67 | + to="/products" | ||
68 | + title="Products" | ||
69 | + value="Products" | ||
70 | + @click="handleTabClick" | ||
71 | + color="blue-darken-1" | ||
72 | + ></v-list-item> | ||
33 | <v-divider></v-divider> | 73 | <v-divider></v-divider> |
34 | - <v-list-item to="/about" title="About" value="about" @click="handleTabClick" | ||
35 | - color="blue-darken-1"></v-list-item> | 74 | + <v-list-item |
75 | + to="/about" | ||
76 | + title="About" | ||
77 | + value="about" | ||
78 | + @click="handleTabClick" | ||
79 | + color="blue-darken-1" | ||
80 | + ></v-list-item> | ||
36 | <v-divider></v-divider> | 81 | <v-divider></v-divider> |
37 | - <v-list-item to="/contact" title="Contact" value="contact" @click="handleTabClick" | ||
38 | - color="blue-darken-1"></v-list-item> | 82 | + <v-list-item |
83 | + to="/contact" | ||
84 | + title="Contact" | ||
85 | + value="contact" | ||
86 | + @click="handleTabClick" | ||
87 | + color="blue-darken-1" | ||
88 | + ></v-list-item> | ||
39 | <v-divider></v-divider> | 89 | <v-divider></v-divider> |
40 | <v-list-item title="Blog" value="blog" color="blue-darken-1"> | 90 | <v-list-item title="Blog" value="blog" color="blue-darken-1"> |
41 | <a href="http://blog.canrud.com/" target="" title="Blog">Blog</a> | 91 | <a href="http://blog.canrud.com/" target="" title="Blog">Blog</a> |
@@ -73,66 +123,66 @@ | @@ -73,66 +123,66 @@ | ||
73 | </template> | 123 | </template> |
74 | 124 | ||
75 | <script setup lang="ts"> | 125 | <script setup lang="ts"> |
76 | -import { ref, watchEffect } from 'vue' | ||
77 | -import { useProductListStore } from '@/stores/product_list' | ||
78 | -import { useRouter } from 'vue-router' | ||
79 | -import { useDialogStore } from '@/stores/dialog' | ||
80 | -import { useCategoryStore } from '@/stores/category' | ||
81 | -import { useDisplay } from 'vuetify' | 126 | +import { ref, watchEffect } from "vue"; |
127 | +import { useProductListStore } from "@/stores/product_list"; | ||
128 | +import { useRouter } from "vue-router"; | ||
129 | +import { useDialogStore } from "@/stores/dialog"; | ||
130 | +import { useCategoryStore } from "@/stores/category"; | ||
131 | +import { useDisplay } from "vuetify"; | ||
82 | 132 | ||
83 | -const drawer = ref(false) | ||
84 | -const showSearch = ref(false) | 133 | +const drawer = ref(false); |
134 | +const showSearch = ref(false); | ||
85 | 135 | ||
86 | -const productStore = useProductListStore() | ||
87 | -const categoryStore = useCategoryStore() | 136 | +const productStore = useProductListStore(); |
137 | +const categoryStore = useCategoryStore(); | ||
88 | 138 | ||
89 | -const input = ref() | 139 | +const input = ref(); |
90 | 140 | ||
91 | -const router = useRouter() | 141 | +const router = useRouter(); |
92 | 142 | ||
93 | const handleKeyDown = (e: any) => { | 143 | const handleKeyDown = (e: any) => { |
94 | if (e.keyCode == 13) { | 144 | if (e.keyCode == 13) { |
95 | - categoryStore.updateDisplay(!input.value) | ||
96 | - productStore.updateKeyword(input.value) | ||
97 | - productStore.updatePageNo(1) | ||
98 | - router.push('/products') | 145 | + categoryStore.updateDisplay(!input.value); |
146 | + productStore.updateKeyword(input.value); | ||
147 | + productStore.updatePageNo(1); | ||
148 | + router.push("/products"); | ||
99 | } | 149 | } |
100 | -} | 150 | +}; |
101 | 151 | ||
102 | const handleClick = () => { | 152 | const handleClick = () => { |
103 | - showSearch.value = false | ||
104 | -} | 153 | + showSearch.value = false; |
154 | +}; | ||
105 | 155 | ||
106 | const handleTabClick = () => { | 156 | const handleTabClick = () => { |
107 | - categoryStore.updateDisplay(true) | ||
108 | - productStore.updateKeyword('') | ||
109 | -} | 157 | + categoryStore.updateDisplay(true); |
158 | + productStore.updateKeyword(""); | ||
159 | +}; | ||
110 | 160 | ||
111 | watchEffect(() => { | 161 | watchEffect(() => { |
112 | - input.value = productStore.keyword | ||
113 | -}) | 162 | + input.value = productStore.keyword; |
163 | +}); | ||
114 | 164 | ||
115 | onMounted(() => { | 165 | onMounted(() => { |
116 | // 获取url的参数 | 166 | // 获取url的参数 |
117 | - const url = window.location.href | ||
118 | - const index = url.indexOf('?') | 167 | + const url = window.location.href; |
168 | + const index = url.indexOf("?"); | ||
119 | if (index !== -1) { | 169 | if (index !== -1) { |
120 | - const params = url.slice(index + 1).split('&') | ||
121 | - const obj: any = {} | 170 | + const params = url.slice(index + 1).split("&"); |
171 | + const obj: any = {}; | ||
122 | params.forEach((item) => { | 172 | params.forEach((item) => { |
123 | - const arr = item.split('=') | ||
124 | - obj[arr[0]] = arr[1] | ||
125 | - }) | 173 | + const arr = item.split("="); |
174 | + obj[arr[0]] = arr[1]; | ||
175 | + }); | ||
126 | // 获取dialog的状态 | 176 | // 获取dialog的状态 |
127 | if (obj.flag) { | 177 | if (obj.flag) { |
128 | - dialog.updateDialog(true) | 178 | + dialog.updateDialog(true); |
129 | } | 179 | } |
130 | 180 | ||
131 | if (obj.keyword) { | 181 | if (obj.keyword) { |
132 | - productStore.updateKeyword(obj.keyword) | 182 | + productStore.updateKeyword(obj.keyword); |
133 | } | 183 | } |
134 | } | 184 | } |
135 | -}) | 185 | +}); |
136 | </script> | 186 | </script> |
137 | 187 | ||
138 | <style lang="scss" scoped> | 188 | <style lang="scss" scoped> |
components/MobileProductDetail.vue
1 | <template> | 1 | <template> |
2 | + <div> | ||
3 | + <!-- <v-breadcrumbs | ||
4 | + divider="/" | ||
5 | + dense | ||
6 | + style=" | ||
7 | + padding-top: 8px; | ||
8 | + font-size: 14px; | ||
9 | + display: flex; | ||
10 | + flex-wrap: wrap; | ||
11 | + align-items: center; | ||
12 | + " | ||
13 | + > | ||
14 | + <template v-for="(item, index) in items" :key="index"> | ||
15 | + <v-breadcrumbs-item | ||
16 | + :disabled="item.disabled" | ||
17 | + :href="item.href" | ||
18 | + :class="{ | ||
19 | + 'breadcrumb-last': index === items.length - 1, | ||
20 | + }" | ||
21 | + :style=" | ||
22 | + index === items.length - 1 | ||
23 | + ? 'color: black; font-weight: bold;' | ||
24 | + : 'color:black' | ||
25 | + " | ||
26 | + > | ||
27 | + {{ item.title }} | ||
28 | + </v-breadcrumbs-item> | ||
29 | + <span | ||
30 | + v-if="index < items.length - 1" | ||
31 | + class="breadcrumb-divider" | ||
32 | + style="margin: 0 4px; font-size: 14px; color: gray" | ||
33 | + >/</span | ||
34 | + > | ||
35 | + </template> | ||
36 | + </v-breadcrumbs> --> | ||
37 | + <v-breadcrumbs | ||
38 | + divider="/" | ||
39 | + dense | ||
40 | + style=" | ||
41 | + padding-top: 8px; | ||
42 | + font-size: 14px; | ||
43 | + display: flex; | ||
44 | + flex-wrap: wrap; | ||
45 | + align-items: center; | ||
46 | + " | ||
47 | + > | ||
48 | + <template v-for="(item, index) in items" :key="index"> | ||
49 | + <v-breadcrumbs-item | ||
50 | + :disabled="item.disabled" | ||
51 | + :href="item.href" | ||
52 | + style="color: #1e88e5" | ||
53 | + > | ||
54 | + {{ item.title }} | ||
55 | + </v-breadcrumbs-item> | ||
56 | + <span | ||
57 | + v-if="index < items.length - 1" | ||
58 | + class="breadcrumb-divider" | ||
59 | + style="margin: 0 4px; font-size: 14px; color: gray" | ||
60 | + >/</span | ||
61 | + > | ||
62 | + </template> | ||
63 | + </v-breadcrumbs> | ||
64 | + </div> | ||
65 | + | ||
2 | <v-container class="ma-0 pa-0 bg-grey-lighten-5"> | 66 | <v-container class="ma-0 pa-0 bg-grey-lighten-5"> |
3 | - <v-carousel class="tw-float-left" height="450" v-model="slide" hide-delimiter-background> | ||
4 | - <v-carousel-item cover v-for="(slide, i) in info.productimageliststore" :src="slide.url" :key="i" | ||
5 | - :alt="info.name"> | 67 | + <v-carousel |
68 | + class="tw-float-left" | ||
69 | + height="450" | ||
70 | + v-model="slide" | ||
71 | + hide-delimiter-background | ||
72 | + > | ||
73 | + <v-carousel-item | ||
74 | + cover | ||
75 | + v-for="(slide, i) in info.productimageliststore" | ||
76 | + :src="slide.url" | ||
77 | + :key="i" | ||
78 | + :alt="info.name" | ||
79 | + > | ||
6 | </v-carousel-item> | 80 | </v-carousel-item> |
7 | </v-carousel> | 81 | </v-carousel> |
8 | - <div class="mb-3 bg-white mb-sm-10 text-h4 font-weight-medium pa-4"> | 82 | + <h1 class="mb-3 bg-white mb-sm-10 text-h4 font-weight-medium pa-4"> |
9 | {{ info.name }} | 83 | {{ info.name }} |
10 | - </div> | 84 | + </h1> |
11 | <v-row class="mx-4 mt-0 mb-4 bg-white rounded-lg"> | 85 | <v-row class="mx-4 mt-0 mb-4 bg-white rounded-lg"> |
12 | <v-col cols="6"> | 86 | <v-col cols="6"> |
13 | <div class="text-body-1 text-grey-darken-3">Brand:</div> | 87 | <div class="text-body-1 text-grey-darken-3">Brand:</div> |
@@ -30,10 +104,21 @@ | @@ -30,10 +104,21 @@ | ||
30 | <div class="text-h6">{{ info.basecore3 }}</div> | 104 | <div class="text-h6">{{ info.basecore3 }}</div> |
31 | </v-col> | 105 | </v-col> |
32 | </v-row> | 106 | </v-row> |
33 | - <div v-if="info.ticketTypes?.length" class="py-4 mx-4 bg-white rounded-lg tw-flex tw-flex-wrap tw-justify-around"> | ||
34 | - <v-sheet v-for="item in info.ticketTypes || []" :key="item.rank" rounded="lg" border class="tw-w-[40%] mb-4"> | 107 | + <div |
108 | + ref="ticketDiv" | ||
109 | + v-if="info.ticketTypes?.length" | ||
110 | + class="py-0 mx-4 rounded-lg tw-flex tw-flex-wrap tw-justify-around" | ||
111 | + > | ||
112 | + <!-- <v-sheet | ||
113 | + v-for="item in info.ticketTypes || []" | ||
114 | + :key="item.rank" | ||
115 | + rounded="lg" | ||
116 | + border | ||
117 | + class="tw-w-[40%] mb-4" | ||
118 | + > | ||
35 | <div | 119 | <div |
36 | - class="tw-bg-[#dcecfa] tw-h-[64px] !tw-leading-[64px] rounded-lg rounded-b-0 pa-2 tw-text-center text-h6 tw-overflow-hidden tw-text-ellipsis"> | 120 | + class="tw-bg-[#dcecfa] tw-h-[64px] !tw-leading-[64px] rounded-lg rounded-b-0 pa-2 tw-text-center text-h6 tw-overflow-hidden tw-text-ellipsis" |
121 | + > | ||
37 | {{ item.typeName }} | 122 | {{ item.typeName }} |
38 | </div> | 123 | </div> |
39 | <div class="tw-h-[82px] pa-2"> | 124 | <div class="tw-h-[82px] pa-2"> |
@@ -42,17 +127,91 @@ | @@ -42,17 +127,91 @@ | ||
42 | {{ item.rank }} | 127 | {{ item.rank }} |
43 | </div> | 128 | </div> |
44 | </div> | 129 | </div> |
45 | - </v-sheet> | ||
46 | - <v-btn size="large" color="blue-darken-1" @click="router.push('/contact')"> | 130 | + </v-sheet> --> |
131 | + <v-table | ||
132 | + density="comfortable" | ||
133 | + style="width: 100%" | ||
134 | + class="table1 tw-mt-[0px] tw-overflow-x-auto" | ||
135 | + v-if="info.ticketTypes?.length" | ||
136 | + > | ||
137 | + <thead> | ||
138 | + <tr class="bg-grey-lighten-3"> | ||
139 | + <th class="text-left headerBorder text-grey-darken-1">Name/Code</th> | ||
140 | + <th class="text-left headerBorder text-grey-darken-1"> | ||
141 | + Specification | ||
142 | + </th> | ||
143 | + <th | ||
144 | + v-if="info.priceShow !== undefined && info.priceShow" | ||
145 | + class="text-left headerBorder text-grey-darken-1" | ||
146 | + > | ||
147 | + Price | ||
148 | + </th> | ||
149 | + <!-- <th class="text-left headerBorder text-grey-darken-1">Actions</th> --> | ||
150 | + </tr> | ||
151 | + </thead> | ||
152 | + <tbody> | ||
153 | + <tr | ||
154 | + class="tr" | ||
155 | + v-for="item in info.ticketTypes || []" | ||
156 | + :key="item.rank" | ||
157 | + > | ||
158 | + <td class="td text-grey-darken-4 font-weight-medium"> | ||
159 | + {{ item.rank }} | ||
160 | + </td> | ||
161 | + <td class="td text-grey-darken-4 font-weight-medium"> | ||
162 | + {{ item.typeName }} | ||
163 | + </td> | ||
164 | + <td v-if="item.priceShow" class="td">$ {{ item.price }}</td> | ||
165 | + <!-- <td class="td"> | ||
166 | + <v-btn | ||
167 | + size="small" | ||
168 | + color="blue-darken-1" | ||
169 | + @click="router.push('/contact')" | ||
170 | + > | ||
171 | + Quote | ||
172 | + </v-btn> | ||
173 | + </td> --> | ||
174 | + </tr> | ||
175 | + </tbody> | ||
176 | + </v-table> | ||
177 | + <!-- <div v-for="item in info.ticketTypes || []" | ||
178 | + :key="item.rank"> | ||
47 | 179 | ||
180 | + </div> --> | ||
181 | + <!-- <v-btn | ||
182 | + style="margin-top: 6px" | ||
183 | + color="blue-darken-1" | ||
184 | + @click="router.push('/contact')" | ||
185 | + > | ||
186 | + Quotation Inquiry | ||
187 | + </v-btn> --> | ||
188 | + <!-- <div | ||
189 | + v-if="showBottomButton" | ||
190 | + ref="bottomButton" | ||
191 | + :class="['button-container', { fixed: isFixed }]" | ||
192 | + > --> | ||
193 | + <v-btn | ||
194 | + style="margin-top: 12px" | ||
195 | + color="blue-darken-1 tw-sticky" | ||
196 | + @click="router.push('/contact')" | ||
197 | + > | ||
48 | Quotation Inquiry | 198 | Quotation Inquiry |
49 | </v-btn> | 199 | </v-btn> |
200 | + <!-- </div> --> | ||
50 | </div> | 201 | </div> |
51 | <!-- <v-dialog v-model="dialog" activator="parent" width="auto"> | 202 | <!-- <v-dialog v-model="dialog" activator="parent" width="auto"> |
52 | <v-card> Contact us Email: contact@canrd.com QQ: 3003597584 / 2902385824 </v-card> | 203 | <v-card> Contact us Email: contact@canrd.com QQ: 3003597584 / 2902385824 </v-card> |
53 | </v-dialog> --> | 204 | </v-dialog> --> |
54 | <div class="tw-pb-[64px] ma-4 rounded-lg"> | 205 | <div class="tw-pb-[64px] ma-4 rounded-lg"> |
55 | - <v-tabs class="tabs" v-model="tab" bg-color="#fff" slider-color="#1d89e4" selected-class="active"> | 206 | + <v-tabs |
207 | + class="tabs" | ||
208 | + v-model="tab" | ||
209 | + style="margin-top: 25px; margin-bottom: 20px" | ||
210 | + color="white" | ||
211 | + bg-color="#eeeeee" | ||
212 | + slider-color="blue-lighten-1" | ||
213 | + selected-class="active" | ||
214 | + > | ||
56 | <v-tab :value="1">Product Details</v-tab> | 215 | <v-tab :value="1">Product Details</v-tab> |
57 | <v-tab :value="2">Specification</v-tab> | 216 | <v-tab :value="2">Specification</v-tab> |
58 | <!-- <v-tab :value="3">商品百科</v-tab> --> | 217 | <!-- <v-tab :value="3">商品百科</v-tab> --> |
@@ -69,7 +228,7 @@ | @@ -69,7 +228,7 @@ | ||
69 | <v-divider class="tw-mb-[12px]"></v-divider> | 228 | <v-divider class="tw-mb-[12px]"></v-divider> |
70 | <div v-html="info.physicalproperty"></div> | 229 | <div v-html="info.physicalproperty"></div> |
71 | </div> | 230 | </div> |
72 | - <div v-if="info.advantage" class="tw-mb-[24px]"> | 231 | + <div v-if="info.storage" class="tw-mb-[24px]"> |
73 | <div class="py-2 pl-2 text-h6">Storage</div> | 232 | <div class="py-2 pl-2 text-h6">Storage</div> |
74 | <v-divider class="tw-mb-[12px]"></v-divider> | 233 | <v-divider class="tw-mb-[12px]"></v-divider> |
75 | <div v-html="info.storage"></div> | 234 | <div v-html="info.storage"></div> |
@@ -79,7 +238,7 @@ | @@ -79,7 +238,7 @@ | ||
79 | <v-divider class="tw-mb-[12px]"></v-divider> | 238 | <v-divider class="tw-mb-[12px]"></v-divider> |
80 | <div v-html="info.introduction"></div> | 239 | <div v-html="info.introduction"></div> |
81 | </div> | 240 | </div> |
82 | - <div v-if="info.advantage" class="tw-mb-[24px]"> | 241 | + <div v-if="info.description" class="tw-mb-[24px]"> |
83 | <div class="py-2 pl-2 text-h6">Description</div> | 242 | <div class="py-2 pl-2 text-h6">Description</div> |
84 | <v-divider class="tw-mb-[12px]"></v-divider> | 243 | <v-divider class="tw-mb-[12px]"></v-divider> |
85 | <div v-html="info.description"></div> | 244 | <div v-html="info.description"></div> |
@@ -88,8 +247,12 @@ | @@ -88,8 +247,12 @@ | ||
88 | <v-window-item key="2" :value="2"> | 247 | <v-window-item key="2" :value="2"> |
89 | <v-table density="compact" class="table2"> | 248 | <v-table density="compact" class="table2"> |
90 | <tbody> | 249 | <tbody> |
91 | - <tr class="tr" v-for="item in info.productAttributeList || []" :key="item.name"> | ||
92 | - <td class="td tw-w-[400px]">{{ item.name }}</td> | 250 | + <tr |
251 | + class="tr" | ||
252 | + v-for="item in info.productAttributeList || []" | ||
253 | + :key="item.name" | ||
254 | + > | ||
255 | + <td class="td tw-w-[350px]">{{ item.name }}</td> | ||
93 | <td class="td">{{ item.value }}</td> | 256 | <td class="td">{{ item.value }}</td> |
94 | </tr> | 257 | </tr> |
95 | </tbody> | 258 | </tbody> |
@@ -98,33 +261,553 @@ | @@ -98,33 +261,553 @@ | ||
98 | <!-- <v-window-item key="3" :value="3"> 2 </v-window-item> --> | 261 | <!-- <v-window-item key="3" :value="3"> 2 </v-window-item> --> |
99 | </v-window> | 262 | </v-window> |
100 | </div> | 263 | </div> |
264 | + <div class="tw-pb-[64px] ma-4 rounded-lg" style="padding-bottom: 30px"> | ||
265 | + <v-tabs | ||
266 | + class="tabs" | ||
267 | + v-model="tabProduct" | ||
268 | + color="white" | ||
269 | + bg-color="#eeeeee" | ||
270 | + slider-color="blue-lighten-1" | ||
271 | + selected-class="active" | ||
272 | + style="margin-bottom: 20px" | ||
273 | + > | ||
274 | + <v-tab :value="1">Best Sellers</v-tab> | ||
275 | + <v-tab :value="2">Related Products</v-tab> | ||
276 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
277 | + </v-tabs> | ||
278 | + <v-window v-model="tabProduct"> | ||
279 | + <v-window-item key="1" :value="1"> | ||
280 | + <div class="tw-text-center" v-if="hotLoading && isMobile()"> | ||
281 | + <v-progress-circular | ||
282 | + color="blue-lighten-2" | ||
283 | + indeterminate | ||
284 | + size="64" | ||
285 | + class="tw-m-auto" | ||
286 | + ></v-progress-circular> | ||
287 | + </div> | ||
288 | + <v-item-group multiple v-if="isMobile()"> | ||
289 | + <v-row v-if="!hotLoading"> | ||
290 | + <v-col | ||
291 | + v-for="(item, i) in recommendImagesHot" | ||
292 | + :key="i" | ||
293 | + cols="6" | ||
294 | + lg="3" | ||
295 | + md="4" | ||
296 | + sm="6" | ||
297 | + > | ||
298 | + <div v-if="item !== null"> | ||
299 | + <v-card | ||
300 | + :elevation="4" | ||
301 | + class="mx-auto" | ||
302 | + :href="item[0].productUrl" | ||
303 | + > | ||
304 | + <!-- 设置 eager 属性,确保图片直接加载 --> | ||
305 | + <v-img | ||
306 | + :src="item[0].url" | ||
307 | + :alt="item[0].name" | ||
308 | + eager | ||
309 | + class="d-block" | ||
310 | + /> | ||
311 | + <v-card-text class="tw-text-left font-weight-medium title"> | ||
312 | + <h4>{{ item[0].name }}</h4> | ||
313 | + </v-card-text> | ||
314 | + </v-card> | ||
315 | + </div> | ||
316 | + </v-col> | ||
317 | + </v-row> | ||
318 | + <!-- <div | ||
319 | + v-if="!hotTotal" | ||
320 | + class="text-medium-emphasis text-body-1 tw-text-center tw-m-[64px]" | ||
321 | + > | ||
322 | + no data | ||
323 | + </div> --> | ||
324 | + </v-item-group> | ||
325 | + <v-row v-if="isMobile()"> | ||
326 | + <v-col> | ||
327 | + <v-pagination | ||
328 | + :size="isMobile() ? 'small' : 'default'" | ||
329 | + v-if="hotTotal" | ||
330 | + v-model="currentIndexHot" | ||
331 | + @update:modelValue="toggleRowMobileHot" | ||
332 | + :length="hotLength" | ||
333 | + rounded="0" | ||
334 | + class="tw-float-right tw-mt-[32px]" | ||
335 | + total-visible="5" | ||
336 | + ></v-pagination></v-col | ||
337 | + ></v-row> | ||
338 | + </v-window-item> | ||
339 | + <!-- best sellers --> | ||
340 | + <v-window-item key="2" :value="2"> | ||
341 | + <div class="tw-text-center" v-if="loading && isMobile()"> | ||
342 | + <v-progress-circular | ||
343 | + color="blue-lighten-2" | ||
344 | + indeterminate | ||
345 | + size="64" | ||
346 | + class="tw-m-auto" | ||
347 | + ></v-progress-circular> | ||
348 | + </div> | ||
349 | + <v-item-group multiple v-if="isMobile()"> | ||
350 | + <v-row v-if="!loading"> | ||
351 | + <v-col | ||
352 | + v-for="(item, i) in recommendImages" | ||
353 | + :key="i" | ||
354 | + cols="6" | ||
355 | + lg="3" | ||
356 | + md="4" | ||
357 | + sm="6" | ||
358 | + > | ||
359 | + <div v-if="item !== null"> | ||
360 | + <v-card | ||
361 | + :elevation="4" | ||
362 | + class="mx-auto" | ||
363 | + :href="item[0].productUrl" | ||
364 | + > | ||
365 | + <!-- 设置 eager 属性,确保图片直接加载 --> | ||
366 | + <v-img | ||
367 | + :src="item[0].url" | ||
368 | + :alt="item[0].name" | ||
369 | + eager | ||
370 | + class="d-block" | ||
371 | + /> | ||
372 | + <v-card-text class="tw-text-left font-weight-medium title"> | ||
373 | + <h4>{{ item[0].name }}</h4> | ||
374 | + </v-card-text> | ||
375 | + </v-card> | ||
376 | + </div> | ||
377 | + </v-col> | ||
378 | + </v-row> | ||
379 | + <!-- <div | ||
380 | + v-if="!hotTotal" | ||
381 | + class="text-medium-emphasis text-body-1 tw-text-center tw-m-[64px]" | ||
382 | + > | ||
383 | + no data | ||
384 | + </div> --> | ||
385 | + </v-item-group> | ||
386 | + <v-row v-if="isMobile()"> | ||
387 | + <v-col> | ||
388 | + <v-pagination | ||
389 | + :size="isMobile() ? 'small' : 'default'" | ||
390 | + v-if="total" | ||
391 | + v-model="currentIndex" | ||
392 | + @update:modelValue="toggleRowMobile" | ||
393 | + :length="length" | ||
394 | + rounded="0" | ||
395 | + class="tw-float-right tw-mt-[32px]" | ||
396 | + total-visible="5" | ||
397 | + ></v-pagination></v-col | ||
398 | + ></v-row> | ||
399 | + </v-window-item> | ||
400 | + <!-- <v-window-item key="3" :value="3"> 2 </v-window-item> --> | ||
401 | + </v-window> | ||
402 | + </div> | ||
403 | + <div class="tw-pb-[64px] ma-4 rounded-lg"> | ||
404 | + <v-tabs | ||
405 | + class="tabs" | ||
406 | + v-model="tabJournal" | ||
407 | + color="white" | ||
408 | + bg-color="#eeeeee" | ||
409 | + slider-color="blue-lighten-1" | ||
410 | + selected-class="active" | ||
411 | + > | ||
412 | + <v-tab :value="1">Product-related Journals</v-tab> | ||
413 | + </v-tabs> | ||
414 | + <v-window v-model="tabJournal"> | ||
415 | + <v-window-item key="1" :value="1"> | ||
416 | + <v-list> | ||
417 | + <v-list-item | ||
418 | + v-for="item in info.journals" | ||
419 | + :key="item.id" | ||
420 | + @click="navigateToUrl(item.link)" | ||
421 | + @mouseenter="hoveredItem = item.id" | ||
422 | + @mouseleave="hoveredItem = null" | ||
423 | + > | ||
424 | + <v-list-item-title> | ||
425 | + <span | ||
426 | + :class="['title', { 'full-title': hoveredItem === item.id }]" | ||
427 | + > | ||
428 | + {{ item.title }} | ||
429 | + </span> | ||
430 | + </v-list-item-title> | ||
431 | + </v-list-item> | ||
432 | + </v-list> | ||
433 | + </v-window-item> | ||
434 | + </v-window> | ||
435 | + </div> | ||
436 | + <!-- Basic use --> | ||
437 | + <div class="social-share-container"> | ||
438 | + <SocialShare | ||
439 | + network="facebook" | ||
440 | + :styled="true" | ||
441 | + :label="true" | ||
442 | + :title="info.name" | ||
443 | + :url="currentUrl" | ||
444 | + style="color: #1e88e5; width: 140px" | ||
445 | + /> | ||
446 | + | ||
447 | + <SocialShare | ||
448 | + network="twitter" | ||
449 | + :styled="true" | ||
450 | + :label="true" | ||
451 | + :title="info.name" | ||
452 | + :url="currentUrl" | ||
453 | + style="color: #1e88e5; width: 140px" | ||
454 | + /> | ||
455 | + | ||
456 | + <SocialShare | ||
457 | + network="linkedin" | ||
458 | + :styled="true" | ||
459 | + :label="true" | ||
460 | + :title="info.name" | ||
461 | + :url="currentUrl" | ||
462 | + style="color: #1e88e5; width: 140px" | ||
463 | + /> | ||
464 | + </div> | ||
101 | </v-container> | 465 | </v-container> |
102 | </template> | 466 | </template> |
103 | 467 | ||
104 | <script setup lang="ts"> | 468 | <script setup lang="ts"> |
105 | -import type { Product } from '~/type' | ||
106 | -import { onMounted, ref } from 'vue' | ||
107 | -import { useDialogStore } from '~/stores/dialog' | ||
108 | -const dialogStore = useDialogStore() | 469 | +import type { Product } from "~/type"; |
470 | +import { isMobile } from "~/utils"; | ||
471 | +import { defineProps, ref } from "vue"; | ||
472 | +import { useDialogStore } from "~/stores/dialog"; | ||
473 | +const dialogStore = useDialogStore(); | ||
109 | 474 | ||
110 | const props = defineProps<{ | 475 | const props = defineProps<{ |
111 | - info: Product | ||
112 | -}>() | ||
113 | -const info = props.info | 476 | + info: Product; |
477 | +}>(); | ||
478 | +const info = props.info; | ||
114 | // onMounted(() => { | 479 | // onMounted(() => { |
115 | // dialogStore.updateDialog(true) | 480 | // dialogStore.updateDialog(true) |
116 | // }) | 481 | // }) |
117 | -const tab = ref(0) | ||
118 | -const slide = ref(0) | ||
119 | -const router = useRouter() | 482 | +const tab = ref(); |
483 | +const tabProduct = ref(); | ||
484 | +const tabJournal = ref(); | ||
485 | +const slide = ref(0); | ||
486 | +const router = useRouter(); | ||
487 | +const href1 = ref("/products"); | ||
488 | +const href2 = ref("/products"); | ||
489 | +const routeQuery = useRouteQuery(); | ||
490 | +const productStore = useProductListStore(); | ||
491 | +const currentUrl = ref("https://www.canrud.com/products"); | ||
492 | +const hotLoading = ref(false); | ||
493 | +const loading = ref(false); | ||
494 | +const maxPage = ref(1); | ||
495 | +const maxPageRe = ref(1); | ||
496 | +const tabRecom = ref(); | ||
497 | +const recommendList = ref(); | ||
498 | +const recommendListHot = ref(); | ||
499 | +const recommendImages = ref(); | ||
500 | +const recommendImagesHot = ref(); | ||
501 | +const currentIndex = ref(1); | ||
502 | +const currentIndexHot = ref(1); | ||
503 | +const total = ref(3); | ||
504 | +const hotTotal = ref(10); | ||
505 | +const isOrNotMobile = isMobile(); | ||
506 | +const hoveredItem = ref(null); | ||
507 | + | ||
508 | +const navigateToUrl = (url) => { | ||
509 | + window.open(url); // 在新标签页中打开链接 | ||
510 | +}; | ||
511 | +const loadProducts = async () => { | ||
512 | + const pageSize = 4; | ||
513 | + loading.value = true; | ||
514 | + | ||
515 | + let { data: resData } = await useAsyncData( | ||
516 | + "list", | ||
517 | + () => | ||
518 | + $fetch("/shop/product/list", { | ||
519 | + method: "GET", | ||
520 | + params: { | ||
521 | + pageNo: currentIndex.value, | ||
522 | + pageSize: pageSize, | ||
523 | + ids: info.relatedProductIds, | ||
524 | + }, | ||
525 | + }), | ||
526 | + { | ||
527 | + server: true, // 仅在服务器端获取数据 | ||
528 | + } | ||
529 | + ); | ||
530 | + total.value = resData.value.data.total; | ||
531 | + if (total.value > 50) { | ||
532 | + total.value = 50; | ||
533 | + } | ||
534 | + recommendList.value = resData.value.data.records; | ||
535 | + maxPageRe.value = resData.value.data.pages; | ||
536 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
537 | + recommendImages.value = Array.from({ length: 4 }).map((_, index) => { | ||
538 | + const item = recommendList.value[index]; | ||
539 | + if (!item) { | ||
540 | + return null; | ||
541 | + } | ||
542 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
543 | + if (typeof item.productimageliststore === "string") { | ||
544 | + try { | ||
545 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
546 | + } catch (error) { | ||
547 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
548 | + } | ||
549 | + } | ||
550 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
551 | + (productItem: ProductImage) => ({ | ||
552 | + ...productItem, | ||
553 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
554 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
555 | + name: item.name, | ||
556 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
557 | + }) | ||
558 | + )); | ||
559 | + return ree; | ||
560 | + }); | ||
561 | + loading.value = false; | ||
562 | +}; | ||
563 | +const loadHotProducts = async () => { | ||
564 | + const pageSizeHot = ref(5); | ||
565 | + if (isOrNotMobile) { | ||
566 | + pageSizeHot.value = 4; | ||
567 | + } | ||
568 | + hotLoading.value = true; | ||
569 | + | ||
570 | + let { data: hotProducts } = await useAsyncData( | ||
571 | + "hotProducts", | ||
572 | + () => | ||
573 | + $fetch("/shop/product/hotProducts", { | ||
574 | + method: "GET", | ||
575 | + params: { | ||
576 | + pageNo: currentIndexHot.value, | ||
577 | + pageSize: pageSizeHot.value, | ||
578 | + }, | ||
579 | + }), | ||
580 | + { | ||
581 | + server: true, // 仅在服务器端获取数据 | ||
582 | + } | ||
583 | + ); | ||
584 | + hotTotal.value = hotProducts.value.data.total; | ||
585 | + recommendListHot.value = hotProducts.value.data.records; | ||
586 | + maxPage.value = hotProducts.value.data.pages; | ||
587 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
588 | + recommendImagesHot.value = Array.from({ length: pageSizeHot.value }).map( | ||
589 | + (_, index) => { | ||
590 | + const item = recommendListHot.value[index]; | ||
591 | + if (!item) { | ||
592 | + return null; | ||
593 | + } | ||
594 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
595 | + if (typeof item.productimageliststore === "string") { | ||
596 | + try { | ||
597 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
598 | + } catch (error) { | ||
599 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
600 | + } | ||
601 | + } | ||
602 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
603 | + (productItem: ProductImage) => ({ | ||
604 | + ...productItem, | ||
605 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
606 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
607 | + name: item.name, | ||
608 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
609 | + }) | ||
610 | + )); | ||
611 | + return ree; | ||
612 | + } | ||
613 | + ); | ||
614 | + hotLoading.value = false; | ||
615 | +}; | ||
616 | + | ||
617 | +const toggleRowMobile = (value: number) => { | ||
618 | + currentIndex.value = value; | ||
619 | +}; | ||
620 | +const toggleRowMobileHot = (value: number) => { | ||
621 | + currentIndexHot.value = value; | ||
622 | +}; | ||
623 | + | ||
624 | +watch(currentIndexHot, (newIndex) => { | ||
625 | + loadHotProducts(); // Call loadHotProducts when currentIndex changes | ||
626 | +}); | ||
627 | +watch(currentIndex, (newIndex) => { | ||
628 | + loadProducts(); // Call loadHotProducts when currentIndex changes | ||
629 | +}); | ||
630 | +// Initial load of hot products | ||
631 | +await loadHotProducts(); // Load hot products the first time | ||
632 | +await loadProducts(); // Load hot products the first time | ||
633 | + | ||
634 | +interface BreadcrumbItem { | ||
635 | + title: string; // 标题 | ||
636 | + disabled: boolean; // 是否禁用 | ||
637 | + href: string; // 链接地址 | ||
638 | +} | ||
639 | + | ||
640 | +// 示例数据 | ||
641 | +const items = ref<BreadcrumbItem[]>([ | ||
642 | + { | ||
643 | + title: "Products", | ||
644 | + disabled: false, | ||
645 | + href: "https://www.canrud.com/products", | ||
646 | + }, | ||
647 | + { | ||
648 | + title: "CATEGORY", | ||
649 | + disabled: false, | ||
650 | + href: href1.value, | ||
651 | + }, | ||
652 | + { | ||
653 | + title: "Not specified", | ||
654 | + disabled: false, | ||
655 | + href: href2.value, | ||
656 | + }, | ||
657 | + { | ||
658 | + title: "Not specified", | ||
659 | + disabled: false, | ||
660 | + href: "/products", | ||
661 | + }, | ||
662 | +]); | ||
663 | +watchEffect(() => { | ||
664 | + currentUrl.value = "https://www.canrud.com/products/detail/" + info.id; | ||
665 | + if (info?.productCrumbsVO?.category1 && productStore.keyword) { | ||
666 | + items.value[1].title = info.productCrumbsVO.category1; | ||
667 | + items.value[1].href = | ||
668 | + "https://www.canrud.com/products?categories=" + | ||
669 | + info.productCrumbsVO.category1; | ||
670 | + href1.value = | ||
671 | + "https://www.canrud.com/products?categories=" + | ||
672 | + info.productCrumbsVO.category1; | ||
673 | + if (info?.productCrumbsVO?.category2) { | ||
674 | + items.value[2].title = info.productCrumbsVO.category2; | ||
675 | + href2.value = href1.value + "," + info.productCrumbsVO.category2; | ||
676 | + items.value[2].href = href1.value + "," + info.productCrumbsVO.category2; | ||
677 | + } | ||
678 | + if (info?.productCrumbsVO?.function) { | ||
679 | + // items.value.push({ | ||
680 | + // title: info.productCrumbsVO.function, | ||
681 | + // disabled: false, | ||
682 | + // href: href2.value + "&function=" + info.productCrumbsVO.function, | ||
683 | + // }); | ||
684 | + items.value[3].title = info.productCrumbsVO.function; | ||
685 | + items.value[3].href = | ||
686 | + href2.value + "&function=" + info.productCrumbsVO.function; | ||
687 | + } | ||
688 | + } else if (routeQuery.categories) { | ||
689 | + if (!routeQuery.categories.includes("Energy materials")) { | ||
690 | + routeQuery.updateFunction("Not specified"); | ||
691 | + } | ||
692 | + const categories = routeQuery.categories.split(","); | ||
693 | + const mainCategory = categories[0].trim(); // 取第一个值 | ||
694 | + const subCategoryName = ref( | ||
695 | + categories[1] ? categories[1].trim() : "Not specified" | ||
696 | + ); // 取第二个值(如果存在) | ||
697 | + if (subCategoryName.value == "Accessories & fixtures") { | ||
698 | + subCategoryName.value = encodeURIComponent("Accessories & fixtures"); | ||
699 | + items.value[2].title = "Accessories & fixtures"; | ||
700 | + } else { | ||
701 | + items.value[2].title = subCategoryName.value; | ||
702 | + } | ||
703 | + items.value[1].title = mainCategory; | ||
704 | + items.value[1].href = | ||
705 | + "https://www.canrud.com/products?categories=" + mainCategory; | ||
706 | + href1.value = "https://www.canrud.com/products?categories=" + mainCategory; | ||
707 | + // items.value[1].title = subCategoryName.value; | ||
708 | + href2.value = href1.value + "," + subCategoryName.value; | ||
709 | + items.value[2].href = href1.value + "," + subCategoryName.value; | ||
710 | + if (routeQuery?.selectedFunction) { | ||
711 | + // items.value.push({ | ||
712 | + // title: routeQuery.selectedFunction, | ||
713 | + // disabled: false, | ||
714 | + // href: href2.value + "&function=" + routeQuery.selectedFunction, | ||
715 | + // }); | ||
716 | + items.value[3].title = routeQuery.selectedFunction; | ||
717 | + items.value[3].href = | ||
718 | + href2.value + "&function=" + routeQuery.selectedFunction; | ||
719 | + // routeQuery.updateFunction(null); | ||
720 | + } | ||
721 | + } else if (info?.productCrumbsVO?.category1) { | ||
722 | + items.value[1].title = info.productCrumbsVO.category1; | ||
723 | + items.value[1].href = | ||
724 | + "https://www.canrud.com/products?categories=" + | ||
725 | + info.productCrumbsVO.category1; | ||
726 | + href1.value = | ||
727 | + "https://www.canrud.com/products?categories=" + | ||
728 | + info.productCrumbsVO.category1; | ||
729 | + if (info?.productCrumbsVO?.category2) { | ||
730 | + items.value[2].title = info.productCrumbsVO.category2; | ||
731 | + href2.value = href1.value + "," + info.productCrumbsVO.category2; | ||
732 | + items.value[2].href = href1.value + "," + info.productCrumbsVO.category2; | ||
733 | + } | ||
734 | + if (info?.productCrumbsVO?.function) { | ||
735 | + // items.value.push({ | ||
736 | + // title: info.productCrumbsVO.function, | ||
737 | + // disabled: false, | ||
738 | + // href: href2.value + "&function=" + info.productCrumbsVO.function, | ||
739 | + // }); | ||
740 | + items.value[3].title = info.productCrumbsVO.function; | ||
741 | + items.value[3].href = | ||
742 | + href2.value + "&function=" + info.productCrumbsVO.function; | ||
743 | + } | ||
744 | + } | ||
745 | +}); | ||
746 | +const length = computed(() => (total.value ? Math.ceil(total.value / 4) : 0)); | ||
747 | +const hotLength = computed(() => | ||
748 | + hotTotal.value ? Math.ceil(hotTotal.value / 4) : 0 | ||
749 | +); | ||
120 | </script> | 750 | </script> |
121 | 751 | ||
122 | <style lang="scss" scoped> | 752 | <style lang="scss" scoped> |
753 | +// .tabs { | ||
754 | +// border-bottom: 2px solid #cbd9e4; | ||
755 | +// } | ||
756 | + | ||
757 | +// .active { | ||
758 | +// background-color: #fff; | ||
759 | +// } | ||
760 | + | ||
123 | .tabs { | 761 | .tabs { |
124 | - border-bottom: 2px solid #cbd9e4; | 762 | + border-bottom: 2px solid #1f88e5; |
125 | } | 763 | } |
126 | 764 | ||
127 | .active { | 765 | .active { |
128 | - background-color: #fff; | 766 | + background-color: #1086e8; |
767 | +} | ||
768 | + | ||
769 | +.tw-sticky { | ||
770 | + position: sticky; | ||
771 | +} | ||
772 | + | ||
773 | +// .button-container { | ||
774 | +// margin-top: 6px; | ||
775 | +// display: flex; | ||
776 | +// justify-content: center; | ||
777 | +// position: absolute; | ||
778 | +// width: 100%; | ||
779 | +// bottom: auto; /* 默认情况下不固定 */ | ||
780 | +// } | ||
781 | + | ||
782 | +// .button-container.fixed { | ||
783 | +// position: fixed; | ||
784 | +// bottom: 16px; /* 固定在页面底部 */ | ||
785 | +// left: 0; | ||
786 | +// z-index: 1000; | ||
787 | +// background-color: rgba(255, 255, 255, 0.9); | ||
788 | +// box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); | ||
789 | +// padding: 8px 0; | ||
790 | +// } | ||
791 | +.social-share-container { | ||
792 | + display: flex; | ||
793 | + flex-direction: row; /* 父容器横向排列 */ | ||
794 | + gap: 1rem; /* 设置每个分享项之间的间距 */ | ||
795 | + margin-left: 10px; | ||
796 | + margin-bottom: 10px; | ||
797 | +} | ||
798 | + | ||
799 | +.social-share-item { | ||
800 | + display: flex; | ||
801 | + flex-direction: row; /* 每个分享项横向排列 */ | ||
802 | + align-items: center; /* 垂直居中对齐 */ | ||
803 | + gap: 0.5rem; /* 标题与按钮之间的间距 */ | ||
804 | +} | ||
805 | + | ||
806 | +.social-share-title { | ||
807 | + font-size: 1rem; | ||
808 | + font-weight: bold; | ||
809 | +} | ||
810 | +.v-card { | ||
811 | + transition: all 0.3s ease-in-out; | ||
129 | } | 812 | } |
130 | </style> | 813 | </style> |
components/ProductDetail.vue
1 | <template> | 1 | <template> |
2 | <v-container> | 2 | <v-container> |
3 | + <div> | ||
4 | + <!-- <v-breadcrumbs divider="/" style="padding-top: 0"> | ||
5 | + <template v-for="(item, index) in items" :key="index"> | ||
6 | + <v-breadcrumbs-item | ||
7 | + :disabled="item.disabled" | ||
8 | + :href="item.href" | ||
9 | + :class="{ | ||
10 | + 'breadcrumb-disabled': item.disabled, | ||
11 | + 'breadcrumb-active': !item.disabled, | ||
12 | + 'breadcrumb-last': index === items.length - 1, | ||
13 | + }" | ||
14 | + :style=" | ||
15 | + index === items.length - 1 | ||
16 | + ? 'color: black;font-size:15px' | ||
17 | + : 'font-size:15px;' | ||
18 | + " | ||
19 | + > | ||
20 | + {{ item.title }} | ||
21 | + </v-breadcrumbs-item> | ||
22 | + <span v-if="index < items.length - 1" class="breadcrumb-divider" | ||
23 | + >/</span | ||
24 | + > | ||
25 | + </template> | ||
26 | + </v-breadcrumbs> --> | ||
27 | + <v-breadcrumbs divider="/" style="padding-top: 0"> | ||
28 | + <template v-for="(item, index) in items" :key="index"> | ||
29 | + <v-breadcrumbs-item | ||
30 | + :disabled="item.disabled" | ||
31 | + :href="item.href" | ||
32 | + :class="{ | ||
33 | + 'breadcrumb-disabled': item.disabled, | ||
34 | + 'breadcrumb-active': !item.disabled, | ||
35 | + }" | ||
36 | + style="font-size: 14px" | ||
37 | + > | ||
38 | + {{ item.title }} | ||
39 | + </v-breadcrumbs-item> | ||
40 | + <!-- 添加分隔符,排除最后一个 item --> | ||
41 | + <span | ||
42 | + v-if="index < items.length - 1" | ||
43 | + class="breadcrumb-divider" | ||
44 | + style="color: gray" | ||
45 | + >/</span | ||
46 | + > | ||
47 | + </template> | ||
48 | + </v-breadcrumbs> | ||
49 | + </div> | ||
3 | <v-row class="mb-16 ma-0"> | 50 | <v-row class="mb-16 ma-0"> |
4 | - <v-col cols="12" sm="5"> | 51 | + <v-col cols="12" sm="5" class="carousel-container"> |
5 | <v-carousel | 52 | <v-carousel |
6 | - class="tw-float-left" | 53 | + class="tw-float-left tw-sticky tw-top-[16px]" |
7 | height="450" | 54 | height="450" |
8 | v-model="slide" | 55 | v-model="slide" |
9 | hide-delimiter-background | 56 | hide-delimiter-background |
57 | + style="top: 16px" | ||
10 | > | 58 | > |
11 | <v-carousel-item | 59 | <v-carousel-item |
12 | cover | 60 | cover |
@@ -18,33 +66,34 @@ | @@ -18,33 +66,34 @@ | ||
18 | </v-carousel-item> | 66 | </v-carousel-item> |
19 | </v-carousel> | 67 | </v-carousel> |
20 | </v-col> | 68 | </v-col> |
21 | - <v-col cols="12" sm="7"> | ||
22 | - <v-row class="bg-white mb-sm-10 text-h4 font-weight-medium"> | 69 | + <v-col cols="12" sm="7" class="table-container"> |
70 | + <!-- <v-row class="bg-white mb-sm-10 text-h4 font-weight-medium"> | ||
23 | <v-col>{{ info.name }}</v-col> | 71 | <v-col>{{ info.name }}</v-col> |
24 | - </v-row> | 72 | + </v-row> --> |
73 | + <h1 class="tw-m-[12px] tw-mb-[36px]">{{ info.name }}</h1> | ||
25 | <div class="tw-flex tw-flex-wrap"> | 74 | <div class="tw-flex tw-flex-wrap"> |
26 | - <div class="tw-w-1/2"> | ||
27 | - <span class="tw-leading-[10px] tw-m-[16px]"> | 75 | + <div class="tw-w-1/2 tw-mb-[12px]"> |
76 | + <span class="tw-leading-[10px] tw-m-[12px]"> | ||
28 | Brand:{{ info.brandName }} | 77 | Brand:{{ info.brandName }} |
29 | </span> | 78 | </span> |
30 | </div> | 79 | </div> |
31 | <div class="tw-w-1/2 tw-mb-[12px]"> | 80 | <div class="tw-w-1/2 tw-mb-[12px]"> |
32 | - <span class="tw-leading-[10px] tw-m-[16px]" | 81 | + <span class="tw-leading-[10px] tw-m-[12px]" |
33 | >Product Model:{{ info.model }}</span | 82 | >Product Model:{{ info.model }}</span |
34 | > | 83 | > |
35 | </div> | 84 | </div> |
36 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename1"> | 85 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename1"> |
37 | - <span class="tw-leading-[10px] tw-m-[16px]" | 86 | + <span class="tw-leading-[10px] tw-m-[12px]" |
38 | >{{ info.basename1 }}:{{ info.basecore1 }}</span | 87 | >{{ info.basename1 }}:{{ info.basecore1 }}</span |
39 | > | 88 | > |
40 | </div> | 89 | </div> |
41 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename2"> | 90 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename2"> |
42 | - <span class="tw-leading-[10px] tw-m-[16px]" | 91 | + <span class="tw-leading-[10px] tw-m-[12px]" |
43 | >{{ info.basename2 }}:{{ info.basecore2 }}</span | 92 | >{{ info.basename2 }}:{{ info.basecore2 }}</span |
44 | > | 93 | > |
45 | </div> | 94 | </div> |
46 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename3"> | 95 | <div class="tw-w-1/2 tw-mb-[12px]" v-if="info.basename3"> |
47 | - <span class="tw-leading-[10px] tw-m-[16px]" | 96 | + <span class="tw-leading-[10px] tw-m-[12px]" |
48 | >{{ info.basename3 }}:{{ info.basecore3 }}</span | 97 | >{{ info.basename3 }}:{{ info.basecore3 }}</span |
49 | > | 98 | > |
50 | </div> | 99 | </div> |
@@ -60,15 +109,21 @@ | @@ -60,15 +109,21 @@ | ||
60 | :key="index" | 109 | :key="index" |
61 | class="tw-w-1/2 tw-mb-[12px]" | 110 | class="tw-w-1/2 tw-mb-[12px]" |
62 | > | 111 | > |
63 | - <span class="tw-leading-[10px] tw-m-[16px]" | 112 | + <span |
113 | + class="tw-leading-normal tw-m-0 tw-block tw-max-w-full tw-break-words tw-ml-[12px]" | ||
64 | >{{ attribute.name }}:{{ attribute.value }}</span | 114 | >{{ attribute.name }}:{{ attribute.value }}</span |
65 | > | 115 | > |
66 | </div> | 116 | </div> |
67 | </div> | 117 | </div> |
68 | - <v-table | 118 | + <!-- <v-table |
69 | density="comfortable" | 119 | density="comfortable" |
70 | class="table1 tw-mt-[32px]" | 120 | class="table1 tw-mt-[32px]" |
71 | v-if="info.ticketTypes?.length" | 121 | v-if="info.ticketTypes?.length" |
122 | + > --> | ||
123 | + <v-table | ||
124 | + density="comfortable" | ||
125 | + class="table1 tw-mt-[32px] tw-overflow-x-auto" | ||
126 | + v-if="info.ticketTypes?.length" | ||
72 | > | 127 | > |
73 | <thead> | 128 | <thead> |
74 | <tr class="bg-grey-lighten-3"> | 129 | <tr class="bg-grey-lighten-3"> |
@@ -120,63 +175,326 @@ | @@ -120,63 +175,326 @@ | ||
120 | </v-dialog> --> | 175 | </v-dialog> --> |
121 | </v-col> | 176 | </v-col> |
122 | </v-row> | 177 | </v-row> |
123 | - <div class="tw-pb-[64px]"> | ||
124 | - <v-tabs | ||
125 | - class="tabs" | ||
126 | - v-model="tab" | ||
127 | - color="white" | ||
128 | - bg-color="#eeeeee" | ||
129 | - slider-color="blue-lighten-1" | ||
130 | - selected-class="active" | 178 | + <v-tabs |
179 | + class="tabs" | ||
180 | + v-model="tabRecomHot" | ||
181 | + style="margin-top: 25px" | ||
182 | + color="white" | ||
183 | + bg-color="#eeeeee" | ||
184 | + slider-color="blue-lighten-1" | ||
185 | + selected-class="active" | ||
186 | + v-if="recommendImagesHot[0] !== null" | ||
187 | + > | ||
188 | + <v-tab :value="1">Best Sellers</v-tab> | ||
189 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
190 | + </v-tabs> | ||
191 | + <div id="image-container" v-if="recommendImagesHot[0] !== null"> | ||
192 | + <div class="recommend-left-box"> | ||
193 | + <v-img | ||
194 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/76c987e13a334be481a346c19c2284f3qy4tjnxps7.png" | ||
195 | + alt="往左移" | ||
196 | + class="recommend-img-left" | ||
197 | + @click="toggleRowLeft" | ||
198 | + /> | ||
199 | + </div> | ||
200 | + <div class="image-row" id="row1"> | ||
201 | + <!-- <img | ||
202 | + v-for="(imageObj, index) in recommendImages.slice(0, 5)" | ||
203 | + :key="'row1-' + index" | ||
204 | + :src="imageObj[0]?.url" | ||
205 | + :alt="'Image ' + (index + 1)" | ||
206 | + style="margin: 0 5px; width: 200px; height: 200px" | ||
207 | + /> --> | ||
208 | + <div | ||
209 | + v-for="(imageObj, index) in recommendImagesHot" | ||
210 | + :key="'row1-' + index" | ||
211 | + class="imageTotal" | ||
212 | + > | ||
213 | + <a v-if="imageObj" :href="imageObj[0]?.productUrl" target="_blank"> | ||
214 | + <img | ||
215 | + :src="imageObj[0]?.url" | ||
216 | + :alt="'Image ' + (index + 1)" | ||
217 | + class="item-imgHot" | ||
218 | + /> | ||
219 | + <span class="image-name"> | ||
220 | + {{ imageObj[0]?.name }} | ||
221 | + </span> | ||
222 | + </a> | ||
223 | + <div v-else style="width: 200px; height: 200px"></div> | ||
224 | + </div> | ||
225 | + </div> | ||
226 | + <div class="recommend-right-box"> | ||
227 | + <v-img | ||
228 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/b5daa0a8f2f140f5b406e984c730a453iznzlekysg.png" | ||
229 | + alt="往右移" | ||
230 | + class="recommend-img-right" | ||
231 | + @click="toggleRowRight" | ||
232 | + /> | ||
233 | + </div> | ||
234 | + </div> | ||
235 | + | ||
236 | + <div style="display: flex; width: 100%; box-sizing: border-box"> | ||
237 | + <div | ||
238 | + class="tw-pb-[64px]" | ||
239 | + style=" | ||
240 | + width: 70%; | ||
241 | + margin-right: 10px; | ||
242 | + display: flex; | ||
243 | + flex-direction: column; | ||
244 | + flex-wrap: wrap; | ||
245 | + overflow: auto; | ||
246 | + " | ||
131 | > | 247 | > |
132 | - <v-tab :value="1">Product Details</v-tab> | ||
133 | - <v-tab :value="2">Specification</v-tab> | ||
134 | - <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
135 | - </v-tabs> | ||
136 | - <v-window v-model="tab" class="tw-p-[24px]"> | ||
137 | - <v-window-item key="1" :value="1"> | ||
138 | - <div v-if="info.advantage" class="tw-mb-[24px]"> | ||
139 | - <div class="text-h6">Advantage</div> | ||
140 | - <v-divider class="tw-mb-[12px]"></v-divider> | ||
141 | - <div v-html="info.advantage"></div> | ||
142 | - </div> | ||
143 | - <div v-if="info.physicalproperty" class="tw-mb-[24px]"> | ||
144 | - <div class="text-h6">Physical Property</div> | ||
145 | - <v-divider class="tw-mb-[12px]"></v-divider> | ||
146 | - <div v-html="info.physicalproperty"></div> | ||
147 | - </div> | ||
148 | - <div v-if="info.advantage" class="tw-mb-[24px]"> | ||
149 | - <div class="text-h6">Storage</div> | ||
150 | - <v-divider class="tw-mb-[12px]"></v-divider> | ||
151 | - <div v-html="info.storage"></div> | ||
152 | - </div> | ||
153 | - <div v-if="info.introduction" class="tw-mb-[24px]"> | ||
154 | - <div class="text-h6">Introduction</div> | ||
155 | - <v-divider class="tw-mb-[12px]"></v-divider> | ||
156 | - <div v-html="info.introduction"></div> | ||
157 | - </div> | ||
158 | - <div v-if="info.advantage" class="tw-mb-[24px]"> | ||
159 | - <div class="text-h6">Description</div> | ||
160 | - <v-divider class="tw-mb-[12px]"></v-divider> | ||
161 | - <div v-html="info.description"></div> | ||
162 | - </div> | ||
163 | - </v-window-item> | ||
164 | - <v-window-item key="2" :value="2"> | ||
165 | - <v-table density="compact" class="table2"> | ||
166 | - <tbody> | ||
167 | - <tr | ||
168 | - class="tr" | ||
169 | - v-for="item in info.productAttributeList || []" | ||
170 | - :key="item.name" | 248 | + <v-tabs |
249 | + class="tabs" | ||
250 | + v-model="tab" | ||
251 | + color="white" | ||
252 | + bg-color="#eeeeee" | ||
253 | + slider-color="blue-lighten-1" | ||
254 | + selected-class="active" | ||
255 | + style="width: 100%" | ||
256 | + > | ||
257 | + <v-tab :value="1">Product Details</v-tab> | ||
258 | + <v-tab :value="2">Specification</v-tab> | ||
259 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
260 | + </v-tabs> | ||
261 | + <v-window | ||
262 | + v-model="tab" | ||
263 | + class="tw-p-[24px]" | ||
264 | + style=" | ||
265 | + min-height: 500px; | ||
266 | + height: auto; | ||
267 | + overflow-wrap: break-word; | ||
268 | + word-wrap: break-word; | ||
269 | + white-space: pre-wrap; | ||
270 | + " | ||
271 | + > | ||
272 | + <v-window-item key="1" :value="1"> | ||
273 | + <!-- 修改位置 1: 使用 clearSpanStyle 方法清理 info.advantage --> | ||
274 | + <div v-if="info.advantage" class="tw-mb-[24px]"> | ||
275 | + <div class="text-h6">Advantage</div> | ||
276 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
277 | + <div v-html="clearSpanStyle(info.advantage)"></div> | ||
278 | + </div> | ||
279 | + <!-- 修改位置 2: 使用 clearSpanStyle 方法清理 info.physicalproperty --> | ||
280 | + <div v-if="info.physicalproperty" class="tw-mb-[24px]"> | ||
281 | + <div class="text-h6">Physical Property</div> | ||
282 | + <v-divider class="tw-mb-[12px] html-content"></v-divider> | ||
283 | + <div v-html="clearSpanStyle(info.physicalproperty)"></div> | ||
284 | + </div> | ||
285 | + <!-- 修改位置 3: 使用 clearSpanStyle 方法清理 info.storage --> | ||
286 | + <div v-if="info.storage" class="tw-mb-[24px]"> | ||
287 | + <div class="text-h6">Storage</div> | ||
288 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
289 | + <div v-html="clearSpanStyle(info.storage)"></div> | ||
290 | + </div> | ||
291 | + <!-- 修改位置 4: 使用 clearSpanStyle 方法清理 info.introduction --> | ||
292 | + <div v-if="info.introduction" class="tw-mb-[24px]"> | ||
293 | + <div class="text-h6">Introduction</div> | ||
294 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
295 | + <div v-html="clearSpanStyle(info.introduction)"></div> | ||
296 | + </div> | ||
297 | + <!-- 修改位置 5: 使用 clearSpanStyle 方法清理 info.description --> | ||
298 | + <div v-if="info.description" class="tw-mb-[24px]"> | ||
299 | + <div class="text-h6">Description</div> | ||
300 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
301 | + <div v-html="clearSpanStyle(info.description)"></div> | ||
302 | + </div> | ||
303 | + </v-window-item> | ||
304 | + <!-- <div v-if="info.advantage" class="tw-mb-[24px]"> | ||
305 | + <div class="text-h6">Advantage</div> | ||
306 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
307 | + <div v-html="info.advantage"></div> | ||
308 | + </div> | ||
309 | + <div v-if="info.physicalproperty" class="tw-mb-[24px]"> | ||
310 | + <div class="text-h6">Physical Property</div> | ||
311 | + <v-divider class="tw-mb-[12px] html-content"></v-divider> | ||
312 | + <div | ||
313 | + v-html="info.physicalproperty" | ||
314 | + style=" | ||
315 | + overflow-wrap: break-word; | ||
316 | + word-wrap: break-word; | ||
317 | + white-space: pre-wrap; | ||
318 | + line-height: 1.5; | ||
319 | + " | ||
320 | + ></div> | ||
321 | + </div> | ||
322 | + <div v-if="info.storage" class="tw-mb-[24px]"> | ||
323 | + <div class="text-h6">Storage</div> | ||
324 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
325 | + <div v-html="info.storage"></div> | ||
326 | + </div> | ||
327 | + <div v-if="info.introduction" class="tw-mb-[24px]"> | ||
328 | + <div class="text-h6">Introduction</div> | ||
329 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
330 | + <div v-html="info.introduction"></div> | ||
331 | + </div> | ||
332 | + <div v-if="info.description" class="tw-mb-[24px]"> | ||
333 | + <div class="text-h6">Description</div> | ||
334 | + <v-divider class="tw-mb-[12px]"></v-divider> | ||
335 | + <div v-html="info.description"></div> | ||
336 | + </div> | ||
337 | + </v-window-item> --> | ||
338 | + <v-window-item key="2" :value="2"> | ||
339 | + <v-table density="compact" class="table2"> | ||
340 | + <tbody> | ||
341 | + <tr | ||
342 | + class="tr" | ||
343 | + v-for="item in info.productAttributeList || []" | ||
344 | + :key="item.name" | ||
345 | + > | ||
346 | + <td class="td tw-w-[400px]">{{ item.name }}</td> | ||
347 | + <td class="td">{{ item.value }}</td> | ||
348 | + </tr> | ||
349 | + </tbody> | ||
350 | + </v-table> | ||
351 | + </v-window-item> | ||
352 | + <!-- <v-window-item key="3" :value="3"> 2 </v-window-item> --> | ||
353 | + </v-window> | ||
354 | + </div> | ||
355 | + <div style="width: 30%"> | ||
356 | + <v-tabs | ||
357 | + v-model="tabPeriodical" | ||
358 | + color="white" | ||
359 | + bg-color="#eeeeee" | ||
360 | + slider-color="blue-lighten-1" | ||
361 | + selected-class="active" | ||
362 | + grow | ||
363 | + > | ||
364 | + <v-tab value="one">Product-related Journals</v-tab> | ||
365 | + </v-tabs> | ||
366 | + <v-list> | ||
367 | + <v-list-item | ||
368 | + v-for="item in info.journals" | ||
369 | + :key="item.id" | ||
370 | + @click="navigateToUrl(item.link)" | ||
371 | + @mouseenter="hoveredItem = item.id" | ||
372 | + @mouseleave="hoveredItem = null" | ||
373 | + > | ||
374 | + <v-list-item-title> | ||
375 | + <span | ||
376 | + :class="['title', { 'full-title': hoveredItem === item.id }]" | ||
171 | > | 377 | > |
172 | - <td class="td tw-w-[400px]">{{ item.name }}</td> | ||
173 | - <td class="td">{{ item.value }}</td> | ||
174 | - </tr> | ||
175 | - </tbody> | ||
176 | - </v-table> | ||
177 | - </v-window-item> | ||
178 | - <!-- <v-window-item key="3" :value="3"> 2 </v-window-item> --> | ||
179 | - </v-window> | 378 | + {{ item.title }} |
379 | + </span> | ||
380 | + </v-list-item-title> | ||
381 | + </v-list-item> | ||
382 | + </v-list> | ||
383 | + </div> | ||
384 | + </div> | ||
385 | + <v-tabs | ||
386 | + class="tabs" | ||
387 | + v-model="tabRecom" | ||
388 | + color="white" | ||
389 | + bg-color="#eeeeee" | ||
390 | + slider-color="blue-lighten-1" | ||
391 | + selected-class="active" | ||
392 | + v-if="recommendImages[0] !== null" | ||
393 | + > | ||
394 | + <v-tab :value="1">Related Products</v-tab> | ||
395 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
396 | + </v-tabs> | ||
397 | + <div id="image-container" v-if="recommendImages[0] !== null"> | ||
398 | + <div class="recommend-left-box"> | ||
399 | + <v-img | ||
400 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/76c987e13a334be481a346c19c2284f3qy4tjnxps7.png" | ||
401 | + alt="往左移" | ||
402 | + class="recommend-img-left" | ||
403 | + @click="toggleRow" | ||
404 | + /> | ||
405 | + </div> | ||
406 | + <div v-if="currentIndex === 0" class="image-row" id="row1"> | ||
407 | + <!-- <img | ||
408 | + v-for="(imageObj, index) in recommendImages.slice(0, 5)" | ||
409 | + :key="'row1-' + index" | ||
410 | + :src="imageObj[0]?.url" | ||
411 | + :alt="'Image ' + (index + 1)" | ||
412 | + style="margin: 0 5px; width: 200px; height: 200px" | ||
413 | + /> --> | ||
414 | + <div | ||
415 | + v-for="(imageObj, index) in recommendImages.slice(0, 5)" | ||
416 | + :key="'row1-' + index" | ||
417 | + class="imageTotal" | ||
418 | + > | ||
419 | + <a v-if="imageObj" :href="imageObj[0]?.productUrl" target="_blank"> | ||
420 | + <img | ||
421 | + :src="imageObj[0]?.url" | ||
422 | + :alt="'Image ' + (index + 1)" | ||
423 | + class="item-imgHot" | ||
424 | + /> | ||
425 | + <span class="image-name"> | ||
426 | + {{ imageObj[0]?.name }} | ||
427 | + </span> | ||
428 | + </a> | ||
429 | + <div v-else style="width: 200px; height: 200px"></div> | ||
430 | + </div> | ||
431 | + </div> | ||
432 | + <div v-else class="image-row" id="row2"> | ||
433 | + <!-- <img | ||
434 | + v-for="(imageObj, index) in recommendImages.slice(5, 10)" | ||
435 | + :key="'row2-' + index" | ||
436 | + :src="imageObj[0]?.url" | ||
437 | + :alt="'Image ' + (index + 6)" | ||
438 | + style="margin: 0 5px; width: 200px; height: 200px" | ||
439 | + /> --> | ||
440 | + <div | ||
441 | + v-for="(imageObj, index) in recommendImages.slice(5, 10)" | ||
442 | + :key="'row2-' + index" | ||
443 | + class="imageTotal" | ||
444 | + > | ||
445 | + <a v-if="imageObj" :href="imageObj[0]?.productUrl" target="_blank"> | ||
446 | + <img | ||
447 | + :src="imageObj[0]?.url" | ||
448 | + :alt="'Image ' + (index + 6)" | ||
449 | + class="item-imgHot" | ||
450 | + /> | ||
451 | + <span class="image-name"> | ||
452 | + {{ imageObj[0]?.name }} | ||
453 | + </span> | ||
454 | + </a> | ||
455 | + <div | ||
456 | + v-else | ||
457 | + style="width: 200px; height: 200px; margin-right: 10px" | ||
458 | + ></div> | ||
459 | + </div> | ||
460 | + </div> | ||
461 | + <div class="recommend-right-box"> | ||
462 | + <v-img | ||
463 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/b5daa0a8f2f140f5b406e984c730a453iznzlekysg.png" | ||
464 | + alt="往右移" | ||
465 | + class="recommend-img-right" | ||
466 | + @click="toggleRow" | ||
467 | + /> | ||
468 | + </div> | ||
469 | + </div> | ||
470 | + | ||
471 | + <div class="social-share-container"> | ||
472 | + <SocialShare | ||
473 | + network="facebook" | ||
474 | + :styled="true" | ||
475 | + :label="true" | ||
476 | + :title="info.name" | ||
477 | + :url="currentUrl" | ||
478 | + style="color: #1e88e5; width: 140px" | ||
479 | + /> | ||
480 | + | ||
481 | + <SocialShare | ||
482 | + network="twitter" | ||
483 | + :styled="true" | ||
484 | + :label="true" | ||
485 | + :title="info.name" | ||
486 | + :url="currentUrl" | ||
487 | + style="color: #1e88e5; width: 140px" | ||
488 | + /> | ||
489 | + | ||
490 | + <SocialShare | ||
491 | + network="linkedin" | ||
492 | + :styled="true" | ||
493 | + :label="true" | ||
494 | + :title="info.name" | ||
495 | + :url="currentUrl" | ||
496 | + style="color: #1e88e5; width: 140px" | ||
497 | + /> | ||
180 | </div> | 498 | </div> |
181 | </v-container> | 499 | </v-container> |
182 | </template> | 500 | </template> |
@@ -185,20 +503,291 @@ | @@ -185,20 +503,291 @@ | ||
185 | import type { Product, ProductImage } from "~/type"; | 503 | import type { Product, ProductImage } from "~/type"; |
186 | import { onMounted, ref } from "vue"; | 504 | import { onMounted, ref } from "vue"; |
187 | import { useDialogStore } from "~/stores/dialog"; | 505 | import { useDialogStore } from "~/stores/dialog"; |
506 | +import { useRouter, useRoute } from "vue-router"; | ||
507 | +import { useRouteQuery } from "@/stores/route_query"; | ||
508 | + | ||
509 | +const recommendList = ref(); | ||
510 | +const recommendImages = ref(); | ||
511 | +const selectedItem = ref(); | ||
512 | +const tabRecom = ref(0); | ||
513 | +const tabRecommend = ref(0); | ||
514 | +const tabPeriodical = ref(0); | ||
515 | +const route = useRoute(); | ||
516 | +const router = useRouter(); | ||
517 | +const routeQuery = useRouteQuery(); | ||
188 | const dialogStore = useDialogStore(); | 518 | const dialogStore = useDialogStore(); |
519 | +const href1 = ref("/products"); | ||
520 | +const href2 = ref("/products"); | ||
521 | +const idHref = ref("/products"); | ||
522 | +const hoveredItem = ref(null); | ||
523 | +const productStore = useProductListStore(); | ||
524 | +const maxPage = ref(1); | ||
525 | +const tabRecomHot = ref(); | ||
526 | +const recommendListHot = ref(); | ||
527 | +const recommendImagesHot = ref(); | ||
528 | +const currentIndexHot = ref(1); | ||
529 | +const currentUrl = ref("https://www.canrud.com/products"); | ||
530 | +// 定义单个 item 的接口 | ||
531 | +interface BreadcrumbItem { | ||
532 | + title: string; // 标题 | ||
533 | + disabled: boolean; // 是否禁用 | ||
534 | + href: string; // 链接地址 | ||
535 | +} | ||
536 | +// 示例数据 | ||
537 | +const items = ref<BreadcrumbItem[]>([ | ||
538 | + { | ||
539 | + title: "Products", | ||
540 | + disabled: false, | ||
541 | + href: "https://www.canrud.com/products", | ||
542 | + }, | ||
543 | + { | ||
544 | + title: "CATEGORY", | ||
545 | + disabled: false, | ||
546 | + href: href1.value, | ||
547 | + }, | ||
548 | + { | ||
549 | + title: "Not specified", | ||
550 | + disabled: false, | ||
551 | + href: href2.value, | ||
552 | + }, | ||
553 | + { | ||
554 | + title: "Not specified", | ||
555 | + disabled: false, | ||
556 | + href: "/products", | ||
557 | + }, | ||
558 | +]); | ||
189 | 559 | ||
190 | const props = defineProps<{ | 560 | const props = defineProps<{ |
191 | info: Product; | 561 | info: Product; |
192 | }>(); | 562 | }>(); |
193 | const info = props.info; | 563 | const info = props.info; |
564 | +let { data: resData } = await useAsyncData( | ||
565 | + "list", | ||
566 | + () => | ||
567 | + $fetch("/shop/product/list", { | ||
568 | + method: "GET", | ||
569 | + params: { | ||
570 | + pageNo: 1, | ||
571 | + pageSize: 20, | ||
572 | + ids: info.relatedProductIds, | ||
573 | + }, | ||
574 | + }), | ||
575 | + { | ||
576 | + server: true, // 仅在服务器端获取数据 | ||
577 | + } | ||
578 | +); | ||
579 | +const loadHotProducts = async () => { | ||
580 | + let { data: hotProducts } = await useAsyncData( | ||
581 | + "hotProducts", | ||
582 | + () => | ||
583 | + $fetch("/shop/product/hotProducts", { | ||
584 | + method: "GET", | ||
585 | + params: { | ||
586 | + pageNo: currentIndexHot.value, | ||
587 | + pageSize: 5, | ||
588 | + }, | ||
589 | + }), | ||
590 | + { | ||
591 | + server: true, // 仅在服务器端获取数据 | ||
592 | + } | ||
593 | + ); | ||
594 | + recommendListHot.value = hotProducts.value.data.records; | ||
595 | + maxPage.value = hotProducts.value.data.pages; | ||
596 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
597 | + recommendImagesHot.value = Array.from({ length: 5 }).map((_, index) => { | ||
598 | + const item = recommendListHot.value[index]; | ||
599 | + if (!item) { | ||
600 | + return null; | ||
601 | + } | ||
602 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
603 | + if (typeof item.productimageliststore === "string") { | ||
604 | + try { | ||
605 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
606 | + } catch (error) { | ||
607 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
608 | + } | ||
609 | + } | ||
610 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
611 | + (productItem: ProductImage) => ({ | ||
612 | + ...productItem, | ||
613 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
614 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
615 | + name: item.name, | ||
616 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
617 | + }) | ||
618 | + )); | ||
619 | + return ree; | ||
620 | + }); | ||
621 | +}; | ||
622 | +const clearSpanStyle = (htmlContent) => { | ||
623 | + if (!htmlContent) return ""; // 检查是否为空 | ||
624 | + // 创建一个 DOM 解析器 | ||
625 | + const parser = new DOMParser(); | ||
626 | + const doc = parser.parseFromString(htmlContent, "text/html"); | ||
627 | + | ||
628 | + // 清理 span 的 style 属性 | ||
629 | + const spans = doc.querySelectorAll("span"); | ||
630 | + spans.forEach((span) => { | ||
631 | + span.removeAttribute("style"); // 清空 style 属性 | ||
632 | + }); | ||
633 | + | ||
634 | + // 修改 img 的 style 属性,追加 width: 100% | ||
635 | + const imgs = doc.querySelectorAll("img"); | ||
636 | + imgs.forEach((img) => { | ||
637 | + const style = img.getAttribute("style") || ""; // 获取现有 style | ||
638 | + if (!style.includes("width: 100%")) { | ||
639 | + img.setAttribute("style", `${style} width: 100%;`.trim()); // 添加 width: 100% | ||
640 | + } | ||
641 | + }); | ||
642 | + | ||
643 | + // 返回处理后的 HTML | ||
644 | + return doc.body.innerHTML; | ||
645 | +}; | ||
646 | +const toggleRowLeft = () => { | ||
647 | + if (currentIndexHot.value !== 1) { | ||
648 | + currentIndexHot.value--; | ||
649 | + } else if (currentIndexHot.value == 1) { | ||
650 | + currentIndexHot.value = maxPage.value; | ||
651 | + } | ||
652 | +}; | ||
653 | +const toggleRowRight = () => { | ||
654 | + if (currentIndexHot.value < maxPage.value) { | ||
655 | + currentIndexHot.value++; | ||
656 | + } else if (currentIndexHot.value == maxPage.value) { | ||
657 | + currentIndexHot.value = 1; | ||
658 | + } | ||
659 | +}; | ||
660 | +watch(currentIndexHot, (newIndex) => { | ||
661 | + loadHotProducts(); // Call loadHotProducts when currentIndex changes | ||
662 | +}); | ||
663 | + | ||
664 | +// Initial load of hot products | ||
665 | +await loadHotProducts(); // Load hot products the first time | ||
666 | + | ||
667 | +watchEffect(() => { | ||
668 | + console.log(info, "5656info"); | ||
669 | + currentUrl.value = "https://www.canrud.com/products/detail/" + info.id; | ||
670 | + if (info?.productCrumbsVO?.category1 && productStore.keyword) { | ||
671 | + items.value[1].title = info.productCrumbsVO.category1; | ||
672 | + items.value[1].href = | ||
673 | + "https://www.canrud.com/products?categories=" + | ||
674 | + info.productCrumbsVO.category1; | ||
675 | + href1.value = | ||
676 | + "https://www.canrud.com/products?categories=" + | ||
677 | + info.productCrumbsVO.category1; | ||
678 | + if (info?.productCrumbsVO?.category2) { | ||
679 | + items.value[2].title = info.productCrumbsVO.category2; | ||
680 | + href2.value = href1.value + "," + info.productCrumbsVO.category2; | ||
681 | + items.value[2].href = href1.value + "," + info.productCrumbsVO.category2; | ||
682 | + } | ||
683 | + if (info?.productCrumbsVO?.function) { | ||
684 | + // items.value.push({ | ||
685 | + // title: info.productCrumbsVO.function, | ||
686 | + // disabled: false, | ||
687 | + // href: href2.value + "&function=" + info.productCrumbsVO.function, | ||
688 | + // }); | ||
689 | + items.value[3].title = info.productCrumbsVO.function; | ||
690 | + items.value[3].href = | ||
691 | + href2.value + "&function=" + info.productCrumbsVO.function; | ||
692 | + } | ||
693 | + } else if (routeQuery.categories) { | ||
694 | + if (!routeQuery.categories.includes("Energy materials")) { | ||
695 | + routeQuery.updateFunction("Not specified"); | ||
696 | + } | ||
697 | + const categories = routeQuery.categories.split(","); | ||
698 | + const mainCategory = categories[0].trim(); // 取第一个值 | ||
699 | + const subCategoryName = ref( | ||
700 | + categories[1] ? categories[1].trim() : "Not specified" | ||
701 | + ); // 取第二个值(如果存在) | ||
702 | + if (subCategoryName.value == "Accessories & fixtures") { | ||
703 | + subCategoryName.value = encodeURIComponent("Accessories & fixtures"); | ||
704 | + items.value[2].title = "Accessories & fixtures"; | ||
705 | + } else { | ||
706 | + items.value[2].title = subCategoryName.value; | ||
707 | + } | ||
708 | + items.value[1].title = mainCategory; | ||
709 | + items.value[1].href = | ||
710 | + "https://www.canrud.com/products?categories=" + mainCategory; | ||
711 | + href1.value = "https://www.canrud.com/products?categories=" + mainCategory; | ||
712 | + // items.value[1].title = subCategoryName.value; | ||
713 | + href2.value = href1.value + "," + subCategoryName.value; | ||
714 | + items.value[2].href = href1.value + "," + subCategoryName.value; | ||
715 | + if (routeQuery?.selectedFunction) { | ||
716 | + // items.value.push({ | ||
717 | + // title: routeQuery.selectedFunction, | ||
718 | + // disabled: false, | ||
719 | + // href: href2.value + "&function=" + routeQuery.selectedFunction, | ||
720 | + // }); | ||
721 | + items.value[3].title = routeQuery.selectedFunction; | ||
722 | + items.value[3].href = | ||
723 | + href2.value + "&function=" + routeQuery.selectedFunction; | ||
724 | + // routeQuery.updateFunction(null); | ||
725 | + } | ||
726 | + } else if (info?.productCrumbsVO?.category1) { | ||
727 | + items.value[1].title = info.productCrumbsVO.category1; | ||
728 | + items.value[1].href = | ||
729 | + "https://www.canrud.com/products?categories=" + | ||
730 | + info.productCrumbsVO.category1; | ||
731 | + href1.value = | ||
732 | + "https://www.canrud.com/products?categories=" + | ||
733 | + info.productCrumbsVO.category1; | ||
734 | + if (info?.productCrumbsVO?.category2) { | ||
735 | + items.value[2].title = info.productCrumbsVO.category2; | ||
736 | + href2.value = href1.value + "," + info.productCrumbsVO.category2; | ||
737 | + items.value[2].href = href1.value + "," + info.productCrumbsVO.category2; | ||
738 | + } | ||
739 | + if (info?.productCrumbsVO?.function) { | ||
740 | + // items.value.push({ | ||
741 | + // title: info.productCrumbsVO.function, | ||
742 | + // disabled: false, | ||
743 | + // href: href2.value + "&function=" + info.productCrumbsVO.function, | ||
744 | + // }); | ||
745 | + items.value[3].title = info.productCrumbsVO.function; | ||
746 | + items.value[3].href = | ||
747 | + href2.value + "&function=" + info.productCrumbsVO.function; | ||
748 | + } | ||
749 | + } | ||
750 | + recommendList.value = resData.value.data.records; | ||
194 | 751 | ||
752 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
753 | + recommendImages.value = Array.from({ length: 10 }).map((_, index) => { | ||
754 | + const item = recommendList.value[index]; | ||
755 | + if (!item) { | ||
756 | + return null; | ||
757 | + } | ||
758 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
759 | + if (typeof item.productimageliststore === "string") { | ||
760 | + try { | ||
761 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
762 | + } catch (error) { | ||
763 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
764 | + } | ||
765 | + } | ||
766 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
767 | + (productItem: ProductImage) => ({ | ||
768 | + ...productItem, | ||
769 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
770 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
771 | + name: item.name, | ||
772 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
773 | + }) | ||
774 | + )); | ||
775 | + return ree; | ||
776 | + }); | ||
777 | +}); | ||
195 | // onMounted(() => { | 778 | // onMounted(() => { |
196 | // dialogStore.updateDialog(true) | 779 | // dialogStore.updateDialog(true) |
197 | // }) | 780 | // }) |
781 | +const currentIndex = ref(0); | ||
782 | +const navigateToUrl = (url) => { | ||
783 | + window.open(url); // 在新标签页中打开链接 | ||
784 | +}; | ||
785 | +const toggleRow = () => { | ||
786 | + currentIndex.value = currentIndex.value === 0 ? 1 : 0; | ||
787 | +}; | ||
198 | 788 | ||
199 | const tab = ref(0); | 789 | const tab = ref(0); |
200 | const slide = ref(0); | 790 | const slide = ref(0); |
201 | -const router = useRouter(); | ||
202 | </script> | 791 | </script> |
203 | 792 | ||
204 | <style lang="scss" scoped> | 793 | <style lang="scss" scoped> |
@@ -206,10 +795,32 @@ const router = useRouter(); | @@ -206,10 +795,32 @@ const router = useRouter(); | ||
206 | border-top: 3px solid #1f88e5 !important; | 795 | border-top: 3px solid #1f88e5 !important; |
207 | } | 796 | } |
208 | 797 | ||
209 | -.tabs { | ||
210 | - border-bottom: 2px solid #1f88e5; | 798 | +@media screen and (min-width: 1537px) { |
799 | + .tabs { | ||
800 | + border-bottom: 2px solid #1f88e5; | ||
801 | + margin: 10px auto 20px; | ||
802 | + width: 100%; | ||
803 | + } | ||
804 | +} | ||
805 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
806 | + .tabs { | ||
807 | + border-bottom: 2px solid #1f88e5; | ||
808 | + margin: 10px auto 40px; | ||
809 | + width: 100%; | ||
810 | + } | ||
811 | +} | ||
812 | +@media screen and (max-width: 1280px) { | ||
813 | + .tabs { | ||
814 | + border-bottom: 2px solid #1f88e5; | ||
815 | + margin: 10px auto 40px; | ||
816 | + width: 100%; | ||
817 | + } | ||
211 | } | 818 | } |
212 | 819 | ||
820 | +// .tabs { | ||
821 | +// border-bottom: 2px solid #1f88e5; | ||
822 | +// } | ||
823 | + | ||
213 | .active { | 824 | .active { |
214 | background-color: #1086e8; | 825 | background-color: #1086e8; |
215 | } | 826 | } |
@@ -231,4 +842,234 @@ th { | @@ -231,4 +842,234 @@ th { | ||
231 | border-bottom: 1px solid #dcdcdc !important; | 842 | border-bottom: 1px solid #dcdcdc !important; |
232 | } | 843 | } |
233 | } | 844 | } |
845 | + | ||
846 | +.tw-sticky { | ||
847 | + position: sticky; | ||
848 | +} | ||
849 | + | ||
850 | +.carousel-container { | ||
851 | + position: relative; | ||
852 | +} | ||
853 | + | ||
854 | +.table-container { | ||
855 | + overflow-x: auto; /* 防止表格超出页面宽度 */ | ||
856 | +} | ||
857 | + | ||
858 | +.table1 { | ||
859 | + width: 100%; | ||
860 | + min-width: 600px; /* 设置表格最小宽度 */ | ||
861 | +} | ||
862 | + | ||
863 | +.tr { | ||
864 | + border-bottom: 1px solid #e0e0e0; /* 表格行样式 */ | ||
865 | +} | ||
866 | + | ||
867 | +.headerBorder { | ||
868 | + border-bottom: 2px solid #ccc; /* 表头边框 */ | ||
869 | +} | ||
870 | + | ||
871 | +.text-grey-darken-4 { | ||
872 | + color: #333; /* 表格文字颜色 */ | ||
873 | +} | ||
874 | +.breadcrumb-disabled { | ||
875 | + color: black; | ||
876 | + pointer-events: none; /* 禁用点击 */ | ||
877 | + text-decoration: none; /* 移除链接样式 */ | ||
878 | +} | ||
879 | + | ||
880 | +.breadcrumb-active { | ||
881 | + color: #1e88e5; | ||
882 | +} | ||
883 | + | ||
884 | +@media screen and (min-width: 1537px) { | ||
885 | + #image-container { | ||
886 | + display: flex; | ||
887 | + align-items: center; | ||
888 | + justify-content: center; | ||
889 | + height: 320px; | ||
890 | + margin: 10px auto 80px; | ||
891 | + width: 100%; | ||
892 | + } | ||
893 | +} | ||
894 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
895 | + #image-container { | ||
896 | + display: flex; | ||
897 | + align-items: center; | ||
898 | + justify-content: center; | ||
899 | + height: 320px; | ||
900 | + margin: 10px auto 0px; | ||
901 | + width: 80%; | ||
902 | + padding: 0; | ||
903 | + } | ||
904 | +} | ||
905 | +@media screen and (max-width: 1280px) { | ||
906 | + #image-container { | ||
907 | + display: flex; | ||
908 | + align-items: center; | ||
909 | + justify-content: center; | ||
910 | + height: 320px; | ||
911 | + margin: 10px auto 0px; | ||
912 | + width: 80%; | ||
913 | + padding: 0; | ||
914 | + } | ||
915 | +} | ||
916 | +.image-row { | ||
917 | + display: flex; | ||
918 | + height: 245px; | ||
919 | +} | ||
920 | +@media screen and (min-width: 1537px) { | ||
921 | + .imageTotal { | ||
922 | + display: inline-block; | ||
923 | + margin: 0 5px; | ||
924 | + text-align: center; | ||
925 | + width: 300px; | ||
926 | + } | ||
927 | +} | ||
928 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
929 | + .imageTotal { | ||
930 | + display: inline-block; | ||
931 | + margin: 0 5px; | ||
932 | + text-align: center; | ||
933 | + width: 200px; | ||
934 | + } | ||
935 | +} | ||
936 | +@media screen and (max-width: 1280px) { | ||
937 | + .imageTotal { | ||
938 | + display: inline-block; | ||
939 | + margin: 0 5px; | ||
940 | + text-align: center; | ||
941 | + width: 200px; | ||
942 | + } | ||
943 | +} | ||
944 | +@media screen and (min-width: 1537px) { | ||
945 | + .image-row img { | ||
946 | + width: 200px; | ||
947 | + height: 200px; | ||
948 | + } | ||
949 | +} | ||
950 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
951 | + .image-row img { | ||
952 | + width: 140px; | ||
953 | + height: 140px; | ||
954 | + } | ||
955 | +} | ||
956 | +@media screen and (max-width: 1280px) { | ||
957 | + .image-row img { | ||
958 | + width: 160px; | ||
959 | + height: 160px; | ||
960 | + } | ||
961 | +} | ||
962 | +@media screen and (min-width: 1537px) { | ||
963 | + .image-name { | ||
964 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
965 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
966 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
967 | + overflow: hidden; /* Hides the overflowed text */ | ||
968 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
969 | + margin-top: 5px; | ||
970 | + font-size: 16px; | ||
971 | + width: 180px; | ||
972 | + color: #555; | ||
973 | + text-align: center; /* Centers the text horizontally */ | ||
974 | + margin-left: 50px; | ||
975 | + } | ||
976 | +} | ||
977 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
978 | + .image-name { | ||
979 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
980 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
981 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
982 | + overflow: hidden; /* Hides the overflowed text */ | ||
983 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
984 | + margin-top: 5px; | ||
985 | + font-size: 16px; | ||
986 | + width: 180px; | ||
987 | + color: #555; | ||
988 | + text-align: center; /* Centers the text horizontally */ | ||
989 | + margin-left: 10px; | ||
990 | + } | ||
991 | +} | ||
992 | +@media screen and (max-width: 1280px) { | ||
993 | + .image-name { | ||
994 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
995 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
996 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
997 | + overflow: hidden; /* Hides the overflowed text */ | ||
998 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
999 | + margin-top: 5px; | ||
1000 | + font-size: 16px; | ||
1001 | + width: 180px; | ||
1002 | + color: #555; | ||
1003 | + text-align: center; /* Centers the text horizontally */ | ||
1004 | + margin-left: 20px; | ||
1005 | + } | ||
1006 | +} | ||
1007 | + | ||
1008 | +button .recommendButton { | ||
1009 | + margin: 0 0px; | ||
1010 | + cursor: pointer; | ||
1011 | +} | ||
1012 | + | ||
1013 | +.recommend-left-box { | ||
1014 | +} | ||
1015 | + | ||
1016 | +.recommend-img-left { | ||
1017 | + width: 26px; | ||
1018 | + height: 27px; | ||
1019 | + margin-right: 30px; | ||
1020 | + margin-bottom: 50px; | ||
1021 | +} | ||
1022 | + | ||
1023 | +.recommend-img-left:hover { | ||
1024 | + cursor: pointer; | ||
1025 | +} | ||
1026 | +.recommend-right-box { | ||
1027 | +} | ||
1028 | + | ||
1029 | +.recommend-img-right { | ||
1030 | + width: 26px; | ||
1031 | + height: 27px; | ||
1032 | + margin-left: 30px; | ||
1033 | + margin-bottom: 50px; | ||
1034 | +} | ||
1035 | + | ||
1036 | +.recommend-img-right:hover { | ||
1037 | + cursor: pointer; | ||
1038 | +} | ||
1039 | + | ||
1040 | +.social-share-container { | ||
1041 | + display: flex; | ||
1042 | + flex-direction: row; /* 父容器横向排列 */ | ||
1043 | + gap: 1rem; /* 设置每个分享项之间的间距 */ | ||
1044 | + margin-top: 40px; | ||
1045 | +} | ||
1046 | + | ||
1047 | +.social-share-item { | ||
1048 | + display: flex; | ||
1049 | + flex-direction: row; /* 每个分享项横向排列 */ | ||
1050 | + align-items: center; /* 垂直居中对齐 */ | ||
1051 | + gap: 0.5rem; /* 标题与按钮之间的间距 */ | ||
1052 | +} | ||
1053 | + | ||
1054 | +.social-share-title { | ||
1055 | + font-size: 1rem; | ||
1056 | + font-weight: bold; | ||
1057 | +} | ||
1058 | + | ||
1059 | +.title { | ||
1060 | + font-size: 15px; /* 设置字体大小为24px */ | ||
1061 | + color: black; /* 设置字体颜色为黑色 */ | ||
1062 | + display: -webkit-box; /* 使用盒模型显示多行文本 */ | ||
1063 | + -webkit-line-clamp: 2; /* 限制为两行 */ | ||
1064 | + -webkit-box-orient: vertical; /* 盒子方向为垂直 */ | ||
1065 | + overflow: hidden; /* 超过部分隐藏 */ | ||
1066 | + transition: max-height 0.3s ease; /* 过渡效果 */ | ||
1067 | +} | ||
1068 | + | ||
1069 | +.full-title { | ||
1070 | + display: block; /* 当悬浮时显示为块级元素 */ | ||
1071 | + color: #1e88e5; | ||
1072 | + white-space: normal; /* 允许换行 */ | ||
1073 | + overflow: visible; /* 显示全部内容 */ | ||
1074 | +} | ||
234 | </style> | 1075 | </style> |
deploy/prod2.sh
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | # 变量定义 | 2 | # 变量定义 |
3 | -LAST_TAG="1.0.15" | ||
4 | -TAG="1.0.16" | 3 | +LAST_TAG="1.0.40" |
4 | +TAG="1.0.41" | ||
5 | TARGET_PATH="/root/web/canrud-outside-nuxt-front" | 5 | TARGET_PATH="/root/web/canrud-outside-nuxt-front" |
6 | DOCKERFILE_PATH="/root/web/canrud-outside-nuxt-front/canrud-nuxt-front" | 6 | DOCKERFILE_PATH="/root/web/canrud-outside-nuxt-front/canrud-nuxt-front" |
7 | IMAGE_NAME="canrud-outside-front" | 7 | IMAGE_NAME="canrud-outside-front" |
nuxt.config.ts
@@ -20,7 +20,16 @@ export default defineNuxtConfig({ | @@ -20,7 +20,16 @@ export default defineNuxtConfig({ | ||
20 | // baseURL: 'http://47.89.254.121:8002/shop' || 'http://39.108.227.113:8002' // Exposed to the frontend as well. | 20 | // baseURL: 'http://47.89.254.121:8002/shop' || 'http://39.108.227.113:8002' // Exposed to the frontend as well. |
21 | // } | 21 | // } |
22 | // }, | 22 | // }, |
23 | - modules: ["vuetify-nuxt-module", "@pinia/nuxt", "@nuxtjs/i18n"], | 23 | + modules: [ |
24 | + "vuetify-nuxt-module", | ||
25 | + "@pinia/nuxt", | ||
26 | + "@nuxtjs/i18n", | ||
27 | + "@stefanobartoletti/nuxt-social-share", | ||
28 | + ], | ||
29 | + // optional configuration, should be added manually | ||
30 | + socialShare: { | ||
31 | + // module options | ||
32 | + }, | ||
24 | vuetify: { | 33 | vuetify: { |
25 | moduleOptions: { | 34 | moduleOptions: { |
26 | /* module specific options */ | 35 | /* module specific options */ |
package-lock.json
@@ -8,6 +8,7 @@ | @@ -8,6 +8,7 @@ | ||
8 | "hasInstallScript": true, | 8 | "hasInstallScript": true, |
9 | "dependencies": { | 9 | "dependencies": { |
10 | "@pinia/nuxt": "^0.5.1", | 10 | "@pinia/nuxt": "^0.5.1", |
11 | + "@stefanobartoletti/nuxt-social-share": "^1.2.0", | ||
11 | "lodash": "^4.17.21", | 12 | "lodash": "^4.17.21", |
12 | "nuxt": "^3.11.2", | 13 | "nuxt": "^3.11.2", |
13 | "vue": "^3.4.27", | 14 | "vue": "^3.4.27", |
@@ -2440,6 +2441,15 @@ | @@ -2440,6 +2441,15 @@ | ||
2440 | "url": "https://github.com/sponsors/sindresorhus" | 2441 | "url": "https://github.com/sponsors/sindresorhus" |
2441 | } | 2442 | } |
2442 | }, | 2443 | }, |
2444 | + "node_modules/@stefanobartoletti/nuxt-social-share": { | ||
2445 | + "version": "1.2.0", | ||
2446 | + "resolved": "https://registry.npmmirror.com/@stefanobartoletti/nuxt-social-share/-/nuxt-social-share-1.2.0.tgz", | ||
2447 | + "integrity": "sha512-iehssGh971g49CFU3A9leUpAgrLMb9gPFIO7OORyh6ghclc6HNr7QaGnOXihAM0VTJRIqiL3f3AEMiAvwT79Kg==", | ||
2448 | + "dependencies": { | ||
2449 | + "@nuxt/kit": "^3.13.2", | ||
2450 | + "defu": "^6.1.4" | ||
2451 | + } | ||
2452 | + }, | ||
2443 | "node_modules/@tailwindcss/aspect-ratio": { | 2453 | "node_modules/@tailwindcss/aspect-ratio": { |
2444 | "version": "0.4.2", | 2454 | "version": "0.4.2", |
2445 | "resolved": "https://registry.npmmirror.com/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", | 2455 | "resolved": "https://registry.npmmirror.com/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz", |
package.json
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | }, | 11 | }, |
12 | "dependencies": { | 12 | "dependencies": { |
13 | "@pinia/nuxt": "^0.5.1", | 13 | "@pinia/nuxt": "^0.5.1", |
14 | + "@stefanobartoletti/nuxt-social-share": "^1.2.0", | ||
14 | "lodash": "^4.17.21", | 15 | "lodash": "^4.17.21", |
15 | "nuxt": "^3.11.2", | 16 | "nuxt": "^3.11.2", |
16 | "vue": "^3.4.27", | 17 | "vue": "^3.4.27", |
@@ -25,4 +26,4 @@ | @@ -25,4 +26,4 @@ | ||
25 | "sass": "^1.77.1", | 26 | "sass": "^1.77.1", |
26 | "tailwindcss": "^3.4.3" | 27 | "tailwindcss": "^3.4.3" |
27 | } | 28 | } |
28 | -} | ||
29 | \ No newline at end of file | 29 | \ No newline at end of file |
30 | +} |
pages/index.vue
1 | <template> | 1 | <template> |
2 | <v-rows class="tw-w-full"> | 2 | <v-rows class="tw-w-full"> |
3 | - <v-carousel hide-delimiter-background show-arrows="hover" height="auto" v-if="!isMobile()"> | ||
4 | - <v-carousel-item v-for="banner in banners" :src="banner" cover alt="canrud" :key="banner"> | 3 | + <v-carousel |
4 | + hide-delimiter-background | ||
5 | + show-arrows="hover" | ||
6 | + height="auto" | ||
7 | + v-if="!isMobile()" | ||
8 | + > | ||
9 | + <v-carousel-item | ||
10 | + v-for="banner in banners" | ||
11 | + :src="banner" | ||
12 | + cover | ||
13 | + alt="canrud" | ||
14 | + :key="banner" | ||
15 | + > | ||
5 | </v-carousel-item> | 16 | </v-carousel-item> |
6 | </v-carousel> | 17 | </v-carousel> |
7 | - <v-carousel hide-delimiter-background show-arrows="hover" height="auto" v-if="isMobile()"> | ||
8 | - <v-carousel-item v-for="banner in mobileBanners" :src="banner" cover alt="canrud" :key="banner"> | 18 | + <v-carousel |
19 | + hide-delimiter-background | ||
20 | + show-arrows="hover" | ||
21 | + height="auto" | ||
22 | + v-if="isMobile()" | ||
23 | + > | ||
24 | + <v-carousel-item | ||
25 | + v-for="banner in mobileBanners" | ||
26 | + :src="banner" | ||
27 | + cover | ||
28 | + alt="canrud" | ||
29 | + :key="banner" | ||
30 | + > | ||
9 | </v-carousel-item> | 31 | </v-carousel-item> |
10 | </v-carousel> | 32 | </v-carousel> |
11 | </v-rows> | 33 | </v-rows> |
34 | + <v-tabs | ||
35 | + class="tabs" | ||
36 | + v-model="tabRecom" | ||
37 | + color="white" | ||
38 | + bg-color="#eeeeee" | ||
39 | + style="margin-top: 40px" | ||
40 | + slider-color="blue-lighten-1" | ||
41 | + selected-class="active" | ||
42 | + v-if="recommendImages[0] !== null && !isMobile()" | ||
43 | + > | ||
44 | + <v-tab :value="1">Best Sellers</v-tab> | ||
45 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
46 | + </v-tabs> | ||
47 | + <div id="image-container" v-if="recommendImages[0] !== null && !isMobile()"> | ||
48 | + <div class="recommend-left-box"> | ||
49 | + <v-img | ||
50 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/76c987e13a334be481a346c19c2284f3qy4tjnxps7.png" | ||
51 | + alt="往左移" | ||
52 | + class="recommend-img-left" | ||
53 | + @click="toggleRowLeft" | ||
54 | + /> | ||
55 | + </div> | ||
56 | + <div class="image-row" id="row1"> | ||
57 | + <!-- <img | ||
58 | + v-for="(imageObj, index) in recommendImages.slice(0, 5)" | ||
59 | + :key="'row1-' + index" | ||
60 | + :src="imageObj[0]?.url" | ||
61 | + :alt="'Image ' + (index + 1)" | ||
62 | + style="margin: 0 5px; width: 200px; height: 200px" | ||
63 | + /> --> | ||
64 | + <div | ||
65 | + v-for="(imageObj, index) in recommendImages" | ||
66 | + :key="'row1-' + index" | ||
67 | + class="imageTotal" | ||
68 | + > | ||
69 | + <a v-if="imageObj" :href="imageObj[0]?.productUrl" target="_blank"> | ||
70 | + <img | ||
71 | + :src="imageObj[0]?.url" | ||
72 | + :alt="'Image ' + (index + 1)" | ||
73 | + class="item-imgHot" | ||
74 | + /> | ||
75 | + <span class="image-name"> | ||
76 | + {{ imageObj[0]?.name }} | ||
77 | + </span> | ||
78 | + </a> | ||
79 | + <div v-else style="width: 200px; height: 200px"></div> | ||
80 | + </div> | ||
81 | + </div> | ||
82 | + <div class="recommend-right-box"> | ||
83 | + <v-img | ||
84 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/b5daa0a8f2f140f5b406e984c730a453iznzlekysg.png" | ||
85 | + alt="往右移" | ||
86 | + class="recommend-img-right" | ||
87 | + @click="toggleRowRight" | ||
88 | + /> | ||
89 | + </div> | ||
90 | + </div> | ||
91 | + <div style="padding-left: 16px; padding-right: 16px"> | ||
92 | + <v-tabs | ||
93 | + class="tabs2" | ||
94 | + ref="tabs2" | ||
95 | + v-model="tabRecom" | ||
96 | + style="margin-top: 25px; margin-bottom: 20px; width: 100%" | ||
97 | + color="white" | ||
98 | + bg-color="#eeeeee" | ||
99 | + slider-color="blue-lighten-1" | ||
100 | + selected-class="active" | ||
101 | + v-if="isMobile()" | ||
102 | + > | ||
103 | + <v-tab :value="1">Best Sellers</v-tab> | ||
104 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
105 | + </v-tabs> | ||
106 | + <div class="tw-text-center" v-if="hotLoading && isMobile()"> | ||
107 | + <v-progress-circular | ||
108 | + color="blue-lighten-2" | ||
109 | + indeterminate | ||
110 | + size="64" | ||
111 | + class="tw-m-auto" | ||
112 | + ></v-progress-circular> | ||
113 | + </div> | ||
114 | + <v-item-group multiple v-if="isMobile()"> | ||
115 | + <v-row v-if="!hotLoading"> | ||
116 | + <v-col | ||
117 | + v-for="(item, i) in recommendImages" | ||
118 | + :key="i" | ||
119 | + cols="6" | ||
120 | + lg="3" | ||
121 | + md="4" | ||
122 | + sm="6" | ||
123 | + > | ||
124 | + <div v-if="item !== null"> | ||
125 | + <v-card :elevation="4" class="mx-auto" :href="item[0].productUrl"> | ||
126 | + <v-img | ||
127 | + :src="item[0].url" | ||
128 | + :alt="item[0].name" | ||
129 | + eager | ||
130 | + class="d-block" | ||
131 | + /> | ||
132 | + <v-card-text class="tw-text-left font-weight-medium title"> | ||
133 | + <h4>{{ item[0].name }}</h4> | ||
134 | + </v-card-text> | ||
135 | + </v-card> | ||
136 | + </div> | ||
137 | + </v-col> | ||
138 | + </v-row> | ||
139 | + </v-item-group> | ||
140 | + <v-row v-if="isMobile()"> | ||
141 | + <v-col> | ||
142 | + <v-pagination | ||
143 | + :size="isMobile() ? 'small' : 'default'" | ||
144 | + v-if="hotTotal" | ||
145 | + v-model="currentIndex" | ||
146 | + @update:modelValue="toggleRowMobile" | ||
147 | + :length="hotLength" | ||
148 | + rounded="0" | ||
149 | + class="tw-float-right tw-mt-[32px]" | ||
150 | + total-visible="5" | ||
151 | + ></v-pagination></v-col | ||
152 | + ></v-row> | ||
153 | + </div> | ||
12 | <!-- 能源材料 --> | 154 | <!-- 能源材料 --> |
13 | <div class="tw-py-8 py-sm-16"> | 155 | <div class="tw-py-8 py-sm-16"> |
14 | <v-container> | 156 | <v-container> |
15 | - <MainTitleListOdd title="Material Reagents" :list="materials" | ||
16 | - desc="Leading global provider of energy storage research materials and providing other professional/universal experimental materials. " /> | 157 | + <MainTitleListOdd |
158 | + title="Material Reagents" | ||
159 | + :list="materials" | ||
160 | + desc="Leading global provider of energy storage research materials and providing other professional/universal experimental materials. " | ||
161 | + /> | ||
17 | </v-container> | 162 | </v-container> |
18 | </div> | 163 | </div> |
19 | 164 | ||
20 | <!-- 设备 --> | 165 | <!-- 设备 --> |
21 | <div class="bg-grey-lighten-5 tw-py-8 py-sm-16"> | 166 | <div class="bg-grey-lighten-5 tw-py-8 py-sm-16"> |
22 | <v-container> | 167 | <v-container> |
23 | - <MainTitleList title="Lab Device" listType="equipment" | 168 | + <MainTitleList |
169 | + title="Lab Device" | ||
170 | + listType="equipment" | ||
24 | :list="lab.list.map((item) => ({ ...item, href: '/products' }))" | 171 | :list="lab.list.map((item) => ({ ...item, href: '/products' }))" |
25 | desc="Self-built High-precision Machining Center with Powerful Design and Manufacturing Capabilities. " | 172 | desc="Self-built High-precision Machining Center with Powerful Design and Manufacturing Capabilities. " |
26 | - href="/equipment" /> | 173 | + href="/equipment" |
174 | + /> | ||
27 | </v-container> | 175 | </v-container> |
28 | </div> | 176 | </div> |
29 | 177 | ||
30 | <!-- Customized Battery --> | 178 | <!-- Customized Battery --> |
31 | <div class="tw-py-8 py-sm-16"> | 179 | <div class="tw-py-8 py-sm-16"> |
32 | <v-container> | 180 | <v-container> |
33 | - <MainTitleList :title="('Customized Battery')" :list="batteries" href="/customize" | ||
34 | - desc="200mAh~10Ah, Winding/Stacking, Unfilled/Filled Electrolyte Cells, Three-Electrode, and More. " /> | 181 | + <MainTitleList |
182 | + :title="'Customized Battery'" | ||
183 | + :list="batteries" | ||
184 | + href="/customize" | ||
185 | + desc="200mAh~10Ah, Winding/Stacking, Unfilled/Filled Electrolyte Cells, Three-Electrode, and More. " | ||
186 | + /> | ||
35 | </v-container> | 187 | </v-container> |
36 | </div> | 188 | </div> |
37 | <!-- Testing --> | 189 | <!-- Testing --> |
38 | <div class="bg-grey-lighten-5 tw-py-8 py-sm-16"> | 190 | <div class="bg-grey-lighten-5 tw-py-8 py-sm-16"> |
39 | <v-container> | 191 | <v-container> |
40 | - <MainTitleList title="Testing" :list="tests" href="/test" | ||
41 | - desc="Self built testing center and signed strategic cooperation with ATL, Tsinghua and other units. " /> | 192 | + <MainTitleList |
193 | + title="Testing" | ||
194 | + :list="tests" | ||
195 | + href="/test" | ||
196 | + desc="Self built testing center and signed strategic cooperation with ATL, Tsinghua and other units. " | ||
197 | + /> | ||
42 | </v-container> | 198 | </v-container> |
43 | </div> | 199 | </div> |
44 | <!-- Pack --> | 200 | <!-- Pack --> |
45 | <div class="pt-8 pb-8 pt pt-sm-16 pb-sm-32"> | 201 | <div class="pt-8 pb-8 pt pt-sm-16 pb-sm-32"> |
46 | <v-container> | 202 | <v-container> |
47 | - <MainTitleList title="Pack" href="/pack" :list="packs" | ||
48 | - desc="Focusing on energy materials/new energy storage systems/modules and other fields, mastering advanced technologies to provide high-quality services. " /> | 203 | + <MainTitleList |
204 | + title="Pack" | ||
205 | + href="/pack" | ||
206 | + :list="packs" | ||
207 | + desc="Focusing on energy materials/new energy storage systems/modules and other fields, mastering advanced technologies to provide high-quality services. " | ||
208 | + /> | ||
49 | </v-container> | 209 | </v-container> |
50 | </div> | 210 | </div> |
211 | + <div style="padding-left: 16px; padding-right: 16px; padding-bottom: 30px"> | ||
212 | + <v-tabs | ||
213 | + class="tabs2" | ||
214 | + ref="tabs2" | ||
215 | + v-model="tabRecom" | ||
216 | + style="margin-top: 25px; margin-bottom: 20px; width: 100%" | ||
217 | + color="white" | ||
218 | + bg-color="#eeeeee" | ||
219 | + slider-color="blue-lighten-1" | ||
220 | + selected-class="active" | ||
221 | + v-if="isMobile()" | ||
222 | + > | ||
223 | + <v-tab :value="1">Best Sellers</v-tab> | ||
224 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
225 | + </v-tabs> | ||
226 | + <div class="tw-text-center" v-if="hotLoading && isMobile()"> | ||
227 | + <v-progress-circular | ||
228 | + color="blue-lighten-2" | ||
229 | + indeterminate | ||
230 | + size="64" | ||
231 | + class="tw-m-auto" | ||
232 | + ></v-progress-circular> | ||
233 | + </div> | ||
234 | + <v-item-group multiple v-if="isMobile()"> | ||
235 | + <v-row v-if="!hotLoading"> | ||
236 | + <v-col | ||
237 | + v-for="(item, i) in recommendImages" | ||
238 | + :key="i" | ||
239 | + cols="6" | ||
240 | + lg="3" | ||
241 | + md="4" | ||
242 | + sm="6" | ||
243 | + > | ||
244 | + <div v-if="item !== null"> | ||
245 | + <v-card :elevation="4" class="mx-auto" :href="item[0].productUrl"> | ||
246 | + <v-img | ||
247 | + :src="item[0].url" | ||
248 | + :alt="item[0].name" | ||
249 | + eager | ||
250 | + class="d-block" | ||
251 | + /> | ||
252 | + <v-card-text class="tw-text-left font-weight-medium title"> | ||
253 | + <h4>{{ item[0].name }}</h4> | ||
254 | + </v-card-text> | ||
255 | + </v-card> | ||
256 | + </div> | ||
257 | + </v-col> | ||
258 | + </v-row> | ||
259 | + </v-item-group> | ||
260 | + <v-row v-if="isMobile()"> | ||
261 | + <v-col> | ||
262 | + <v-pagination | ||
263 | + :size="isMobile() ? 'small' : 'default'" | ||
264 | + v-if="hotTotal" | ||
265 | + v-model="currentIndex" | ||
266 | + @update:modelValue="toggleRowMobile" | ||
267 | + :length="hotLength" | ||
268 | + rounded="0" | ||
269 | + class="tw-float-right tw-mt-[32px]" | ||
270 | + total-visible="5" | ||
271 | + ></v-pagination></v-col | ||
272 | + ></v-row> | ||
273 | + </div> | ||
51 | </template> | 274 | </template> |
52 | 275 | ||
53 | <script setup lang="ts"> | 276 | <script setup lang="ts"> |
54 | -import MainTitleList from '../components/MainTitleList.vue' | ||
55 | -import MainTitleListOdd from '../components/MainTitleListOdd.vue' | ||
56 | -import { useCategoryStore } from '../stores/category' | ||
57 | -import { computed } from 'vue' | ||
58 | -import { isMobile } from '../utils' | 277 | +import MainTitleList from "../components/MainTitleList.vue"; |
278 | +import MainTitleListOdd from "../components/MainTitleListOdd.vue"; | ||
279 | +import { useCategoryStore } from "../stores/category"; | ||
280 | +import { computed, onMounted, reactive, ref } from "vue"; | ||
281 | +import { isMobile } from "../utils"; | ||
282 | + | ||
283 | +const maxPage = ref(1); | ||
284 | +const tabRecom = ref(); | ||
285 | +const recommendList = ref(); | ||
286 | +const recommendImages = ref(); | ||
287 | +const currentIndex = ref(1); | ||
288 | +const hotLoading = ref(false); | ||
289 | +const hotTotal = ref(10); | ||
290 | +const isOrNotMobile = isMobile(); | ||
291 | +const loadHotProducts = async () => { | ||
292 | + const pageSize = ref(5); | ||
293 | + if (isOrNotMobile) { | ||
294 | + pageSize.value = 4; | ||
295 | + } | ||
296 | + hotLoading.value = true; | ||
297 | + let { data: hotProducts } = await useAsyncData( | ||
298 | + "hotProducts", | ||
299 | + () => | ||
300 | + $fetch("/shop/product/hotProducts", { | ||
301 | + method: "GET", | ||
302 | + params: { | ||
303 | + pageNo: currentIndex.value, | ||
304 | + pageSize: pageSize.value, | ||
305 | + }, | ||
306 | + }), | ||
307 | + { | ||
308 | + server: true, // 仅在服务器端获取数据 | ||
309 | + } | ||
310 | + ); | ||
311 | + hotTotal.value = hotProducts.value.data.total; | ||
312 | + recommendList.value = hotProducts.value.data.records; | ||
313 | + maxPage.value = hotProducts.value.data.pages; | ||
314 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
315 | + recommendImages.value = Array.from({ length: pageSize.value }).map( | ||
316 | + (_, index) => { | ||
317 | + const item = recommendList.value[index]; | ||
318 | + if (!item) { | ||
319 | + return null; | ||
320 | + } | ||
321 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
322 | + if (typeof item.productimageliststore === "string") { | ||
323 | + try { | ||
324 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
325 | + } catch (error) { | ||
326 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
327 | + } | ||
328 | + } | ||
329 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
330 | + (productItem: ProductImage) => ({ | ||
331 | + ...productItem, | ||
332 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
333 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
334 | + name: item.name, | ||
335 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
336 | + }) | ||
337 | + )); | ||
338 | + return ree; | ||
339 | + } | ||
340 | + ); | ||
341 | + hotLoading.value = false; | ||
342 | +}; | ||
343 | + | ||
344 | +const toggleRowLeft = () => { | ||
345 | + if (currentIndex.value !== 1) { | ||
346 | + currentIndex.value--; | ||
347 | + } else if (currentIndex.value == 1) { | ||
348 | + currentIndex.value = maxPage.value; | ||
349 | + } | ||
350 | +}; | ||
351 | +const toggleRowRight = () => { | ||
352 | + if (currentIndex.value < maxPage.value) { | ||
353 | + currentIndex.value++; | ||
354 | + } else if (currentIndex.value == maxPage.value) { | ||
355 | + currentIndex.value = 1; | ||
356 | + } | ||
357 | +}; | ||
358 | +const toggleRowMobile = (value: number) => { | ||
359 | + currentIndex.value = value; | ||
360 | +}; | ||
361 | + | ||
362 | +watch(currentIndex, (newIndex) => { | ||
363 | + loadHotProducts(); // Call loadHotProducts when currentIndex changes | ||
364 | +}); | ||
365 | +// Initial load of hot products | ||
366 | +await loadHotProducts(); // Load hot products the first time | ||
367 | + | ||
59 | onMounted(() => { | 368 | onMounted(() => { |
60 | - console.log('%c [ onMounted ]-10', 'font-size:13px; background:pink; color:#bf2c9f;', 111) | ||
61 | -}) | 369 | + console.log( |
370 | + "%c [ onMounted ]-10", | ||
371 | + "font-size:13px; background:pink; color:#bf2c9f;", | ||
372 | + 111 | ||
373 | + ); | ||
374 | +}); | ||
62 | useHead({ | 375 | useHead({ |
63 | - title: 'canrud', | 376 | + title: "canrud", |
64 | meta: [ | 377 | meta: [ |
65 | { | 378 | { |
66 | - name: 'title', | ||
67 | - content: "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at contact@canrd.com or call +86 19867737979 to explore our innovative offerings. Together, let's shape a greener, brighter world!" | ||
68 | - }, { | ||
69 | - name: 'keywords', | 379 | + name: "title", |
380 | + content: | ||
381 | + "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at contact@canrd.com or call +86 19867737979 to explore our innovative offerings. Together, let's shape a greener, brighter world!", | ||
382 | + }, | ||
383 | + { | ||
384 | + name: "keywords", | ||
70 | content: | 385 | content: |
71 | - '科路得,canrd,canrud,Energy Storage Research,Lithium Batteries Research,Material Reagents,Lab Device,Customized Battery,Testing,Pack', | ||
72 | - }, { | 386 | + "科路得,canrd,canrud,Energy Storage Research,Lithium Batteries Research,Material Reagents,Lab Device,Customized Battery,Testing,Pack", |
387 | + }, | ||
388 | + { | ||
73 | name: "description", | 389 | name: "description", |
74 | content: | 390 | content: |
75 | - "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at contact@canrd.com or call +86 19867737979 to explore our innovative offerings. Together, let's shape a greener, brighter world!" | ||
76 | - }], | ||
77 | - link: [ | ||
78 | - { rel: 'preload', href: '/banner/banner1.jpg', as: 'image' } | ||
79 | - ] | ||
80 | -}) | 391 | + "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at contact@canrd.com or call +86 19867737979 to explore our innovative offerings. Together, let's shape a greener, brighter world!", |
392 | + }, | ||
393 | + ], | ||
394 | + link: [{ rel: "preload", href: "/banner/banner1.jpg", as: "image" }], | ||
395 | +}); | ||
81 | 396 | ||
82 | // useAsyncData(async ({ app }) => { | 397 | // useAsyncData(async ({ app }) => { |
83 | // console.log('%c [ app ]-70', 'font-size:13px; background:pink; color:#bf2c9f;', app) | 398 | // console.log('%c [ app ]-70', 'font-size:13px; background:pink; color:#bf2c9f;', app) |
@@ -85,76 +400,308 @@ useHead({ | @@ -85,76 +400,308 @@ useHead({ | ||
85 | // app.head.meta = [ | 400 | // app.head.meta = [ |
86 | // { | 401 | // { |
87 | // name: 'description', | 402 | // name: 'description', |
88 | -// content: "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at | 403 | +// content: "科路得,助您科研之路势在必得。Canrd aims to be the world's leading one-stop service provider in new energy research. With a dedication to excellence, we offer Material Reagents, Lab Devices, Customized Batteries, Testing, and Advanced Packaging for energy materials and storage systems. We master advanced technologies to provide high-quality solutions. Our team's quick responses ensure tailored and professional services to meet your unique needs. Contact us at |
89 | // }] | 404 | // }] |
90 | // }) | 405 | // }) |
91 | -console.log(11) | 406 | +console.log(11); |
92 | 407 | ||
93 | -const store = useCategoryStore() | 408 | +const store = useCategoryStore(); |
94 | 409 | ||
95 | const lab = computed( | 410 | const lab = computed( |
96 | () => | 411 | () => |
97 | store?.list?.[3] || { | 412 | store?.list?.[3] || { |
98 | - categoryDisplayName: '', | ||
99 | - list: [] | 413 | + categoryDisplayName: "", |
414 | + list: [], | ||
100 | } | 415 | } |
101 | -) | 416 | +); |
102 | 417 | ||
103 | const banners = [ | 418 | const banners = [ |
104 | - '/banner/banner1.jpg', | ||
105 | - '/banner/banner2.jpg', | ||
106 | - '/banner/banner3.jpg', | ||
107 | - '/banner/banner5.jpg' | ||
108 | -] | 419 | + "/banner/banner1.jpg", |
420 | + "/banner/banner2.jpg", | ||
421 | + "/banner/banner3.jpg", | ||
422 | + "/banner/banner5.jpg", | ||
423 | +]; | ||
109 | 424 | ||
110 | const mobileBanners = [ | 425 | const mobileBanners = [ |
111 | - '/mobile/banner-index1.png', | ||
112 | - '/mobile/banner-index2.png', | ||
113 | - '/mobile/banner-index3.png' | ||
114 | -] | 426 | + "/mobile/banner-index1.png", |
427 | + "/mobile/banner-index2.png", | ||
428 | + "/mobile/banner-index3.png", | ||
429 | +]; | ||
115 | 430 | ||
116 | const materials = [ | 431 | const materials = [ |
117 | - { name: 'Energy materials', imageUrl: '/home/1.jpg', href: '/products' }, | 432 | + { name: "Energy materials", imageUrl: "/home/1.jpg", href: "/products" }, |
118 | { | 433 | { |
119 | - name: 'Laboratory consumables', | ||
120 | - imageUrl: '/home/2-Universal-consumables.png', | ||
121 | - href: '/products' | 434 | + name: "Laboratory consumables", |
435 | + imageUrl: "/home/2-Universal-consumables.png", | ||
436 | + href: "/products", | ||
122 | }, | 437 | }, |
123 | { | 438 | { |
124 | - name: 'Low-dimensional materials', | ||
125 | - imageUrl: '/home/3-Low-dimensional-materials.png', | ||
126 | - href: '/products' | ||
127 | - } | ||
128 | -] | 439 | + name: "Low-dimensional materials", |
440 | + imageUrl: "/home/3-Low-dimensional-materials.png", | ||
441 | + href: "/products", | ||
442 | + }, | ||
443 | +]; | ||
129 | 444 | ||
130 | const tests = [ | 445 | const tests = [ |
131 | { | 446 | { |
132 | - name: 'Electrochemical performance', | ||
133 | - imageUrl: '/home/8_Electrochemical_performance.svg', | ||
134 | - href: '/test' | 447 | + name: "Electrochemical performance", |
448 | + imageUrl: "/home/8_Electrochemical_performance.svg", | ||
449 | + href: "/test", | ||
450 | + }, | ||
451 | + { | ||
452 | + name: "Reliability testing", | ||
453 | + imageUrl: "/home/9 Reliability testing.svg", | ||
454 | + href: "/test", | ||
455 | + }, | ||
456 | + { | ||
457 | + name: "Material testing", | ||
458 | + imageUrl: "/home/10 Material testing.svg", | ||
459 | + href: "/test", | ||
135 | }, | 460 | }, |
136 | - { name: 'Reliability testing', imageUrl: '/home/9 Reliability testing.svg', href: '/test' }, | ||
137 | - { name: 'Material testing', imageUrl: '/home/10 Material testing.svg', href: '/test' }, | ||
138 | - { name: 'Calibration', imageUrl: '/home/11 Calibration.svg', href: '/test' } | ||
139 | -] | 461 | + { name: "Calibration", imageUrl: "/home/11 Calibration.svg", href: "/test" }, |
462 | +]; | ||
140 | const batteries = [ | 463 | const batteries = [ |
141 | - { name: 'Material evaluation', imageUrl: '/home/4-Material-evaluation.png', href: '/customize' }, | ||
142 | - { name: 'R&D foundry', imageUrl: '/home/5-R&D-foundry.png', href: '/customize' }, | ||
143 | - { name: 'Chemical system', imageUrl: '/home/6-Chemical-system.png', href: '/customize' }, | ||
144 | { | 464 | { |
145 | - name: 'Semi product customization', | ||
146 | - imageUrl: '/home/7-Semi-product-customization.png', | ||
147 | - href: '/customize' | ||
148 | - } | ||
149 | -] | 465 | + name: "Material evaluation", |
466 | + imageUrl: "/home/4-Material-evaluation.png", | ||
467 | + href: "/customize", | ||
468 | + }, | ||
469 | + { | ||
470 | + name: "R&D foundry", | ||
471 | + imageUrl: "/home/5-R&D-foundry.png", | ||
472 | + href: "/customize", | ||
473 | + }, | ||
474 | + { | ||
475 | + name: "Chemical system", | ||
476 | + imageUrl: "/home/6-Chemical-system.png", | ||
477 | + href: "/customize", | ||
478 | + }, | ||
479 | + { | ||
480 | + name: "Semi product customization", | ||
481 | + imageUrl: "/home/7-Semi-product-customization.png", | ||
482 | + href: "/customize", | ||
483 | + }, | ||
484 | +]; | ||
150 | const packs = [ | 485 | const packs = [ |
151 | - { name: 'Power bank', imageUrl: '/home/12-power-bank.png', href: '/pack' }, | ||
152 | - { name: 'Energy storage', imageUrl: '/home/13-Energy-storage.png', href: '/pack' }, | ||
153 | - { name: 'power tool', imageUrl: '/home/3-powertool.png', href: '/pack' }, | 486 | + { name: "Power bank", imageUrl: "/home/12-power-bank.png", href: "/pack" }, |
154 | { | 487 | { |
155 | - name: 'portable energy storage', | ||
156 | - imageUrl: '/home/4-portableenergystorage.png', | ||
157 | - href: '/pack' | ||
158 | - } | ||
159 | -] | 488 | + name: "Energy storage", |
489 | + imageUrl: "/home/13-Energy-storage.png", | ||
490 | + href: "/pack", | ||
491 | + }, | ||
492 | + { name: "power tool", imageUrl: "/home/3-powertool.png", href: "/pack" }, | ||
493 | + { | ||
494 | + name: "portable energy storage", | ||
495 | + imageUrl: "/home/4-portableenergystorage.png", | ||
496 | + href: "/pack", | ||
497 | + }, | ||
498 | +]; | ||
499 | +const hotLength = computed(() => | ||
500 | + hotTotal.value ? Math.ceil(hotTotal.value / 4) : 0 | ||
501 | +); | ||
160 | </script> | 502 | </script> |
503 | +<style scoped> | ||
504 | +@media screen and (min-width: 1537px) { | ||
505 | + .tabs { | ||
506 | + border-bottom: 2px solid #1f88e5; | ||
507 | + margin: 10px auto 100px; | ||
508 | + width: 85%; | ||
509 | + } | ||
510 | +} | ||
511 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
512 | + .tabs { | ||
513 | + border-bottom: 2px solid #1f88e5; | ||
514 | + margin: 10px auto 20px; | ||
515 | + width: 80%; | ||
516 | + } | ||
517 | +} | ||
518 | +@media screen and (max-width: 1280px) { | ||
519 | + .tabs { | ||
520 | + border-bottom: 2px solid #1f88e5; | ||
521 | + margin: 10px auto 0px; | ||
522 | + width: 85%; | ||
523 | + } | ||
524 | +} | ||
525 | + | ||
526 | +.active { | ||
527 | + background-color: #1086e8; | ||
528 | +} | ||
529 | + | ||
530 | +/* #image-container { | ||
531 | + display: flex; | ||
532 | + align-items: center; | ||
533 | + justify-content: center; | ||
534 | + height: 320px; | ||
535 | + margin: 10px auto 50px; | ||
536 | + width: 80%; | ||
537 | +} */ | ||
538 | + | ||
539 | +@media screen and (min-width: 1537px) { | ||
540 | + #image-container { | ||
541 | + display: flex; | ||
542 | + align-items: center; | ||
543 | + justify-content: center; | ||
544 | + height: 320px; | ||
545 | + margin: 10px auto 50px; | ||
546 | + width: 80%; | ||
547 | + } | ||
548 | +} | ||
549 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
550 | + #image-container { | ||
551 | + display: flex; | ||
552 | + align-items: center; | ||
553 | + justify-content: center; | ||
554 | + height: 240px; | ||
555 | + margin: 10px auto 0px; | ||
556 | + width: 80%; | ||
557 | + } | ||
558 | +} | ||
559 | +@media screen and (max-width: 1280px) { | ||
560 | + #image-container { | ||
561 | + display: flex; | ||
562 | + align-items: center; | ||
563 | + justify-content: center; | ||
564 | + height: 260px; | ||
565 | + margin: 10px auto 0px; | ||
566 | + width: 90%; | ||
567 | + } | ||
568 | +} | ||
569 | +.image-row { | ||
570 | + display: flex; | ||
571 | + height: 305px; | ||
572 | +} | ||
573 | +@media screen and (min-width: 1537px) { | ||
574 | + .image-row { | ||
575 | + display: flex; | ||
576 | + height: 305px; | ||
577 | + } | ||
578 | +} | ||
579 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
580 | + .image-row { | ||
581 | + display: flex; | ||
582 | + height: 245px; | ||
583 | + } | ||
584 | +} | ||
585 | +@media screen and (max-width: 1280px) { | ||
586 | + .image-row { | ||
587 | + display: flex; | ||
588 | + height: 220px; | ||
589 | + } | ||
590 | +} | ||
591 | +@media screen and (min-width: 1537px) { | ||
592 | + .imageTotal { | ||
593 | + display: inline-block; | ||
594 | + margin: 0 5px; | ||
595 | + text-align: center; | ||
596 | + width: 290px; | ||
597 | + } | ||
598 | +} | ||
599 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
600 | + .imageTotal { | ||
601 | + display: inline-block; | ||
602 | + margin: 0 5px; | ||
603 | + text-align: center; | ||
604 | + width: 210px; | ||
605 | + } | ||
606 | +} | ||
607 | +@media screen and (min-width: 1537px) { | ||
608 | + .image-row img { | ||
609 | + width: 240px; | ||
610 | + height: 240px; | ||
611 | + } | ||
612 | +} | ||
613 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
614 | + .image-row img { | ||
615 | + width: 140px; | ||
616 | + height: 140px; | ||
617 | + } | ||
618 | +} | ||
619 | +@media screen and (max-width: 1280px) { | ||
620 | + .image-row img { | ||
621 | + width: 160px; | ||
622 | + height: 160px; | ||
623 | + margin-left: 10px; | ||
624 | + } | ||
625 | +} | ||
626 | +@media screen and (min-width: 1537px) { | ||
627 | + .image-name { | ||
628 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
629 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
630 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
631 | + overflow: hidden; /* Hides the overflowed text */ | ||
632 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
633 | + margin-top: 5px; | ||
634 | + font-size: 16px; | ||
635 | + width: 180px; | ||
636 | + color: #555; | ||
637 | + text-align: center; /* Centers the text horizontally */ | ||
638 | + margin-left: 50px; | ||
639 | + } | ||
640 | +} | ||
641 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
642 | + .image-name { | ||
643 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
644 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
645 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
646 | + overflow: hidden; /* Hides the overflowed text */ | ||
647 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
648 | + margin-top: 5px; | ||
649 | + font-size: 16px; | ||
650 | + width: 180px; | ||
651 | + color: #555; | ||
652 | + text-align: center; /* Centers the text horizontally */ | ||
653 | + margin-left: 10px; | ||
654 | + } | ||
655 | +} | ||
656 | +@media screen and (max-width: 1280px) { | ||
657 | + .image-name { | ||
658 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
659 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
660 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
661 | + overflow: hidden; /* Hides the overflowed text */ | ||
662 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
663 | + margin-top: 5px; | ||
664 | + font-size: 16px; | ||
665 | + width: 180px; | ||
666 | + color: #555; | ||
667 | + text-align: center; /* Centers the text horizontally */ | ||
668 | + margin-left: 5px; | ||
669 | + } | ||
670 | +} | ||
671 | +button .recommendButton { | ||
672 | + margin: 0 0px; | ||
673 | + cursor: pointer; | ||
674 | +} | ||
675 | + | ||
676 | +.recommend-left-box { | ||
677 | +} | ||
678 | + | ||
679 | +.recommend-img-left { | ||
680 | + width: 26px; | ||
681 | + height: 27px; | ||
682 | + margin-right: 30px; | ||
683 | +} | ||
684 | + | ||
685 | +.recommend-img-left:hover { | ||
686 | + cursor: pointer; | ||
687 | +} | ||
688 | +.recommend-right-box { | ||
689 | +} | ||
690 | + | ||
691 | +.recommend-img-right { | ||
692 | + width: 26px; | ||
693 | + height: 27px; | ||
694 | + margin-left: 30px; | ||
695 | +} | ||
696 | + | ||
697 | +.recommend-img-right:hover { | ||
698 | + cursor: pointer; | ||
699 | +} | ||
700 | +.image-grid { | ||
701 | + padding: 16px; | ||
702 | +} | ||
703 | + | ||
704 | +.v-card { | ||
705 | + transition: all 0.3s ease-in-out; | ||
706 | +} | ||
707 | +</style> |
pages/products/detail/[id]/index.vue
1 | <template> | 1 | <template> |
2 | - <MobileProductDetail v-if="isMobile()" :info="info" /> | 2 | + <MobileProductDetail v-if="isMobile()" :info="info" :res="resData" /> |
3 | <ProductDetail v-else :info="info" /> | 3 | <ProductDetail v-else :info="info" /> |
4 | </template> | 4 | </template> |
5 | 5 | ||
@@ -10,8 +10,9 @@ import MobileProductDetail from "~/components/MobileProductDetail.vue"; | @@ -10,8 +10,9 @@ import MobileProductDetail from "~/components/MobileProductDetail.vue"; | ||
10 | import type { Product, ProductImage } from "~/type"; | 10 | import type { Product, ProductImage } from "~/type"; |
11 | import { useRoute, useRouter } from "vue-router"; | 11 | import { useRoute, useRouter } from "vue-router"; |
12 | 12 | ||
13 | +const productStore = useProductListStore(); | ||
13 | const route = useRoute(); | 14 | const route = useRoute(); |
14 | - | 15 | +const router = useRouter(); |
15 | const info = ref<Partial<Product>>({ | 16 | const info = ref<Partial<Product>>({ |
16 | productimageliststore: [], | 17 | productimageliststore: [], |
17 | productAttributeList: [], | 18 | productAttributeList: [], |
@@ -44,32 +45,28 @@ watchEffect(() => { | @@ -44,32 +45,28 @@ watchEffect(() => { | ||
44 | }, | 45 | }, |
45 | { | 46 | { |
46 | name: "keywords", | 47 | name: "keywords", |
47 | - content: | ||
48 | - info.value.name || | ||
49 | - "科路得,Equipment,High-precision,Machining center,Design,Manufacturing capabilities,Equipment supply,Production line planning,Construction services,Battery assembly lines,Pouch cell testing lines", | 48 | + content: info.value.name || info.value.metakeywords, |
50 | }, | 49 | }, |
51 | { | 50 | { |
52 | name: "description", | 51 | name: "description", |
53 | - content: | ||
54 | - info.value.name || | ||
55 | - "科路得,助您科研之路势在必得。Equipment Business: With our self-built high-precision machining center, we possess robust design and manufacturing capabilities. We offer comprehensive equipment supply, production line planning, and construction services, including battery assembly lines, pouch cell testing lines, and more. Our aim is to provide complete equipment solutions that cater to the diverse needs of our clients. Expect top-quality equipment and professional services that will help you stand out in a fiercely competitive market!", | 52 | + content: info.value.metadescription || info.value.name, |
56 | }, | 53 | }, |
57 | ], | 54 | ], |
58 | }); | 55 | }); |
59 | }); | 56 | }); |
60 | 57 | ||
61 | const newData: Product = resData.value.data; | 58 | const newData: Product = resData.value.data; |
62 | - | ||
63 | newData.productimageliststore = | 59 | newData.productimageliststore = |
64 | typeof newData.productimageliststore === "string" | 60 | typeof newData.productimageliststore === "string" |
65 | ? JSON.parse(newData.productimageliststore) || [] | 61 | ? JSON.parse(newData.productimageliststore) || [] |
66 | : (newData.productimageliststore as ProductImage[]); | 62 | : (newData.productimageliststore as ProductImage[]); |
67 | -newData.productimageliststore = newData?.productimageliststore.map( | 63 | +newData.productimageliststore = newData?.productimageliststore?.map( |
68 | (item: ProductImage) => ({ | 64 | (item: ProductImage) => ({ |
69 | ...item, | 65 | ...item, |
70 | // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}` | 66 | // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}` |
71 | url: `/api/show/image?fileKey=${item.fileKey}&psize=p512`, | 67 | url: `/api/show/image?fileKey=${item.fileKey}&psize=p512`, |
72 | }) | 68 | }) |
73 | ); | 69 | ); |
70 | + | ||
74 | info.value = { ...newData }; | 71 | info.value = { ...newData }; |
75 | </script> | 72 | </script> |
pages/products/index.vue
1 | <template> | 1 | <template> |
2 | - <div class="tw-m-auto tw-pb-[64px]"> | 2 | + <div class="tw-m-auto tw-pb-[64px]" style="padding-bottom: 0px"> |
3 | <CategoryList v-if="categoryStore.categoryVisible && !isMobile()" /> | 3 | <CategoryList v-if="categoryStore.categoryVisible && !isMobile()" /> |
4 | <MobileCategoryList v-if="categoryStore.categoryVisible && isMobile()" /> | 4 | <MobileCategoryList v-if="categoryStore.categoryVisible && isMobile()" /> |
5 | + <v-tabs | ||
6 | + class="tabs" | ||
7 | + v-model="tabRecom" | ||
8 | + style="margin-top: 25px" | ||
9 | + color="white" | ||
10 | + bg-color="#eeeeee" | ||
11 | + slider-color="blue-lighten-1" | ||
12 | + selected-class="active" | ||
13 | + v-if="recommendImages[0] !== null && !isMobile()" | ||
14 | + > | ||
15 | + <v-tab :value="1">Best Sellers</v-tab> | ||
16 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
17 | + </v-tabs> | ||
18 | + <div id="image-container" v-if="recommendImages[0] !== null && !isMobile()"> | ||
19 | + <div class="recommend-left-box"> | ||
20 | + <v-img | ||
21 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/76c987e13a334be481a346c19c2284f3qy4tjnxps7.png" | ||
22 | + alt="往左移" | ||
23 | + class="recommend-img-left" | ||
24 | + @click="toggleRowLeft" | ||
25 | + /> | ||
26 | + </div> | ||
27 | + <div class="image-row" id="row1"> | ||
28 | + <!-- <img | ||
29 | + v-for="(imageObj, index) in recommendImages.slice(0, 5)" | ||
30 | + :key="'row1-' + index" | ||
31 | + :src="imageObj[0]?.url" | ||
32 | + :alt="'Image ' + (index + 1)" | ||
33 | + style="margin: 0 5px; width: 200px; height: 200px" | ||
34 | + /> --> | ||
35 | + <div | ||
36 | + v-for="(imageObj, index) in recommendImages" | ||
37 | + :key="'row1-' + index" | ||
38 | + class="imageTotal" | ||
39 | + > | ||
40 | + <a v-if="imageObj" :href="imageObj[0]?.productUrl" target="_blank"> | ||
41 | + <img | ||
42 | + :src="imageObj[0]?.url" | ||
43 | + :alt="'Image ' + (index + 1)" | ||
44 | + class="item-imgHot" | ||
45 | + /> | ||
46 | + <span class="image-name"> | ||
47 | + {{ imageObj[0]?.name }} | ||
48 | + </span> | ||
49 | + </a> | ||
50 | + <div v-else style="width: 200px; height: 200px"></div> | ||
51 | + </div> | ||
52 | + </div> | ||
53 | + <div class="recommend-right-box"> | ||
54 | + <v-img | ||
55 | + src="https://m-canrd.oss-cn-shenzhen.aliyuncs.com/crmebimage/public/maintain/2024/09/14/b5daa0a8f2f140f5b406e984c730a453iznzlekysg.png" | ||
56 | + alt="往右移" | ||
57 | + class="recommend-img-right" | ||
58 | + @click="toggleRowRight" | ||
59 | + /> | ||
60 | + </div> | ||
61 | + </div> | ||
5 | <v-container class=""> | 62 | <v-container class=""> |
6 | - <div class="tw-text-center" v-if="loading"> | 63 | + <div class="tw-text-center tw-mt-[32px]" v-if="loading"> |
7 | <v-progress-circular | 64 | <v-progress-circular |
8 | color="blue-lighten-2" | 65 | color="blue-lighten-2" |
9 | indeterminate | 66 | indeterminate |
@@ -60,11 +117,79 @@ | @@ -60,11 +117,79 @@ | ||
60 | <v-row> | 117 | <v-row> |
61 | <v-col> | 118 | <v-col> |
62 | <v-pagination | 119 | <v-pagination |
120 | + :size="isMobile() ? 'small' : 'default'" | ||
121 | + v-if="productStore.total" | ||
122 | + v-model="productStore.pageNo" | ||
123 | + @update:modelValue="productStore.updatePageNo" | ||
124 | + :length="length" | ||
125 | + rounded="0" | ||
126 | + class="tw-float-right tw-mt-[32px]" | ||
127 | + total-visible="5" | ||
128 | + ></v-pagination></v-col | ||
129 | + ></v-row> | ||
130 | + <v-tabs | ||
131 | + class="tabs2" | ||
132 | + ref="tabs2" | ||
133 | + v-model="tabRecom" | ||
134 | + style="margin-top: 25px; margin-bottom: 20px" | ||
135 | + color="white" | ||
136 | + bg-color="#eeeeee" | ||
137 | + slider-color="blue-lighten-1" | ||
138 | + selected-class="active" | ||
139 | + v-if="isMobile()" | ||
140 | + > | ||
141 | + <v-tab :value="1">Best Sellers</v-tab> | ||
142 | + <!-- <v-tab :value="3">商品百科</v-tab> --> | ||
143 | + </v-tabs> | ||
144 | + <div class="tw-text-center" v-if="hotLoading && isMobile()"> | ||
145 | + <v-progress-circular | ||
146 | + color="blue-lighten-2" | ||
147 | + indeterminate | ||
148 | + size="64" | ||
149 | + class="tw-m-auto" | ||
150 | + ></v-progress-circular> | ||
151 | + </div> | ||
152 | + <v-item-group multiple v-if="isMobile()"> | ||
153 | + <v-row v-if="!hotLoading"> | ||
154 | + <v-col | ||
155 | + v-for="(item, i) in recommendImages" | ||
156 | + :key="i" | ||
157 | + cols="6" | ||
158 | + lg="3" | ||
159 | + md="4" | ||
160 | + sm="6" | ||
161 | + > | ||
162 | + <div v-if="item !== null"> | ||
163 | + <v-card :elevation="4" class="mx-auto" :href="item[0].productUrl"> | ||
164 | + <!-- 设置 eager 属性,确保图片直接加载 --> | ||
165 | + <v-img | ||
166 | + :src="item[0].url" | ||
167 | + :alt="item[0].name" | ||
168 | + eager | ||
169 | + class="d-block" | ||
170 | + /> | ||
171 | + <v-card-text class="tw-text-left font-weight-medium title"> | ||
172 | + <h4>{{ item[0].name }}</h4> | ||
173 | + </v-card-text> | ||
174 | + </v-card> | ||
175 | + </div> | ||
176 | + </v-col> | ||
177 | + </v-row> | ||
178 | + <!-- <div | ||
179 | + v-if="!hotTotal" | ||
180 | + class="text-medium-emphasis text-body-1 tw-text-center tw-m-[64px]" | ||
181 | + > | ||
182 | + no data | ||
183 | + </div> --> | ||
184 | + </v-item-group> | ||
185 | + <v-row v-if="isMobile()"> | ||
186 | + <v-col> | ||
187 | + <v-pagination | ||
63 | :size="isMobile() ? 'small' : 'default'" | 188 | :size="isMobile() ? 'small' : 'default'" |
64 | - v-if="productStore.total" | ||
65 | - v-model="productStore.pageNo" | ||
66 | - @update:modelValue="productStore.updatePageNo" | ||
67 | - :length="length" | 189 | + v-if="hotTotal" |
190 | + v-model="currentIndex" | ||
191 | + @update:modelValue="toggleRowMobile" | ||
192 | + :length="hotLength" | ||
68 | rounded="0" | 193 | rounded="0" |
69 | class="tw-float-right tw-mt-[32px]" | 194 | class="tw-float-right tw-mt-[32px]" |
70 | total-visible="5" | 195 | total-visible="5" |
@@ -75,6 +200,7 @@ | @@ -75,6 +200,7 @@ | ||
75 | </template> | 200 | </template> |
76 | 201 | ||
77 | <script setup lang="ts"> | 202 | <script setup lang="ts"> |
203 | +import type { ProductImage } from "~/type"; | ||
78 | import { isMobile, isEqual } from "~/utils"; | 204 | import { isMobile, isEqual } from "~/utils"; |
79 | import { useProductListStore } from "~/stores/product_list"; | 205 | import { useProductListStore } from "~/stores/product_list"; |
80 | import { useCategoryStore } from "~/stores/category"; | 206 | import { useCategoryStore } from "~/stores/category"; |
@@ -85,10 +211,110 @@ import { watchEffect, computed, ref } from "vue"; | @@ -85,10 +211,110 @@ import { watchEffect, computed, ref } from "vue"; | ||
85 | const productStore = useProductListStore(); | 211 | const productStore = useProductListStore(); |
86 | const categoryStore = useCategoryStore(); | 212 | const categoryStore = useCategoryStore(); |
87 | const loading = ref(false); | 213 | const loading = ref(false); |
214 | +const hotLoading = ref(false); | ||
88 | const route = useRoute(); // 获取路由信息 | 215 | const route = useRoute(); // 获取路由信息 |
216 | +const router = useRouter(); // 获取路由信息 | ||
217 | +const title = ref(""); | ||
218 | +const keywordTitle = ref(""); | ||
219 | +const maxPage = ref(1); | ||
220 | +const tabRecom = ref(); | ||
221 | +const recommendList = ref(); | ||
222 | +const recommendImages = ref(); | ||
223 | +const currentIndex = ref(1); | ||
224 | +const hotTotal = ref(10); | ||
225 | +const isOrNotMobile = isMobile(); | ||
226 | + | ||
227 | +const loadHotProducts = async () => { | ||
228 | + const pageSize = ref(5); | ||
229 | + if (isOrNotMobile) { | ||
230 | + pageSize.value = 4; | ||
231 | + } | ||
232 | + hotLoading.value = true; | ||
233 | + let { data: hotProducts } = await useAsyncData( | ||
234 | + "hotProducts", | ||
235 | + () => | ||
236 | + $fetch("/shop/product/hotProducts", { | ||
237 | + method: "GET", | ||
238 | + params: { | ||
239 | + pageNo: currentIndex.value, | ||
240 | + pageSize: pageSize.value, | ||
241 | + }, | ||
242 | + }), | ||
243 | + { | ||
244 | + server: true, // 仅在服务器端获取数据 | ||
245 | + } | ||
246 | + ); | ||
247 | + hotTotal.value = hotProducts.value.data.total; | ||
248 | + recommendList.value = hotProducts.value.data.records; | ||
249 | + maxPage.value = hotProducts.value.data.pages; | ||
250 | + // recommendImages.value = recommendList.value.slice(0, 10).map((item) => { | ||
251 | + recommendImages.value = Array.from({ length: pageSize.value }).map( | ||
252 | + (_, index) => { | ||
253 | + const item = recommendList.value[index]; | ||
254 | + if (!item) { | ||
255 | + return null; | ||
256 | + } | ||
257 | + // 检查 productimageliststore 是否为字符串格式,如果是,则尝试解析 | ||
258 | + if (typeof item.productimageliststore === "string") { | ||
259 | + try { | ||
260 | + item.productimageliststore = JSON.parse(item.productimageliststore); | ||
261 | + } catch (error) { | ||
262 | + item.productimageliststore = []; // 解析失败时,设置为空数组 | ||
263 | + } | ||
264 | + } | ||
265 | + const ree = (item.productimageliststore = item?.productimageliststore.map( | ||
266 | + (productItem: ProductImage) => ({ | ||
267 | + ...productItem, | ||
268 | + // url: `http://112.74.45.244:8100/api/show/image?fileKey=${item.fileKey}`, | ||
269 | + url: `https://www.canrud.com/api/show/image?fileKey=${productItem.fileKey}&psize=p256`, | ||
270 | + name: item.name, | ||
271 | + productUrl: `https://www.canrud.com/products/detail/${item.id}`, | ||
272 | + }) | ||
273 | + )); | ||
274 | + return ree; | ||
275 | + } | ||
276 | + ); | ||
277 | + hotLoading.value = false; | ||
278 | +}; | ||
279 | + | ||
280 | +const toggleRowLeft = () => { | ||
281 | + if (currentIndex.value !== 1) { | ||
282 | + currentIndex.value--; | ||
283 | + } else if (currentIndex.value == 1) { | ||
284 | + currentIndex.value = maxPage.value; | ||
285 | + } | ||
286 | +}; | ||
287 | +const toggleRowRight = () => { | ||
288 | + if (currentIndex.value < maxPage.value) { | ||
289 | + currentIndex.value++; | ||
290 | + } else if (currentIndex.value == maxPage.value) { | ||
291 | + currentIndex.value = 1; | ||
292 | + } | ||
293 | +}; | ||
294 | +const toggleRowMobile = (value: number) => { | ||
295 | + currentIndex.value = value; | ||
296 | +}; | ||
297 | + | ||
298 | +watch(currentIndex, (newIndex) => { | ||
299 | + loadHotProducts(); // Call loadHotProducts when currentIndex changes | ||
300 | +}); | ||
301 | +// Initial load of hot products | ||
302 | +await loadHotProducts(); // Load hot products the first time | ||
303 | + | ||
304 | +watchEffect(() => { | ||
305 | + // 遍历数组 | ||
306 | + if (router.currentRoute.value.query.categories) { | ||
307 | + title.value = `${router.currentRoute.value.query.categories}`; | ||
308 | + } else if (router.currentRoute.value.query.function) { | ||
309 | + title.value += `,${router.currentRoute.value.query.function}`; | ||
310 | + } | ||
311 | + if (router.currentRoute.value.query.keyword) { | ||
312 | + keywordTitle.value = `${router.currentRoute.value.query.keyword}`; | ||
313 | + } | ||
314 | +}); | ||
89 | 315 | ||
90 | useHead({ | 316 | useHead({ |
91 | - title: "canrud", | 317 | + title: title.value || keywordTitle.value, |
92 | meta: [ | 318 | meta: [ |
93 | { | 319 | { |
94 | name: "title", | 320 | name: "title", |
@@ -107,9 +333,8 @@ useHead({ | @@ -107,9 +333,8 @@ useHead({ | ||
107 | }, | 333 | }, |
108 | ], | 334 | ], |
109 | }); | 335 | }); |
110 | - | 336 | +const firstIndex = ref(0); |
111 | const loadProducts = async () => { | 337 | const loadProducts = async () => { |
112 | - console.log(productStore, "5656productStore"); | ||
113 | let params: any = { | 338 | let params: any = { |
114 | pageNo: productStore.pageNo, | 339 | pageNo: productStore.pageNo, |
115 | pageSize: 20, | 340 | pageSize: 20, |
@@ -123,35 +348,146 @@ const loadProducts = async () => { | @@ -123,35 +348,146 @@ const loadProducts = async () => { | ||
123 | loading.value = false; | 348 | loading.value = false; |
124 | return; | 349 | return; |
125 | } | 350 | } |
351 | + const categories = ref(); | ||
352 | + const mainCategory = ref(); | ||
353 | + if (router.currentRoute.value.query.categories) { | ||
354 | + categories.value = router.currentRoute.value.query.categories.split(","); | ||
355 | + mainCategory.value = categories.value[0].trim(); // 取第一个值 | ||
356 | + } | ||
126 | 357 | ||
127 | params.productCategoryId = categoryStore.selectedSubCategory; | 358 | params.productCategoryId = categoryStore.selectedSubCategory; |
128 | // productCategoryId: '78b86c6e917841cf9a292234f2805e24', | 359 | // productCategoryId: '78b86c6e917841cf9a292234f2805e24', |
129 | - | ||
130 | if (categoryStore.selectedFuncCategory) { | 360 | if (categoryStore.selectedFuncCategory) { |
131 | params.productFunctionId = categoryStore.selectedFuncCategory; | 361 | params.productFunctionId = categoryStore.selectedFuncCategory; |
362 | + if (firstIndex.value == 1) { | ||
363 | + params.productFunctionId = selectedFuncCategoryBak.value; | ||
364 | + firstIndex.value += 1; | ||
365 | + if ( | ||
366 | + params.productFunctionId == "" && | ||
367 | + selectedFuncCategoryBak.value == "" | ||
368 | + ) { | ||
369 | + categoryStore.selectedFuncCategory = selectedFuncCategoryBak.value; | ||
370 | + params.productFunctionId = categoryStore.selectedFuncCategory; | ||
371 | + // categoryStore.selectedFuncCategory = selectedFuncCategoryBak.value; | ||
372 | + } | ||
373 | + console.log( | ||
374 | + params.productFunctionId, | ||
375 | + selectedFuncCategoryBak.value, | ||
376 | + categoryStore.selectedFuncCategory | ||
377 | + ); | ||
378 | + } | ||
379 | + // const savedSubCategory = localStorage.getItem("selectedFuncCategory2"); | ||
380 | + // console.log(savedSubCategory, "5656savedSubCategory"); | ||
381 | + // localStorage.setItem("selectedFuncCategory3", "2"); | ||
382 | + } else if (mainCategory.value == "Energy materials") { | ||
383 | + params.productCategoryId = categoryStore.selectedSubCategory; | ||
132 | } | 384 | } |
133 | 385 | ||
386 | + console.log( | ||
387 | + // params, | ||
388 | + // productStore?.params, | ||
389 | + // categoryStore.selectedSubCategory, | ||
390 | + // categoryStore.selectedFuncCategory, | ||
391 | + window.selectedSubCategory, | ||
392 | + window.selectedFuncCategory | ||
393 | + ); | ||
134 | if ( | 394 | if ( |
135 | categoryStore.selectedSubCategory && | 395 | categoryStore.selectedSubCategory && |
136 | !isEqual(productStore.params, params) | 396 | !isEqual(productStore.params, params) |
137 | ) { | 397 | ) { |
398 | + // console.log(route, "5656route"); | ||
138 | productStore.updateParams(params); | 399 | productStore.updateParams(params); |
400 | + const categories = ref("Laboratory consumables,Others"); | ||
401 | + const mainCategory = categories.value[0].trim(); // 取第一个值 | ||
402 | + // console.log(categoryStore.selectedSubCategory, "5656mobi"); | ||
139 | 403 | ||
140 | await productStore.getList(params); | 404 | await productStore.getList(params); |
141 | } | 405 | } |
406 | + // if ( | ||
407 | + // categoryStore.selectedFuncCategory && | ||
408 | + // !isEqual(productStore.params, params) | ||
409 | + // ) { | ||
410 | + // console.log( | ||
411 | + // categoryStore.selectedFuncCategory, | ||
412 | + // "5656categoryStore.selectedFuncCategoryss" | ||
413 | + // ); | ||
414 | + // productStore.updateParams(params); | ||
415 | + // await productStore.getList(params); | ||
416 | + // } | ||
417 | + if (firstIndex.value === 0 && categoryStore.selectedFuncCategory) { | ||
418 | + // console.log(route, "5656route"); | ||
419 | + productStore.updateParams(params); | ||
420 | + // const categories = ref("Laboratory consumables,Others"); | ||
421 | + // const mainCategory = categories.value[0].trim(); // 取第一个值 | ||
422 | + // console.log(categoryStore.selectedFuncCategory, "5656mobi"); | ||
423 | + await productStore.getList(params); | ||
424 | + firstIndex.value = 1; | ||
425 | + } | ||
142 | loading.value = false; | 426 | loading.value = false; |
143 | }; | 427 | }; |
144 | - | 428 | +const isWindowAssigned = ref(false); |
429 | +const selectedSubCategoryBak = ref(); | ||
430 | +const selectedFuncCategoryBak = ref(); | ||
145 | watchEffect(async () => { | 431 | watchEffect(async () => { |
146 | if (route.query.keyword !== undefined) { | 432 | if (route.query.keyword !== undefined) { |
147 | productStore.keyword = route.query.keyword; | 433 | productStore.keyword = route.query.keyword; |
148 | } | 434 | } |
435 | + // console.log(categoryStore.selectedSubCategory, "5656index-categoryStore"); | ||
436 | + if (typeof window !== "undefined" && !isWindowAssigned.value) { | ||
437 | + window.selectedSubCategory = categoryStore.selectedSubCategory; | ||
438 | + window.selectedFuncCategory = categoryStore.selectedFuncCategory; | ||
439 | + selectedSubCategoryBak.value = categoryStore.selectedSubCategory; | ||
440 | + selectedFuncCategoryBak.value = categoryStore.selectedFuncCategory; | ||
441 | + isWindowAssigned.value = true; | ||
442 | + } | ||
149 | loadProducts(); | 443 | loadProducts(); |
444 | + // console.log(categoryStore.selectedSubCategory, "5656index-categoryStore"); | ||
150 | }); | 445 | }); |
446 | +// onMounted(() => { | ||
447 | +// // window.selectedSubCategory = categoryStore.selectedSubCategory; | ||
448 | +// // window.selectedFuncCategory = categoryStore.selectedFuncCategory; | ||
449 | +// if (route.query.function) { | ||
450 | +// const functionName = route.query.function.trim(); | ||
451 | +// const funcCategoryList = computed(() => { | ||
452 | +// if (categoryStore.selectedCategory) { | ||
453 | +// const tmp = categoryStore.list.filter( | ||
454 | +// (item) => item.categoryDisplayName === categoryStore.selectedCategory | ||
455 | +// ); | ||
456 | +// return tmp?.[0]?.productFunctions || []; | ||
457 | +// } | ||
458 | +// return []; | ||
459 | +// }); | ||
460 | +// const foundFuncCategory = funcCategoryList.value.find( | ||
461 | +// (func) => func.name === functionName | ||
462 | +// ); | ||
463 | + | ||
464 | +// if (foundFuncCategory) { | ||
465 | +// const funcCategoryId = foundFuncCategory.id; | ||
466 | +// if (typeof localStorage !== "undefined") { | ||
467 | +// localStorage.setItem("selectedFuncCategory2", funcCategoryId); | ||
468 | +// localStorage.setItem("selectedFuncCategory3", "1"); | ||
469 | +// } | ||
470 | +// // 你可以在这里使用找到的 funcCategoryId | ||
471 | +// } | ||
472 | +// // // 6. 查找对应的功能分类 ID | ||
473 | +// // const foundFuncCategory = funcCategories.find( | ||
474 | +// // (func) => func.name === functionName | ||
475 | +// // ); | ||
476 | + | ||
477 | +// // if (foundFuncCategory) { | ||
478 | +// // const funcCategoryId = foundFuncCategory.id; | ||
479 | +// // // 使用找到的 funcCategoryId | ||
480 | +// // categoryStore.updateFuncCategory(funcCategoryId); | ||
481 | +// // } | ||
482 | +// } | ||
483 | +// }); | ||
151 | 484 | ||
152 | const length = computed(() => | 485 | const length = computed(() => |
153 | productStore.total ? Math.ceil(productStore.total / productStore.pageSize) : 0 | 486 | productStore.total ? Math.ceil(productStore.total / productStore.pageSize) : 0 |
154 | ); | 487 | ); |
488 | +const hotLength = computed(() => | ||
489 | + hotTotal.value ? Math.ceil(hotTotal.value / 4) : 0 | ||
490 | +); | ||
155 | </script> | 491 | </script> |
156 | 492 | ||
157 | <style scoped> | 493 | <style scoped> |
@@ -163,4 +499,200 @@ const length = computed(() => | @@ -163,4 +499,200 @@ const length = computed(() => | ||
163 | -webkit-line-clamp: 2; | 499 | -webkit-line-clamp: 2; |
164 | -webkit-box-orient: vertical; | 500 | -webkit-box-orient: vertical; |
165 | } | 501 | } |
502 | + | ||
503 | +@media screen and (min-width: 1537px) { | ||
504 | + .tabs { | ||
505 | + border-bottom: 2px solid #1f88e5; | ||
506 | + margin: 10px auto 20px; | ||
507 | + width: 93%; | ||
508 | + } | ||
509 | +} | ||
510 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
511 | + .tabs { | ||
512 | + border-bottom: 2px solid #1f88e5; | ||
513 | + margin: 10px auto 40px; | ||
514 | + width: 78%; | ||
515 | + } | ||
516 | +} | ||
517 | +@media screen and (max-width: 1280px) { | ||
518 | + .tabs { | ||
519 | + border-bottom: 2px solid #1f88e5; | ||
520 | + margin: 10px auto 40px; | ||
521 | + width: 92%; | ||
522 | + } | ||
523 | +} | ||
524 | +/* .tabs { | ||
525 | + border-bottom: 2px solid #1f88e5; | ||
526 | +} */ | ||
527 | + | ||
528 | +.active { | ||
529 | + background-color: #1086e8; | ||
530 | +} | ||
531 | + | ||
532 | +@media screen and (min-width: 1537px) { | ||
533 | + #image-container { | ||
534 | + display: flex; | ||
535 | + align-items: center; | ||
536 | + justify-content: center; | ||
537 | + height: 320px; | ||
538 | + margin: 10px auto 50px; | ||
539 | + width: 80%; | ||
540 | + } | ||
541 | +} | ||
542 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
543 | + #image-container { | ||
544 | + display: flex; | ||
545 | + align-items: center; | ||
546 | + justify-content: center; | ||
547 | + height: 260px; | ||
548 | + margin: 10px auto 0px; | ||
549 | + width: 80%; | ||
550 | + padding: 0; | ||
551 | + } | ||
552 | +} | ||
553 | +@media screen and (max-width: 1280px) { | ||
554 | + #image-container { | ||
555 | + display: flex; | ||
556 | + align-items: center; | ||
557 | + justify-content: center; | ||
558 | + height: 260px; | ||
559 | + margin: 10px auto 0px; | ||
560 | + width: 80%; | ||
561 | + padding: 0; | ||
562 | + } | ||
563 | +} | ||
564 | +.image-row { | ||
565 | + display: flex; | ||
566 | + height: 245px; | ||
567 | +} | ||
568 | +@media screen and (min-width: 1537px) { | ||
569 | + .imageTotal { | ||
570 | + display: inline-block; | ||
571 | + margin: 0 5px; | ||
572 | + text-align: center; | ||
573 | + width: 300px; | ||
574 | + } | ||
575 | +} | ||
576 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
577 | + .imageTotal { | ||
578 | + display: inline-block; | ||
579 | + margin: 0 5px; | ||
580 | + text-align: center; | ||
581 | + width: 200px; | ||
582 | + } | ||
583 | +} | ||
584 | +@media screen and (max-width: 1280px) { | ||
585 | + .imageTotal { | ||
586 | + display: inline-block; | ||
587 | + margin: 0 5px; | ||
588 | + text-align: center; | ||
589 | + width: 200px; | ||
590 | + } | ||
591 | +} | ||
592 | +@media screen and (min-width: 1537px) { | ||
593 | + .image-row img { | ||
594 | + width: 240px; | ||
595 | + height: 240px; | ||
596 | + } | ||
597 | +} | ||
598 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
599 | + .image-row img { | ||
600 | + width: 140px; | ||
601 | + height: 140px; | ||
602 | + } | ||
603 | +} | ||
604 | +@media screen and (max-width: 1280px) { | ||
605 | + .image-row img { | ||
606 | + width: 120px; | ||
607 | + height: 120px; | ||
608 | + } | ||
609 | +} | ||
610 | +@media screen and (min-width: 1537px) { | ||
611 | + .image-name { | ||
612 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
613 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
614 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
615 | + overflow: hidden; /* Hides the overflowed text */ | ||
616 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
617 | + margin-top: 5px; | ||
618 | + font-size: 16px; | ||
619 | + width: 180px; | ||
620 | + color: #555; | ||
621 | + text-align: center; /* Centers the text horizontally */ | ||
622 | + margin-left: 50px; | ||
623 | + } | ||
624 | +} | ||
625 | +@media screen and (max-width: 1536px) and (min-width: 1281px) { | ||
626 | + .image-name { | ||
627 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
628 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
629 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
630 | + overflow: hidden; /* Hides the overflowed text */ | ||
631 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
632 | + margin-top: 5px; | ||
633 | + font-size: 16px; | ||
634 | + width: 180px; | ||
635 | + color: #555; | ||
636 | + text-align: center; /* Centers the text horizontally */ | ||
637 | + margin-left: 10px; | ||
638 | + } | ||
639 | +} | ||
640 | +@media screen and (max-width: 1280px) { | ||
641 | + .image-name { | ||
642 | + display: -webkit-box; /* Enables multi-line text handling */ | ||
643 | + -webkit-box-orient: vertical; /* Defines the vertical orientation of the box */ | ||
644 | + -webkit-line-clamp: 3; /* Limits the text to 3 lines */ | ||
645 | + overflow: hidden; /* Hides the overflowed text */ | ||
646 | + text-overflow: ellipsis; /* Adds an ellipsis when the text overflows */ | ||
647 | + margin-top: 5px; | ||
648 | + font-size: 16px; | ||
649 | + width: 180px; | ||
650 | + color: #555; | ||
651 | + text-align: center; /* Centers the text horizontally */ | ||
652 | + margin-left: 10px; | ||
653 | + } | ||
654 | +} | ||
655 | + | ||
656 | +button .recommendButton { | ||
657 | + margin: 0 0px; | ||
658 | + cursor: pointer; | ||
659 | +} | ||
660 | + | ||
661 | +.recommend-left-box { | ||
662 | +} | ||
663 | + | ||
664 | +@media screen and (max-width: 1280px) { | ||
665 | + .recommend-img-left { | ||
666 | + width: 26px; | ||
667 | + height: 27px; | ||
668 | + margin-bottom: 60px; | ||
669 | + } | ||
670 | +} | ||
671 | +.recommend-img-left { | ||
672 | + width: 26px; | ||
673 | + height: 27px; | ||
674 | + margin-right: 30px; | ||
675 | + margin-bottom: 60px; | ||
676 | +} | ||
677 | + | ||
678 | +.recommend-img-left:hover { | ||
679 | + cursor: pointer; | ||
680 | +} | ||
681 | +.recommend-right-box { | ||
682 | +} | ||
683 | + | ||
684 | +.recommend-img-right { | ||
685 | + width: 26px; | ||
686 | + height: 27px; | ||
687 | + margin-left: 30px; | ||
688 | + margin-bottom: 60px; | ||
689 | +} | ||
690 | + | ||
691 | +.recommend-img-right:hover { | ||
692 | + cursor: pointer; | ||
693 | +} | ||
694 | + | ||
695 | +.v-card { | ||
696 | + transition: all 0.3s ease-in-out; | ||
697 | +} | ||
166 | </style> | 698 | </style> |
pnpm-lock.yaml
@@ -11,12 +11,15 @@ importers: | @@ -11,12 +11,15 @@ importers: | ||
11 | '@pinia/nuxt': | 11 | '@pinia/nuxt': |
12 | specifier: ^0.5.1 | 12 | specifier: ^0.5.1 |
13 | version: 0.5.1(rollup@4.17.2)(vue@3.4.27) | 13 | version: 0.5.1(rollup@4.17.2)(vue@3.4.27) |
14 | + '@stefanobartoletti/nuxt-social-share': | ||
15 | + specifier: ^1.2.0 | ||
16 | + version: 1.2.0(rollup@4.17.2) | ||
14 | lodash: | 17 | lodash: |
15 | specifier: ^4.17.21 | 18 | specifier: ^4.17.21 |
16 | version: 4.17.21 | 19 | version: 4.17.21 |
17 | nuxt: | 20 | nuxt: |
18 | specifier: ^3.11.2 | 21 | specifier: ^3.11.2 |
19 | - version: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.2)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.1)(unocss@0.60.2)(vite@5.2.11) | 22 | + version: 3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
20 | vue: | 23 | vue: |
21 | specifier: ^3.4.27 | 24 | specifier: ^3.4.27 |
22 | version: 3.4.27 | 25 | version: 3.4.27 |
@@ -25,7 +28,7 @@ importers: | @@ -25,7 +28,7 @@ importers: | ||
25 | version: 4.3.2(vue@3.4.27) | 28 | version: 4.3.2(vue@3.4.27) |
26 | vuetify-nuxt-module: | 29 | vuetify-nuxt-module: |
27 | specifier: ^0.14.0 | 30 | specifier: ^0.14.0 |
28 | - version: 0.14.0(rollup@4.17.2)(vite@5.2.11)(vue@3.4.27) | 31 | + version: 0.14.0(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27) |
29 | devDependencies: | 32 | devDependencies: |
30 | '@nuxtjs/i18n': | 33 | '@nuxtjs/i18n': |
31 | specifier: ^8.3.1 | 34 | specifier: ^8.3.1 |
@@ -66,18 +69,34 @@ packages: | @@ -66,18 +69,34 @@ packages: | ||
66 | resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} | 69 | resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} |
67 | engines: {node: '>=6.9.0'} | 70 | engines: {node: '>=6.9.0'} |
68 | 71 | ||
72 | + '@babel/code-frame@7.26.2': | ||
73 | + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} | ||
74 | + engines: {node: '>=6.9.0'} | ||
75 | + | ||
69 | '@babel/compat-data@7.24.4': | 76 | '@babel/compat-data@7.24.4': |
70 | resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} | 77 | resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} |
71 | engines: {node: '>=6.9.0'} | 78 | engines: {node: '>=6.9.0'} |
72 | 79 | ||
80 | + '@babel/compat-data@7.26.2': | ||
81 | + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} | ||
82 | + engines: {node: '>=6.9.0'} | ||
83 | + | ||
73 | '@babel/core@7.24.5': | 84 | '@babel/core@7.24.5': |
74 | resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} | 85 | resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} |
75 | engines: {node: '>=6.9.0'} | 86 | engines: {node: '>=6.9.0'} |
76 | 87 | ||
88 | + '@babel/core@7.26.0': | ||
89 | + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} | ||
90 | + engines: {node: '>=6.9.0'} | ||
91 | + | ||
77 | '@babel/generator@7.24.5': | 92 | '@babel/generator@7.24.5': |
78 | resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} | 93 | resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} |
79 | engines: {node: '>=6.9.0'} | 94 | engines: {node: '>=6.9.0'} |
80 | 95 | ||
96 | + '@babel/generator@7.26.2': | ||
97 | + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} | ||
98 | + engines: {node: '>=6.9.0'} | ||
99 | + | ||
81 | '@babel/helper-annotate-as-pure@7.22.5': | 100 | '@babel/helper-annotate-as-pure@7.22.5': |
82 | resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} | 101 | resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} |
83 | engines: {node: '>=6.9.0'} | 102 | engines: {node: '>=6.9.0'} |
@@ -86,6 +105,10 @@ packages: | @@ -86,6 +105,10 @@ packages: | ||
86 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} | 105 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} |
87 | engines: {node: '>=6.9.0'} | 106 | engines: {node: '>=6.9.0'} |
88 | 107 | ||
108 | + '@babel/helper-compilation-targets@7.25.9': | ||
109 | + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} | ||
110 | + engines: {node: '>=6.9.0'} | ||
111 | + | ||
89 | '@babel/helper-create-class-features-plugin@7.24.5': | 112 | '@babel/helper-create-class-features-plugin@7.24.5': |
90 | resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==} | 113 | resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==} |
91 | engines: {node: '>=6.9.0'} | 114 | engines: {node: '>=6.9.0'} |
@@ -116,12 +139,22 @@ packages: | @@ -116,12 +139,22 @@ packages: | ||
116 | resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} | 139 | resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} |
117 | engines: {node: '>=6.9.0'} | 140 | engines: {node: '>=6.9.0'} |
118 | 141 | ||
142 | + '@babel/helper-module-imports@7.25.9': | ||
143 | + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} | ||
144 | + engines: {node: '>=6.9.0'} | ||
145 | + | ||
119 | '@babel/helper-module-transforms@7.24.5': | 146 | '@babel/helper-module-transforms@7.24.5': |
120 | resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} | 147 | resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} |
121 | engines: {node: '>=6.9.0'} | 148 | engines: {node: '>=6.9.0'} |
122 | peerDependencies: | 149 | peerDependencies: |
123 | '@babel/core': ^7.0.0 | 150 | '@babel/core': ^7.0.0 |
124 | 151 | ||
152 | + '@babel/helper-module-transforms@7.26.0': | ||
153 | + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} | ||
154 | + engines: {node: '>=6.9.0'} | ||
155 | + peerDependencies: | ||
156 | + '@babel/core': ^7.0.0 | ||
157 | + | ||
125 | '@babel/helper-optimise-call-expression@7.22.5': | 158 | '@babel/helper-optimise-call-expression@7.22.5': |
126 | resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} | 159 | resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} |
127 | engines: {node: '>=6.9.0'} | 160 | engines: {node: '>=6.9.0'} |
@@ -152,18 +185,34 @@ packages: | @@ -152,18 +185,34 @@ packages: | ||
152 | resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} | 185 | resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} |
153 | engines: {node: '>=6.9.0'} | 186 | engines: {node: '>=6.9.0'} |
154 | 187 | ||
188 | + '@babel/helper-string-parser@7.25.9': | ||
189 | + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} | ||
190 | + engines: {node: '>=6.9.0'} | ||
191 | + | ||
155 | '@babel/helper-validator-identifier@7.24.5': | 192 | '@babel/helper-validator-identifier@7.24.5': |
156 | resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} | 193 | resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} |
157 | engines: {node: '>=6.9.0'} | 194 | engines: {node: '>=6.9.0'} |
158 | 195 | ||
196 | + '@babel/helper-validator-identifier@7.25.9': | ||
197 | + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} | ||
198 | + engines: {node: '>=6.9.0'} | ||
199 | + | ||
159 | '@babel/helper-validator-option@7.23.5': | 200 | '@babel/helper-validator-option@7.23.5': |
160 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} | 201 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} |
161 | engines: {node: '>=6.9.0'} | 202 | engines: {node: '>=6.9.0'} |
162 | 203 | ||
204 | + '@babel/helper-validator-option@7.25.9': | ||
205 | + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} | ||
206 | + engines: {node: '>=6.9.0'} | ||
207 | + | ||
163 | '@babel/helpers@7.24.5': | 208 | '@babel/helpers@7.24.5': |
164 | resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} | 209 | resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} |
165 | engines: {node: '>=6.9.0'} | 210 | engines: {node: '>=6.9.0'} |
166 | 211 | ||
212 | + '@babel/helpers@7.26.0': | ||
213 | + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} | ||
214 | + engines: {node: '>=6.9.0'} | ||
215 | + | ||
167 | '@babel/highlight@7.24.5': | 216 | '@babel/highlight@7.24.5': |
168 | resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} | 217 | resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} |
169 | engines: {node: '>=6.9.0'} | 218 | engines: {node: '>=6.9.0'} |
@@ -173,6 +222,11 @@ packages: | @@ -173,6 +222,11 @@ packages: | ||
173 | engines: {node: '>=6.0.0'} | 222 | engines: {node: '>=6.0.0'} |
174 | hasBin: true | 223 | hasBin: true |
175 | 224 | ||
225 | + '@babel/parser@7.26.2': | ||
226 | + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} | ||
227 | + engines: {node: '>=6.0.0'} | ||
228 | + hasBin: true | ||
229 | + | ||
176 | '@babel/plugin-proposal-decorators@7.24.1': | 230 | '@babel/plugin-proposal-decorators@7.24.1': |
177 | resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} | 231 | resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} |
178 | engines: {node: '>=6.9.0'} | 232 | engines: {node: '>=6.9.0'} |
@@ -230,18 +284,34 @@ packages: | @@ -230,18 +284,34 @@ packages: | ||
230 | resolution: {integrity: sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A==} | 284 | resolution: {integrity: sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A==} |
231 | engines: {node: '>=6.9.0'} | 285 | engines: {node: '>=6.9.0'} |
232 | 286 | ||
287 | + '@babel/standalone@7.26.2': | ||
288 | + resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==} | ||
289 | + engines: {node: '>=6.9.0'} | ||
290 | + | ||
233 | '@babel/template@7.24.0': | 291 | '@babel/template@7.24.0': |
234 | resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} | 292 | resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} |
235 | engines: {node: '>=6.9.0'} | 293 | engines: {node: '>=6.9.0'} |
236 | 294 | ||
295 | + '@babel/template@7.25.9': | ||
296 | + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} | ||
297 | + engines: {node: '>=6.9.0'} | ||
298 | + | ||
237 | '@babel/traverse@7.24.5': | 299 | '@babel/traverse@7.24.5': |
238 | resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} | 300 | resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} |
239 | engines: {node: '>=6.9.0'} | 301 | engines: {node: '>=6.9.0'} |
240 | 302 | ||
303 | + '@babel/traverse@7.25.9': | ||
304 | + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} | ||
305 | + engines: {node: '>=6.9.0'} | ||
306 | + | ||
241 | '@babel/types@7.24.5': | 307 | '@babel/types@7.24.5': |
242 | resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} | 308 | resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} |
243 | engines: {node: '>=6.9.0'} | 309 | engines: {node: '>=6.9.0'} |
244 | 310 | ||
311 | + '@babel/types@7.26.0': | ||
312 | + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} | ||
313 | + engines: {node: '>=6.9.0'} | ||
314 | + | ||
245 | '@cloudflare/kv-asset-handler@0.3.2': | 315 | '@cloudflare/kv-asset-handler@0.3.2': |
246 | resolution: {integrity: sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==} | 316 | resolution: {integrity: sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==} |
247 | engines: {node: '>=16.13'} | 317 | engines: {node: '>=16.13'} |
@@ -479,6 +549,9 @@ packages: | @@ -479,6 +549,9 @@ packages: | ||
479 | '@jridgewell/sourcemap-codec@1.4.15': | 549 | '@jridgewell/sourcemap-codec@1.4.15': |
480 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} | 550 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} |
481 | 551 | ||
552 | + '@jridgewell/sourcemap-codec@1.5.0': | ||
553 | + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} | ||
554 | + | ||
482 | '@jridgewell/trace-mapping@0.3.25': | 555 | '@jridgewell/trace-mapping@0.3.25': |
483 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} | 556 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} |
484 | 557 | ||
@@ -586,10 +659,18 @@ packages: | @@ -586,10 +659,18 @@ packages: | ||
586 | resolution: {integrity: sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==} | 659 | resolution: {integrity: sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==} |
587 | engines: {node: ^14.18.0 || >=16.10.0} | 660 | engines: {node: ^14.18.0 || >=16.10.0} |
588 | 661 | ||
662 | + '@nuxt/kit@3.14.1592': | ||
663 | + resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==} | ||
664 | + engines: {node: ^14.18.0 || >=16.10.0} | ||
665 | + | ||
589 | '@nuxt/schema@3.11.2': | 666 | '@nuxt/schema@3.11.2': |
590 | resolution: {integrity: sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==} | 667 | resolution: {integrity: sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==} |
591 | engines: {node: ^14.18.0 || >=16.10.0} | 668 | engines: {node: ^14.18.0 || >=16.10.0} |
592 | 669 | ||
670 | + '@nuxt/schema@3.14.1592': | ||
671 | + resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==} | ||
672 | + engines: {node: ^14.18.0 || >=16.10.0} | ||
673 | + | ||
593 | '@nuxt/telemetry@2.5.4': | 674 | '@nuxt/telemetry@2.5.4': |
594 | resolution: {integrity: sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==} | 675 | resolution: {integrity: sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==} |
595 | hasBin: true | 676 | hasBin: true |
@@ -716,30 +797,35 @@ packages: | @@ -716,30 +797,35 @@ packages: | ||
716 | engines: {node: '>= 10.0.0'} | 797 | engines: {node: '>= 10.0.0'} |
717 | cpu: [arm] | 798 | cpu: [arm] |
718 | os: [linux] | 799 | os: [linux] |
800 | + libc: [glibc] | ||
719 | 801 | ||
720 | '@parcel/watcher-linux-arm64-glibc@2.4.1': | 802 | '@parcel/watcher-linux-arm64-glibc@2.4.1': |
721 | resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} | 803 | resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} |
722 | engines: {node: '>= 10.0.0'} | 804 | engines: {node: '>= 10.0.0'} |
723 | cpu: [arm64] | 805 | cpu: [arm64] |
724 | os: [linux] | 806 | os: [linux] |
807 | + libc: [glibc] | ||
725 | 808 | ||
726 | '@parcel/watcher-linux-arm64-musl@2.4.1': | 809 | '@parcel/watcher-linux-arm64-musl@2.4.1': |
727 | resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} | 810 | resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} |
728 | engines: {node: '>= 10.0.0'} | 811 | engines: {node: '>= 10.0.0'} |
729 | cpu: [arm64] | 812 | cpu: [arm64] |
730 | os: [linux] | 813 | os: [linux] |
814 | + libc: [musl] | ||
731 | 815 | ||
732 | '@parcel/watcher-linux-x64-glibc@2.4.1': | 816 | '@parcel/watcher-linux-x64-glibc@2.4.1': |
733 | resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} | 817 | resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} |
734 | engines: {node: '>= 10.0.0'} | 818 | engines: {node: '>= 10.0.0'} |
735 | cpu: [x64] | 819 | cpu: [x64] |
736 | os: [linux] | 820 | os: [linux] |
821 | + libc: [glibc] | ||
737 | 822 | ||
738 | '@parcel/watcher-linux-x64-musl@2.4.1': | 823 | '@parcel/watcher-linux-x64-musl@2.4.1': |
739 | resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} | 824 | resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} |
740 | engines: {node: '>= 10.0.0'} | 825 | engines: {node: '>= 10.0.0'} |
741 | cpu: [x64] | 826 | cpu: [x64] |
742 | os: [linux] | 827 | os: [linux] |
828 | + libc: [musl] | ||
743 | 829 | ||
744 | '@parcel/watcher-wasm@2.4.1': | 830 | '@parcel/watcher-wasm@2.4.1': |
745 | resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} | 831 | resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} |
@@ -864,6 +950,15 @@ packages: | @@ -864,6 +950,15 @@ packages: | ||
864 | rollup: | 950 | rollup: |
865 | optional: true | 951 | optional: true |
866 | 952 | ||
953 | + '@rollup/pluginutils@5.1.3': | ||
954 | + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} | ||
955 | + engines: {node: '>=14.0.0'} | ||
956 | + peerDependencies: | ||
957 | + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 | ||
958 | + peerDependenciesMeta: | ||
959 | + rollup: | ||
960 | + optional: true | ||
961 | + | ||
867 | '@rollup/rollup-android-arm-eabi@4.17.2': | 962 | '@rollup/rollup-android-arm-eabi@4.17.2': |
868 | resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} | 963 | resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} |
869 | cpu: [arm] | 964 | cpu: [arm] |
@@ -888,46 +983,55 @@ packages: | @@ -888,46 +983,55 @@ packages: | ||
888 | resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} | 983 | resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} |
889 | cpu: [arm] | 984 | cpu: [arm] |
890 | os: [linux] | 985 | os: [linux] |
986 | + libc: [glibc] | ||
891 | 987 | ||
892 | '@rollup/rollup-linux-arm-musleabihf@4.17.2': | 988 | '@rollup/rollup-linux-arm-musleabihf@4.17.2': |
893 | resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} | 989 | resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} |
894 | cpu: [arm] | 990 | cpu: [arm] |
895 | os: [linux] | 991 | os: [linux] |
992 | + libc: [musl] | ||
896 | 993 | ||
897 | '@rollup/rollup-linux-arm64-gnu@4.17.2': | 994 | '@rollup/rollup-linux-arm64-gnu@4.17.2': |
898 | resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} | 995 | resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} |
899 | cpu: [arm64] | 996 | cpu: [arm64] |
900 | os: [linux] | 997 | os: [linux] |
998 | + libc: [glibc] | ||
901 | 999 | ||
902 | '@rollup/rollup-linux-arm64-musl@4.17.2': | 1000 | '@rollup/rollup-linux-arm64-musl@4.17.2': |
903 | resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} | 1001 | resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} |
904 | cpu: [arm64] | 1002 | cpu: [arm64] |
905 | os: [linux] | 1003 | os: [linux] |
1004 | + libc: [musl] | ||
906 | 1005 | ||
907 | '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': | 1006 | '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': |
908 | resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} | 1007 | resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} |
909 | cpu: [ppc64] | 1008 | cpu: [ppc64] |
910 | os: [linux] | 1009 | os: [linux] |
1010 | + libc: [glibc] | ||
911 | 1011 | ||
912 | '@rollup/rollup-linux-riscv64-gnu@4.17.2': | 1012 | '@rollup/rollup-linux-riscv64-gnu@4.17.2': |
913 | resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} | 1013 | resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} |
914 | cpu: [riscv64] | 1014 | cpu: [riscv64] |
915 | os: [linux] | 1015 | os: [linux] |
1016 | + libc: [glibc] | ||
916 | 1017 | ||
917 | '@rollup/rollup-linux-s390x-gnu@4.17.2': | 1018 | '@rollup/rollup-linux-s390x-gnu@4.17.2': |
918 | resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} | 1019 | resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} |
919 | cpu: [s390x] | 1020 | cpu: [s390x] |
920 | os: [linux] | 1021 | os: [linux] |
1022 | + libc: [glibc] | ||
921 | 1023 | ||
922 | '@rollup/rollup-linux-x64-gnu@4.17.2': | 1024 | '@rollup/rollup-linux-x64-gnu@4.17.2': |
923 | resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} | 1025 | resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} |
924 | cpu: [x64] | 1026 | cpu: [x64] |
925 | os: [linux] | 1027 | os: [linux] |
1028 | + libc: [glibc] | ||
926 | 1029 | ||
927 | '@rollup/rollup-linux-x64-musl@4.17.2': | 1030 | '@rollup/rollup-linux-x64-musl@4.17.2': |
928 | resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} | 1031 | resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} |
929 | cpu: [x64] | 1032 | cpu: [x64] |
930 | os: [linux] | 1033 | os: [linux] |
1034 | + libc: [musl] | ||
931 | 1035 | ||
932 | '@rollup/rollup-win32-arm64-msvc@4.17.2': | 1036 | '@rollup/rollup-win32-arm64-msvc@4.17.2': |
933 | resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} | 1037 | resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} |
@@ -975,6 +1079,9 @@ packages: | @@ -975,6 +1079,9 @@ packages: | ||
975 | resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} | 1079 | resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} |
976 | engines: {node: '>=18'} | 1080 | engines: {node: '>=18'} |
977 | 1081 | ||
1082 | + '@stefanobartoletti/nuxt-social-share@1.2.0': | ||
1083 | + resolution: {integrity: sha512-iehssGh971g49CFU3A9leUpAgrLMb9gPFIO7OORyh6ghclc6HNr7QaGnOXihAM0VTJRIqiL3f3AEMiAvwT79Kg==} | ||
1084 | + | ||
978 | '@tailwindcss/aspect-ratio@0.4.2': | 1085 | '@tailwindcss/aspect-ratio@0.4.2': |
979 | resolution: {integrity: sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==} | 1086 | resolution: {integrity: sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==} |
980 | peerDependencies: | 1087 | peerDependencies: |
@@ -1295,6 +1402,11 @@ packages: | @@ -1295,6 +1402,11 @@ packages: | ||
1295 | engines: {node: '>=0.4.0'} | 1402 | engines: {node: '>=0.4.0'} |
1296 | hasBin: true | 1403 | hasBin: true |
1297 | 1404 | ||
1405 | + acorn@8.14.0: | ||
1406 | + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} | ||
1407 | + engines: {node: '>=0.4.0'} | ||
1408 | + hasBin: true | ||
1409 | + | ||
1298 | agent-base@6.0.2: | 1410 | agent-base@6.0.2: |
1299 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} | 1411 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} |
1300 | engines: {node: '>= 6.0.0'} | 1412 | engines: {node: '>= 6.0.0'} |
@@ -1428,6 +1540,11 @@ packages: | @@ -1428,6 +1540,11 @@ packages: | ||
1428 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} | 1540 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} |
1429 | hasBin: true | 1541 | hasBin: true |
1430 | 1542 | ||
1543 | + browserslist@4.24.2: | ||
1544 | + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} | ||
1545 | + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} | ||
1546 | + hasBin: true | ||
1547 | + | ||
1431 | buffer-crc32@1.0.0: | 1548 | buffer-crc32@1.0.0: |
1432 | resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} | 1549 | resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} |
1433 | engines: {node: '>=8.0.0'} | 1550 | engines: {node: '>=8.0.0'} |
@@ -1449,6 +1566,14 @@ packages: | @@ -1449,6 +1566,14 @@ packages: | ||
1449 | c12@1.10.0: | 1566 | c12@1.10.0: |
1450 | resolution: {integrity: sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==} | 1567 | resolution: {integrity: sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==} |
1451 | 1568 | ||
1569 | + c12@2.0.1: | ||
1570 | + resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==} | ||
1571 | + peerDependencies: | ||
1572 | + magicast: ^0.3.5 | ||
1573 | + peerDependenciesMeta: | ||
1574 | + magicast: | ||
1575 | + optional: true | ||
1576 | + | ||
1452 | cac@6.7.14: | 1577 | cac@6.7.14: |
1453 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} | 1578 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} |
1454 | engines: {node: '>=8'} | 1579 | engines: {node: '>=8'} |
@@ -1471,6 +1596,9 @@ packages: | @@ -1471,6 +1596,9 @@ packages: | ||
1471 | caniuse-lite@1.0.30001617: | 1596 | caniuse-lite@1.0.30001617: |
1472 | resolution: {integrity: sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==} | 1597 | resolution: {integrity: sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==} |
1473 | 1598 | ||
1599 | + caniuse-lite@1.0.30001684: | ||
1600 | + resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==} | ||
1601 | + | ||
1474 | chalk@2.4.2: | 1602 | chalk@2.4.2: |
1475 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} | 1603 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} |
1476 | engines: {node: '>=4'} | 1604 | engines: {node: '>=4'} |
@@ -1487,6 +1615,10 @@ packages: | @@ -1487,6 +1615,10 @@ packages: | ||
1487 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} | 1615 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} |
1488 | engines: {node: '>= 8.10.0'} | 1616 | engines: {node: '>= 8.10.0'} |
1489 | 1617 | ||
1618 | + chokidar@4.0.1: | ||
1619 | + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} | ||
1620 | + engines: {node: '>= 14.16.0'} | ||
1621 | + | ||
1490 | chownr@2.0.0: | 1622 | chownr@2.0.0: |
1491 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} | 1623 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} |
1492 | engines: {node: '>=10'} | 1624 | engines: {node: '>=10'} |
@@ -1558,6 +1690,9 @@ packages: | @@ -1558,6 +1690,9 @@ packages: | ||
1558 | commondir@1.0.1: | 1690 | commondir@1.0.1: |
1559 | resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} | 1691 | resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} |
1560 | 1692 | ||
1693 | + compatx@0.1.8: | ||
1694 | + resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==} | ||
1695 | + | ||
1561 | compress-commons@6.0.2: | 1696 | compress-commons@6.0.2: |
1562 | resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} | 1697 | resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} |
1563 | engines: {node: '>= 14'} | 1698 | engines: {node: '>= 14'} |
@@ -1568,6 +1703,9 @@ packages: | @@ -1568,6 +1703,9 @@ packages: | ||
1568 | confbox@0.1.7: | 1703 | confbox@0.1.7: |
1569 | resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} | 1704 | resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} |
1570 | 1705 | ||
1706 | + confbox@0.1.8: | ||
1707 | + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} | ||
1708 | + | ||
1571 | consola@3.2.3: | 1709 | consola@3.2.3: |
1572 | resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} | 1710 | resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} |
1573 | engines: {node: ^14.18.0 || >=16.10.0} | 1711 | engines: {node: ^14.18.0 || >=16.10.0} |
@@ -1794,6 +1932,9 @@ packages: | @@ -1794,6 +1932,9 @@ packages: | ||
1794 | electron-to-chromium@1.4.763: | 1932 | electron-to-chromium@1.4.763: |
1795 | resolution: {integrity: sha512-k4J8NrtJ9QrvHLRo8Q18OncqBCB7tIUyqxRcJnlonQ0ioHKYB988GcDFF3ZePmnb8eHEopDs/wPHR/iGAFgoUQ==} | 1933 | resolution: {integrity: sha512-k4J8NrtJ9QrvHLRo8Q18OncqBCB7tIUyqxRcJnlonQ0ioHKYB988GcDFF3ZePmnb8eHEopDs/wPHR/iGAFgoUQ==} |
1796 | 1934 | ||
1935 | + electron-to-chromium@1.5.64: | ||
1936 | + resolution: {integrity: sha512-IXEuxU+5ClW2IGEYFC2T7szbyVgehupCWQe5GNh+H065CD6U6IFN0s4KeAMFGNmQolRU4IV7zGBWSYMmZ8uuqQ==} | ||
1937 | + | ||
1797 | emoji-regex@8.0.0: | 1938 | emoji-regex@8.0.0: |
1798 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} | 1939 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} |
1799 | 1940 | ||
@@ -1834,6 +1975,10 @@ packages: | @@ -1834,6 +1975,10 @@ packages: | ||
1834 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} | 1975 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} |
1835 | engines: {node: '>=6'} | 1976 | engines: {node: '>=6'} |
1836 | 1977 | ||
1978 | + escalade@3.2.0: | ||
1979 | + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} | ||
1980 | + engines: {node: '>=6'} | ||
1981 | + | ||
1837 | escape-html@1.0.3: | 1982 | escape-html@1.0.3: |
1838 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} | 1983 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} |
1839 | 1984 | ||
@@ -2046,6 +2191,10 @@ packages: | @@ -2046,6 +2191,10 @@ packages: | ||
2046 | resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} | 2191 | resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} |
2047 | engines: {node: '>=18'} | 2192 | engines: {node: '>=18'} |
2048 | 2193 | ||
2194 | + globby@14.0.2: | ||
2195 | + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} | ||
2196 | + engines: {node: '>=18'} | ||
2197 | + | ||
2049 | graceful-fs@4.2.11: | 2198 | graceful-fs@4.2.11: |
2050 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} | 2199 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} |
2051 | 2200 | ||
@@ -2142,6 +2291,10 @@ packages: | @@ -2142,6 +2291,10 @@ packages: | ||
2142 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} | 2291 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} |
2143 | engines: {node: '>= 4'} | 2292 | engines: {node: '>= 4'} |
2144 | 2293 | ||
2294 | + ignore@6.0.2: | ||
2295 | + resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==} | ||
2296 | + engines: {node: '>= 4'} | ||
2297 | + | ||
2145 | image-meta@0.2.0: | 2298 | image-meta@0.2.0: |
2146 | resolution: {integrity: sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==} | 2299 | resolution: {integrity: sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==} |
2147 | 2300 | ||
@@ -2290,6 +2443,10 @@ packages: | @@ -2290,6 +2443,10 @@ packages: | ||
2290 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} | 2443 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} |
2291 | hasBin: true | 2444 | hasBin: true |
2292 | 2445 | ||
2446 | + jiti@2.4.0: | ||
2447 | + resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==} | ||
2448 | + hasBin: true | ||
2449 | + | ||
2293 | js-tokens@4.0.0: | 2450 | js-tokens@4.0.0: |
2294 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} | 2451 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} |
2295 | 2452 | ||
@@ -2308,6 +2465,11 @@ packages: | @@ -2308,6 +2465,11 @@ packages: | ||
2308 | engines: {node: '>=4'} | 2465 | engines: {node: '>=4'} |
2309 | hasBin: true | 2466 | hasBin: true |
2310 | 2467 | ||
2468 | + jsesc@3.0.2: | ||
2469 | + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} | ||
2470 | + engines: {node: '>=6'} | ||
2471 | + hasBin: true | ||
2472 | + | ||
2311 | json-parse-even-better-errors@3.0.2: | 2473 | json-parse-even-better-errors@3.0.2: |
2312 | resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} | 2474 | resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} |
2313 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} | 2475 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} |
@@ -2372,6 +2534,10 @@ packages: | @@ -2372,6 +2534,10 @@ packages: | ||
2372 | resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} | 2534 | resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} |
2373 | engines: {node: '>=14'} | 2535 | engines: {node: '>=14'} |
2374 | 2536 | ||
2537 | + local-pkg@0.5.1: | ||
2538 | + resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} | ||
2539 | + engines: {node: '>=14'} | ||
2540 | + | ||
2375 | locate-path@6.0.0: | 2541 | locate-path@6.0.0: |
2376 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} | 2542 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} |
2377 | engines: {node: '>=10'} | 2543 | engines: {node: '>=10'} |
@@ -2411,6 +2577,9 @@ packages: | @@ -2411,6 +2577,9 @@ packages: | ||
2411 | magic-string@0.30.10: | 2577 | magic-string@0.30.10: |
2412 | resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} | 2578 | resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} |
2413 | 2579 | ||
2580 | + magic-string@0.30.13: | ||
2581 | + resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==} | ||
2582 | + | ||
2414 | magicast@0.3.4: | 2583 | magicast@0.3.4: |
2415 | resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==} | 2584 | resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==} |
2416 | 2585 | ||
@@ -2529,6 +2698,9 @@ packages: | @@ -2529,6 +2698,9 @@ packages: | ||
2529 | mlly@1.7.1: | 2698 | mlly@1.7.1: |
2530 | resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} | 2699 | resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} |
2531 | 2700 | ||
2701 | + mlly@1.7.3: | ||
2702 | + resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} | ||
2703 | + | ||
2532 | mri@1.2.0: | 2704 | mri@1.2.0: |
2533 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} | 2705 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} |
2534 | engines: {node: '>=4'} | 2706 | engines: {node: '>=4'} |
@@ -2559,9 +2731,6 @@ packages: | @@ -2559,9 +2731,6 @@ packages: | ||
2559 | engines: {node: ^18 || >=20} | 2731 | engines: {node: ^18 || >=20} |
2560 | hasBin: true | 2732 | hasBin: true |
2561 | 2733 | ||
2562 | - napi-wasm@1.1.0: | ||
2563 | - resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==} | ||
2564 | - | ||
2565 | negotiator@0.6.3: | 2734 | negotiator@0.6.3: |
2566 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} | 2735 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} |
2567 | engines: {node: '>= 0.6'} | 2736 | engines: {node: '>= 0.6'} |
@@ -2608,6 +2777,9 @@ packages: | @@ -2608,6 +2777,9 @@ packages: | ||
2608 | node-releases@2.0.14: | 2777 | node-releases@2.0.14: |
2609 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} | 2778 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} |
2610 | 2779 | ||
2780 | + node-releases@2.0.18: | ||
2781 | + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} | ||
2782 | + | ||
2611 | nopt@5.0.0: | 2783 | nopt@5.0.0: |
2612 | resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} | 2784 | resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} |
2613 | engines: {node: '>=6'} | 2785 | engines: {node: '>=6'} |
@@ -2709,6 +2881,9 @@ packages: | @@ -2709,6 +2881,9 @@ packages: | ||
2709 | ohash@1.1.3: | 2881 | ohash@1.1.3: |
2710 | resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} | 2882 | resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} |
2711 | 2883 | ||
2884 | + ohash@1.1.4: | ||
2885 | + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} | ||
2886 | + | ||
2712 | on-finished@2.4.1: | 2887 | on-finished@2.4.1: |
2713 | resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} | 2888 | resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} |
2714 | engines: {node: '>= 0.8'} | 2889 | engines: {node: '>= 0.8'} |
@@ -2806,10 +2981,17 @@ packages: | @@ -2806,10 +2981,17 @@ packages: | ||
2806 | picocolors@1.0.0: | 2981 | picocolors@1.0.0: |
2807 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} | 2982 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} |
2808 | 2983 | ||
2984 | + picocolors@1.1.1: | ||
2985 | + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} | ||
2986 | + | ||
2809 | picomatch@2.3.1: | 2987 | picomatch@2.3.1: |
2810 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} | 2988 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} |
2811 | engines: {node: '>=8.6'} | 2989 | engines: {node: '>=8.6'} |
2812 | 2990 | ||
2991 | + picomatch@4.0.2: | ||
2992 | + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} | ||
2993 | + engines: {node: '>=12'} | ||
2994 | + | ||
2813 | pify@2.3.0: | 2995 | pify@2.3.0: |
2814 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} | 2996 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} |
2815 | engines: {node: '>=0.10.0'} | 2997 | engines: {node: '>=0.10.0'} |
@@ -2836,6 +3018,9 @@ packages: | @@ -2836,6 +3018,9 @@ packages: | ||
2836 | pkg-types@1.1.3: | 3018 | pkg-types@1.1.3: |
2837 | resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} | 3019 | resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} |
2838 | 3020 | ||
3021 | + pkg-types@1.2.1: | ||
3022 | + resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} | ||
3023 | + | ||
2839 | postcss-calc@9.0.1: | 3024 | postcss-calc@9.0.1: |
2840 | resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} | 3025 | resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} |
2841 | engines: {node: ^14 || ^16 || >=18.0} | 3026 | engines: {node: ^14 || ^16 || >=18.0} |
@@ -3117,6 +3302,10 @@ packages: | @@ -3117,6 +3302,10 @@ packages: | ||
3117 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} | 3302 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} |
3118 | engines: {node: '>=8.10.0'} | 3303 | engines: {node: '>=8.10.0'} |
3119 | 3304 | ||
3305 | + readdirp@4.0.2: | ||
3306 | + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} | ||
3307 | + engines: {node: '>= 14.16.0'} | ||
3308 | + | ||
3120 | redis-errors@1.2.0: | 3309 | redis-errors@1.2.0: |
3121 | resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} | 3310 | resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} |
3122 | engines: {node: '>=4'} | 3311 | engines: {node: '>=4'} |
@@ -3200,6 +3389,11 @@ packages: | @@ -3200,6 +3389,11 @@ packages: | ||
3200 | engines: {node: '>=10'} | 3389 | engines: {node: '>=10'} |
3201 | hasBin: true | 3390 | hasBin: true |
3202 | 3391 | ||
3392 | + semver@7.6.3: | ||
3393 | + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} | ||
3394 | + engines: {node: '>=10'} | ||
3395 | + hasBin: true | ||
3396 | + | ||
3203 | send@0.18.0: | 3397 | send@0.18.0: |
3204 | resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} | 3398 | resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} |
3205 | engines: {node: '>= 0.8.0'} | 3399 | engines: {node: '>= 0.8.0'} |
@@ -3329,6 +3523,9 @@ packages: | @@ -3329,6 +3523,9 @@ packages: | ||
3329 | std-env@3.7.0: | 3523 | std-env@3.7.0: |
3330 | resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} | 3524 | resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} |
3331 | 3525 | ||
3526 | + std-env@3.8.0: | ||
3527 | + resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} | ||
3528 | + | ||
3332 | streamx@2.16.1: | 3529 | streamx@2.16.1: |
3333 | resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==} | 3530 | resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==} |
3334 | 3531 | ||
@@ -3485,6 +3682,9 @@ packages: | @@ -3485,6 +3682,9 @@ packages: | ||
3485 | ufo@1.5.3: | 3682 | ufo@1.5.3: |
3486 | resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} | 3683 | resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} |
3487 | 3684 | ||
3685 | + ufo@1.5.4: | ||
3686 | + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} | ||
3687 | + | ||
3488 | ultrahtml@1.5.3: | 3688 | ultrahtml@1.5.3: |
3489 | resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} | 3689 | resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} |
3490 | 3690 | ||
@@ -3514,6 +3714,9 @@ packages: | @@ -3514,6 +3714,9 @@ packages: | ||
3514 | resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} | 3714 | resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} |
3515 | engines: {node: '>=18'} | 3715 | engines: {node: '>=18'} |
3516 | 3716 | ||
3717 | + unimport@3.13.3: | ||
3718 | + resolution: {integrity: sha512-dr7sjOoRFCSDlnARFPAMB8OmjIMc6j14qd749VmB1yiqFEYFbi+1jWPTuc22JoFs/t1kHJXT3vQNiwCy3ZvsTA==} | ||
3719 | + | ||
3517 | unimport@3.7.1: | 3720 | unimport@3.7.1: |
3518 | resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==} | 3721 | resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==} |
3519 | 3722 | ||
@@ -3553,6 +3756,10 @@ packages: | @@ -3553,6 +3756,10 @@ packages: | ||
3553 | resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==} | 3756 | resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==} |
3554 | engines: {node: '>=14.0.0'} | 3757 | engines: {node: '>=14.0.0'} |
3555 | 3758 | ||
3759 | + unplugin@1.16.0: | ||
3760 | + resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==} | ||
3761 | + engines: {node: '>=14.0.0'} | ||
3762 | + | ||
3556 | unstorage@1.10.2: | 3763 | unstorage@1.10.2: |
3557 | resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} | 3764 | resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} |
3558 | peerDependencies: | 3765 | peerDependencies: |
@@ -3605,6 +3812,10 @@ packages: | @@ -3605,6 +3812,10 @@ packages: | ||
3605 | resolution: {integrity: sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==} | 3812 | resolution: {integrity: sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==} |
3606 | hasBin: true | 3813 | hasBin: true |
3607 | 3814 | ||
3815 | + untyped@1.5.1: | ||
3816 | + resolution: {integrity: sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A==} | ||
3817 | + hasBin: true | ||
3818 | + | ||
3608 | unwasm@0.3.9: | 3819 | unwasm@0.3.9: |
3609 | resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==} | 3820 | resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==} |
3610 | 3821 | ||
@@ -3618,6 +3829,12 @@ packages: | @@ -3618,6 +3829,12 @@ packages: | ||
3618 | peerDependencies: | 3829 | peerDependencies: |
3619 | browserslist: '>= 4.21.0' | 3830 | browserslist: '>= 4.21.0' |
3620 | 3831 | ||
3832 | + update-browserslist-db@1.1.1: | ||
3833 | + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} | ||
3834 | + hasBin: true | ||
3835 | + peerDependencies: | ||
3836 | + browserslist: '>= 4.21.0' | ||
3837 | + | ||
3621 | uqr@0.1.2: | 3838 | uqr@0.1.2: |
3622 | resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} | 3839 | resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} |
3623 | 3840 | ||
@@ -3833,6 +4050,9 @@ packages: | @@ -3833,6 +4050,9 @@ packages: | ||
3833 | webpack-virtual-modules@0.6.1: | 4050 | webpack-virtual-modules@0.6.1: |
3834 | resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} | 4051 | resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} |
3835 | 4052 | ||
4053 | + webpack-virtual-modules@0.6.2: | ||
4054 | + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} | ||
4055 | + | ||
3836 | whatwg-url@5.0.0: | 4056 | whatwg-url@5.0.0: |
3837 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} | 4057 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} |
3838 | 4058 | ||
@@ -3936,8 +4156,16 @@ snapshots: | @@ -3936,8 +4156,16 @@ snapshots: | ||
3936 | '@babel/highlight': 7.24.5 | 4156 | '@babel/highlight': 7.24.5 |
3937 | picocolors: 1.0.0 | 4157 | picocolors: 1.0.0 |
3938 | 4158 | ||
4159 | + '@babel/code-frame@7.26.2': | ||
4160 | + dependencies: | ||
4161 | + '@babel/helper-validator-identifier': 7.25.9 | ||
4162 | + js-tokens: 4.0.0 | ||
4163 | + picocolors: 1.0.0 | ||
4164 | + | ||
3939 | '@babel/compat-data@7.24.4': {} | 4165 | '@babel/compat-data@7.24.4': {} |
3940 | 4166 | ||
4167 | + '@babel/compat-data@7.26.2': {} | ||
4168 | + | ||
3941 | '@babel/core@7.24.5': | 4169 | '@babel/core@7.24.5': |
3942 | dependencies: | 4170 | dependencies: |
3943 | '@ampproject/remapping': 2.3.0 | 4171 | '@ampproject/remapping': 2.3.0 |
@@ -3958,6 +4186,26 @@ snapshots: | @@ -3958,6 +4186,26 @@ snapshots: | ||
3958 | transitivePeerDependencies: | 4186 | transitivePeerDependencies: |
3959 | - supports-color | 4187 | - supports-color |
3960 | 4188 | ||
4189 | + '@babel/core@7.26.0': | ||
4190 | + dependencies: | ||
4191 | + '@ampproject/remapping': 2.3.0 | ||
4192 | + '@babel/code-frame': 7.26.2 | ||
4193 | + '@babel/generator': 7.26.2 | ||
4194 | + '@babel/helper-compilation-targets': 7.25.9 | ||
4195 | + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) | ||
4196 | + '@babel/helpers': 7.26.0 | ||
4197 | + '@babel/parser': 7.26.2 | ||
4198 | + '@babel/template': 7.25.9 | ||
4199 | + '@babel/traverse': 7.25.9 | ||
4200 | + '@babel/types': 7.26.0 | ||
4201 | + convert-source-map: 2.0.0 | ||
4202 | + debug: 4.3.4 | ||
4203 | + gensync: 1.0.0-beta.2 | ||
4204 | + json5: 2.2.3 | ||
4205 | + semver: 6.3.1 | ||
4206 | + transitivePeerDependencies: | ||
4207 | + - supports-color | ||
4208 | + | ||
3961 | '@babel/generator@7.24.5': | 4209 | '@babel/generator@7.24.5': |
3962 | dependencies: | 4210 | dependencies: |
3963 | '@babel/types': 7.24.5 | 4211 | '@babel/types': 7.24.5 |
@@ -3965,6 +4213,14 @@ snapshots: | @@ -3965,6 +4213,14 @@ snapshots: | ||
3965 | '@jridgewell/trace-mapping': 0.3.25 | 4213 | '@jridgewell/trace-mapping': 0.3.25 |
3966 | jsesc: 2.5.2 | 4214 | jsesc: 2.5.2 |
3967 | 4215 | ||
4216 | + '@babel/generator@7.26.2': | ||
4217 | + dependencies: | ||
4218 | + '@babel/parser': 7.26.2 | ||
4219 | + '@babel/types': 7.26.0 | ||
4220 | + '@jridgewell/gen-mapping': 0.3.5 | ||
4221 | + '@jridgewell/trace-mapping': 0.3.25 | ||
4222 | + jsesc: 3.0.2 | ||
4223 | + | ||
3968 | '@babel/helper-annotate-as-pure@7.22.5': | 4224 | '@babel/helper-annotate-as-pure@7.22.5': |
3969 | dependencies: | 4225 | dependencies: |
3970 | '@babel/types': 7.24.5 | 4226 | '@babel/types': 7.24.5 |
@@ -3977,6 +4233,14 @@ snapshots: | @@ -3977,6 +4233,14 @@ snapshots: | ||
3977 | lru-cache: 5.1.1 | 4233 | lru-cache: 5.1.1 |
3978 | semver: 6.3.1 | 4234 | semver: 6.3.1 |
3979 | 4235 | ||
4236 | + '@babel/helper-compilation-targets@7.25.9': | ||
4237 | + dependencies: | ||
4238 | + '@babel/compat-data': 7.26.2 | ||
4239 | + '@babel/helper-validator-option': 7.25.9 | ||
4240 | + browserslist: 4.24.2 | ||
4241 | + lru-cache: 5.1.1 | ||
4242 | + semver: 6.3.1 | ||
4243 | + | ||
3980 | '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)': | 4244 | '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)': |
3981 | dependencies: | 4245 | dependencies: |
3982 | '@babel/core': 7.24.5 | 4246 | '@babel/core': 7.24.5 |
@@ -3990,6 +4254,19 @@ snapshots: | @@ -3990,6 +4254,19 @@ snapshots: | ||
3990 | '@babel/helper-split-export-declaration': 7.24.5 | 4254 | '@babel/helper-split-export-declaration': 7.24.5 |
3991 | semver: 6.3.1 | 4255 | semver: 6.3.1 |
3992 | 4256 | ||
4257 | + '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.26.0)': | ||
4258 | + dependencies: | ||
4259 | + '@babel/core': 7.26.0 | ||
4260 | + '@babel/helper-annotate-as-pure': 7.22.5 | ||
4261 | + '@babel/helper-environment-visitor': 7.22.20 | ||
4262 | + '@babel/helper-function-name': 7.23.0 | ||
4263 | + '@babel/helper-member-expression-to-functions': 7.24.5 | ||
4264 | + '@babel/helper-optimise-call-expression': 7.22.5 | ||
4265 | + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.26.0) | ||
4266 | + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 | ||
4267 | + '@babel/helper-split-export-declaration': 7.24.5 | ||
4268 | + semver: 6.3.1 | ||
4269 | + | ||
3993 | '@babel/helper-environment-visitor@7.22.20': {} | 4270 | '@babel/helper-environment-visitor@7.22.20': {} |
3994 | 4271 | ||
3995 | '@babel/helper-function-name@7.23.0': | 4272 | '@babel/helper-function-name@7.23.0': |
@@ -4013,6 +4290,13 @@ snapshots: | @@ -4013,6 +4290,13 @@ snapshots: | ||
4013 | dependencies: | 4290 | dependencies: |
4014 | '@babel/types': 7.24.5 | 4291 | '@babel/types': 7.24.5 |
4015 | 4292 | ||
4293 | + '@babel/helper-module-imports@7.25.9': | ||
4294 | + dependencies: | ||
4295 | + '@babel/traverse': 7.25.9 | ||
4296 | + '@babel/types': 7.26.0 | ||
4297 | + transitivePeerDependencies: | ||
4298 | + - supports-color | ||
4299 | + | ||
4016 | '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': | 4300 | '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': |
4017 | dependencies: | 4301 | dependencies: |
4018 | '@babel/core': 7.24.5 | 4302 | '@babel/core': 7.24.5 |
@@ -4022,6 +4306,24 @@ snapshots: | @@ -4022,6 +4306,24 @@ snapshots: | ||
4022 | '@babel/helper-split-export-declaration': 7.24.5 | 4306 | '@babel/helper-split-export-declaration': 7.24.5 |
4023 | '@babel/helper-validator-identifier': 7.24.5 | 4307 | '@babel/helper-validator-identifier': 7.24.5 |
4024 | 4308 | ||
4309 | + '@babel/helper-module-transforms@7.24.5(@babel/core@7.26.0)': | ||
4310 | + dependencies: | ||
4311 | + '@babel/core': 7.26.0 | ||
4312 | + '@babel/helper-environment-visitor': 7.22.20 | ||
4313 | + '@babel/helper-module-imports': 7.24.3 | ||
4314 | + '@babel/helper-simple-access': 7.24.5 | ||
4315 | + '@babel/helper-split-export-declaration': 7.24.5 | ||
4316 | + '@babel/helper-validator-identifier': 7.24.5 | ||
4317 | + | ||
4318 | + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': | ||
4319 | + dependencies: | ||
4320 | + '@babel/core': 7.26.0 | ||
4321 | + '@babel/helper-module-imports': 7.25.9 | ||
4322 | + '@babel/helper-validator-identifier': 7.25.9 | ||
4323 | + '@babel/traverse': 7.25.9 | ||
4324 | + transitivePeerDependencies: | ||
4325 | + - supports-color | ||
4326 | + | ||
4025 | '@babel/helper-optimise-call-expression@7.22.5': | 4327 | '@babel/helper-optimise-call-expression@7.22.5': |
4026 | dependencies: | 4328 | dependencies: |
4027 | '@babel/types': 7.24.5 | 4329 | '@babel/types': 7.24.5 |
@@ -4035,6 +4337,13 @@ snapshots: | @@ -4035,6 +4337,13 @@ snapshots: | ||
4035 | '@babel/helper-member-expression-to-functions': 7.24.5 | 4337 | '@babel/helper-member-expression-to-functions': 7.24.5 |
4036 | '@babel/helper-optimise-call-expression': 7.22.5 | 4338 | '@babel/helper-optimise-call-expression': 7.22.5 |
4037 | 4339 | ||
4340 | + '@babel/helper-replace-supers@7.24.1(@babel/core@7.26.0)': | ||
4341 | + dependencies: | ||
4342 | + '@babel/core': 7.26.0 | ||
4343 | + '@babel/helper-environment-visitor': 7.22.20 | ||
4344 | + '@babel/helper-member-expression-to-functions': 7.24.5 | ||
4345 | + '@babel/helper-optimise-call-expression': 7.22.5 | ||
4346 | + | ||
4038 | '@babel/helper-simple-access@7.24.5': | 4347 | '@babel/helper-simple-access@7.24.5': |
4039 | dependencies: | 4348 | dependencies: |
4040 | '@babel/types': 7.24.5 | 4349 | '@babel/types': 7.24.5 |
@@ -4049,10 +4358,16 @@ snapshots: | @@ -4049,10 +4358,16 @@ snapshots: | ||
4049 | 4358 | ||
4050 | '@babel/helper-string-parser@7.24.1': {} | 4359 | '@babel/helper-string-parser@7.24.1': {} |
4051 | 4360 | ||
4361 | + '@babel/helper-string-parser@7.25.9': {} | ||
4362 | + | ||
4052 | '@babel/helper-validator-identifier@7.24.5': {} | 4363 | '@babel/helper-validator-identifier@7.24.5': {} |
4053 | 4364 | ||
4365 | + '@babel/helper-validator-identifier@7.25.9': {} | ||
4366 | + | ||
4054 | '@babel/helper-validator-option@7.23.5': {} | 4367 | '@babel/helper-validator-option@7.23.5': {} |
4055 | 4368 | ||
4369 | + '@babel/helper-validator-option@7.25.9': {} | ||
4370 | + | ||
4056 | '@babel/helpers@7.24.5': | 4371 | '@babel/helpers@7.24.5': |
4057 | dependencies: | 4372 | dependencies: |
4058 | '@babel/template': 7.24.0 | 4373 | '@babel/template': 7.24.0 |
@@ -4061,6 +4376,11 @@ snapshots: | @@ -4061,6 +4376,11 @@ snapshots: | ||
4061 | transitivePeerDependencies: | 4376 | transitivePeerDependencies: |
4062 | - supports-color | 4377 | - supports-color |
4063 | 4378 | ||
4379 | + '@babel/helpers@7.26.0': | ||
4380 | + dependencies: | ||
4381 | + '@babel/template': 7.25.9 | ||
4382 | + '@babel/types': 7.26.0 | ||
4383 | + | ||
4064 | '@babel/highlight@7.24.5': | 4384 | '@babel/highlight@7.24.5': |
4065 | dependencies: | 4385 | dependencies: |
4066 | '@babel/helper-validator-identifier': 7.24.5 | 4386 | '@babel/helper-validator-identifier': 7.24.5 |
@@ -4072,6 +4392,10 @@ snapshots: | @@ -4072,6 +4392,10 @@ snapshots: | ||
4072 | dependencies: | 4392 | dependencies: |
4073 | '@babel/types': 7.24.5 | 4393 | '@babel/types': 7.24.5 |
4074 | 4394 | ||
4395 | + '@babel/parser@7.26.2': | ||
4396 | + dependencies: | ||
4397 | + '@babel/types': 7.26.0 | ||
4398 | + | ||
4075 | '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)': | 4399 | '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)': |
4076 | dependencies: | 4400 | dependencies: |
4077 | '@babel/core': 7.24.5 | 4401 | '@babel/core': 7.24.5 |
@@ -4099,15 +4423,25 @@ snapshots: | @@ -4099,15 +4423,25 @@ snapshots: | ||
4099 | '@babel/core': 7.24.5 | 4423 | '@babel/core': 7.24.5 |
4100 | '@babel/helper-plugin-utils': 7.24.5 | 4424 | '@babel/helper-plugin-utils': 7.24.5 |
4101 | 4425 | ||
4426 | + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.26.0)': | ||
4427 | + dependencies: | ||
4428 | + '@babel/core': 7.26.0 | ||
4429 | + '@babel/helper-plugin-utils': 7.24.5 | ||
4430 | + | ||
4102 | '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)': | 4431 | '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)': |
4103 | dependencies: | 4432 | dependencies: |
4104 | '@babel/core': 7.24.5 | 4433 | '@babel/core': 7.24.5 |
4105 | '@babel/helper-plugin-utils': 7.24.5 | 4434 | '@babel/helper-plugin-utils': 7.24.5 |
4106 | 4435 | ||
4107 | - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5)': | 4436 | + '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.26.0)': |
4108 | dependencies: | 4437 | dependencies: |
4109 | - '@babel/core': 7.24.5 | ||
4110 | - '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) | 4438 | + '@babel/core': 7.26.0 |
4439 | + '@babel/helper-plugin-utils': 7.24.5 | ||
4440 | + | ||
4441 | + '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.26.0)': | ||
4442 | + dependencies: | ||
4443 | + '@babel/core': 7.26.0 | ||
4444 | + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.26.0) | ||
4111 | '@babel/helper-plugin-utils': 7.24.5 | 4445 | '@babel/helper-plugin-utils': 7.24.5 |
4112 | '@babel/helper-simple-access': 7.24.5 | 4446 | '@babel/helper-simple-access': 7.24.5 |
4113 | 4447 | ||
@@ -4119,23 +4453,39 @@ snapshots: | @@ -4119,23 +4453,39 @@ snapshots: | ||
4119 | '@babel/helper-plugin-utils': 7.24.5 | 4453 | '@babel/helper-plugin-utils': 7.24.5 |
4120 | '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) | 4454 | '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) |
4121 | 4455 | ||
4122 | - '@babel/preset-typescript@7.24.1(@babel/core@7.24.5)': | 4456 | + '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.26.0)': |
4123 | dependencies: | 4457 | dependencies: |
4124 | - '@babel/core': 7.24.5 | 4458 | + '@babel/core': 7.26.0 |
4459 | + '@babel/helper-annotate-as-pure': 7.22.5 | ||
4460 | + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.26.0) | ||
4461 | + '@babel/helper-plugin-utils': 7.24.5 | ||
4462 | + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.26.0) | ||
4463 | + | ||
4464 | + '@babel/preset-typescript@7.24.1(@babel/core@7.26.0)': | ||
4465 | + dependencies: | ||
4466 | + '@babel/core': 7.26.0 | ||
4125 | '@babel/helper-plugin-utils': 7.24.5 | 4467 | '@babel/helper-plugin-utils': 7.24.5 |
4126 | '@babel/helper-validator-option': 7.23.5 | 4468 | '@babel/helper-validator-option': 7.23.5 |
4127 | - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) | ||
4128 | - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) | ||
4129 | - '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5) | 4469 | + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0) |
4470 | + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.26.0) | ||
4471 | + '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.26.0) | ||
4130 | 4472 | ||
4131 | '@babel/standalone@7.24.5': {} | 4473 | '@babel/standalone@7.24.5': {} |
4132 | 4474 | ||
4475 | + '@babel/standalone@7.26.2': {} | ||
4476 | + | ||
4133 | '@babel/template@7.24.0': | 4477 | '@babel/template@7.24.0': |
4134 | dependencies: | 4478 | dependencies: |
4135 | '@babel/code-frame': 7.24.2 | 4479 | '@babel/code-frame': 7.24.2 |
4136 | '@babel/parser': 7.24.5 | 4480 | '@babel/parser': 7.24.5 |
4137 | '@babel/types': 7.24.5 | 4481 | '@babel/types': 7.24.5 |
4138 | 4482 | ||
4483 | + '@babel/template@7.25.9': | ||
4484 | + dependencies: | ||
4485 | + '@babel/code-frame': 7.26.2 | ||
4486 | + '@babel/parser': 7.26.2 | ||
4487 | + '@babel/types': 7.26.0 | ||
4488 | + | ||
4139 | '@babel/traverse@7.24.5': | 4489 | '@babel/traverse@7.24.5': |
4140 | dependencies: | 4490 | dependencies: |
4141 | '@babel/code-frame': 7.24.2 | 4491 | '@babel/code-frame': 7.24.2 |
@@ -4151,12 +4501,29 @@ snapshots: | @@ -4151,12 +4501,29 @@ snapshots: | ||
4151 | transitivePeerDependencies: | 4501 | transitivePeerDependencies: |
4152 | - supports-color | 4502 | - supports-color |
4153 | 4503 | ||
4504 | + '@babel/traverse@7.25.9': | ||
4505 | + dependencies: | ||
4506 | + '@babel/code-frame': 7.26.2 | ||
4507 | + '@babel/generator': 7.26.2 | ||
4508 | + '@babel/parser': 7.26.2 | ||
4509 | + '@babel/template': 7.25.9 | ||
4510 | + '@babel/types': 7.26.0 | ||
4511 | + debug: 4.3.4 | ||
4512 | + globals: 11.12.0 | ||
4513 | + transitivePeerDependencies: | ||
4514 | + - supports-color | ||
4515 | + | ||
4154 | '@babel/types@7.24.5': | 4516 | '@babel/types@7.24.5': |
4155 | dependencies: | 4517 | dependencies: |
4156 | '@babel/helper-string-parser': 7.24.1 | 4518 | '@babel/helper-string-parser': 7.24.1 |
4157 | '@babel/helper-validator-identifier': 7.24.5 | 4519 | '@babel/helper-validator-identifier': 7.24.5 |
4158 | to-fast-properties: 2.0.0 | 4520 | to-fast-properties: 2.0.0 |
4159 | 4521 | ||
4522 | + '@babel/types@7.26.0': | ||
4523 | + dependencies: | ||
4524 | + '@babel/helper-string-parser': 7.25.9 | ||
4525 | + '@babel/helper-validator-identifier': 7.25.9 | ||
4526 | + | ||
4160 | '@cloudflare/kv-asset-handler@0.3.2': | 4527 | '@cloudflare/kv-asset-handler@0.3.2': |
4161 | dependencies: | 4528 | dependencies: |
4162 | mime: 3.0.0 | 4529 | mime: 3.0.0 |
@@ -4256,7 +4623,7 @@ snapshots: | @@ -4256,7 +4623,7 @@ snapshots: | ||
4256 | transitivePeerDependencies: | 4623 | transitivePeerDependencies: |
4257 | - supports-color | 4624 | - supports-color |
4258 | 4625 | ||
4259 | - '@intlify/bundle-utils@7.5.1(vue-i18n@9.13.1)': | 4626 | + '@intlify/bundle-utils@7.5.1(vue-i18n@9.13.1(vue@3.4.27))': |
4260 | dependencies: | 4627 | dependencies: |
4261 | '@intlify/message-compiler': 9.13.1 | 4628 | '@intlify/message-compiler': 9.13.1 |
4262 | '@intlify/shared': 9.13.1 | 4629 | '@intlify/shared': 9.13.1 |
@@ -4267,8 +4634,9 @@ snapshots: | @@ -4267,8 +4634,9 @@ snapshots: | ||
4267 | magic-string: 0.30.10 | 4634 | magic-string: 0.30.10 |
4268 | mlly: 1.7.0 | 4635 | mlly: 1.7.0 |
4269 | source-map-js: 1.2.0 | 4636 | source-map-js: 1.2.0 |
4270 | - vue-i18n: 9.13.1(vue@3.4.27) | ||
4271 | yaml-eslint-parser: 1.2.2 | 4637 | yaml-eslint-parser: 1.2.2 |
4638 | + optionalDependencies: | ||
4639 | + vue-i18n: 9.13.1(vue@3.4.27) | ||
4272 | 4640 | ||
4273 | '@intlify/core-base@9.13.1': | 4641 | '@intlify/core-base@9.13.1': |
4274 | dependencies: | 4642 | dependencies: |
@@ -4292,9 +4660,9 @@ snapshots: | @@ -4292,9 +4660,9 @@ snapshots: | ||
4292 | 4660 | ||
4293 | '@intlify/shared@9.13.1': {} | 4661 | '@intlify/shared@9.13.1': {} |
4294 | 4662 | ||
4295 | - '@intlify/unplugin-vue-i18n@3.0.1(rollup@4.17.2)(vue-i18n@9.13.1)': | 4663 | + '@intlify/unplugin-vue-i18n@3.0.1(rollup@4.17.2)(vue-i18n@9.13.1(vue@3.4.27))': |
4296 | dependencies: | 4664 | dependencies: |
4297 | - '@intlify/bundle-utils': 7.5.1(vue-i18n@9.13.1) | 4665 | + '@intlify/bundle-utils': 7.5.1(vue-i18n@9.13.1(vue@3.4.27)) |
4298 | '@intlify/shared': 9.13.1 | 4666 | '@intlify/shared': 9.13.1 |
4299 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 4667 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
4300 | '@vue/compiler-sfc': 3.4.27 | 4668 | '@vue/compiler-sfc': 3.4.27 |
@@ -4306,6 +4674,7 @@ snapshots: | @@ -4306,6 +4674,7 @@ snapshots: | ||
4306 | picocolors: 1.0.0 | 4674 | picocolors: 1.0.0 |
4307 | source-map-js: 1.2.0 | 4675 | source-map-js: 1.2.0 |
4308 | unplugin: 1.10.1 | 4676 | unplugin: 1.10.1 |
4677 | + optionalDependencies: | ||
4309 | vue-i18n: 9.13.1(vue@3.4.27) | 4678 | vue-i18n: 9.13.1(vue@3.4.27) |
4310 | transitivePeerDependencies: | 4679 | transitivePeerDependencies: |
4311 | - rollup | 4680 | - rollup |
@@ -4341,6 +4710,8 @@ snapshots: | @@ -4341,6 +4710,8 @@ snapshots: | ||
4341 | 4710 | ||
4342 | '@jridgewell/sourcemap-codec@1.4.15': {} | 4711 | '@jridgewell/sourcemap-codec@1.4.15': {} |
4343 | 4712 | ||
4713 | + '@jridgewell/sourcemap-codec@1.5.0': {} | ||
4714 | + | ||
4344 | '@jridgewell/trace-mapping@0.3.25': | 4715 | '@jridgewell/trace-mapping@0.3.25': |
4345 | dependencies: | 4716 | dependencies: |
4346 | '@jridgewell/resolve-uri': 3.1.2 | 4717 | '@jridgewell/resolve-uri': 3.1.2 |
@@ -4354,12 +4725,12 @@ snapshots: | @@ -4354,12 +4725,12 @@ snapshots: | ||
4354 | 4725 | ||
4355 | '@kwsites/promise-deferred@1.1.1': {} | 4726 | '@kwsites/promise-deferred@1.1.1': {} |
4356 | 4727 | ||
4357 | - '@mapbox/node-pre-gyp@1.0.11': | 4728 | + '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)': |
4358 | dependencies: | 4729 | dependencies: |
4359 | detect-libc: 2.0.3 | 4730 | detect-libc: 2.0.3 |
4360 | https-proxy-agent: 5.0.1 | 4731 | https-proxy-agent: 5.0.1 |
4361 | make-dir: 3.1.0 | 4732 | make-dir: 3.1.0 |
4362 | - node-fetch: 2.7.0 | 4733 | + node-fetch: 2.7.0(encoding@0.1.13) |
4363 | nopt: 5.0.0 | 4734 | nopt: 5.0.0 |
4364 | npmlog: 5.0.1 | 4735 | npmlog: 5.0.1 |
4365 | rimraf: 3.0.2 | 4736 | rimraf: 3.0.2 |
@@ -4483,13 +4854,13 @@ snapshots: | @@ -4483,13 +4854,13 @@ snapshots: | ||
4483 | 4854 | ||
4484 | '@nuxt/devalue@2.0.2': {} | 4855 | '@nuxt/devalue@2.0.2': {} |
4485 | 4856 | ||
4486 | - '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)': | 4857 | + '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))': |
4487 | dependencies: | 4858 | dependencies: |
4488 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 4859 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
4489 | '@nuxt/schema': 3.11.2(rollup@4.17.2) | 4860 | '@nuxt/schema': 3.11.2(rollup@4.17.2) |
4490 | execa: 7.2.0 | 4861 | execa: 7.2.0 |
4491 | - nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.2)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.1)(unocss@0.60.2)(vite@5.2.11) | ||
4492 | - vite: 5.2.11(sass@1.77.1) | 4862 | + nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
4863 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) | ||
4493 | transitivePeerDependencies: | 4864 | transitivePeerDependencies: |
4494 | - rollup | 4865 | - rollup |
4495 | - supports-color | 4866 | - supports-color |
@@ -4502,19 +4873,19 @@ snapshots: | @@ -4502,19 +4873,19 @@ snapshots: | ||
4502 | global-directory: 4.0.1 | 4873 | global-directory: 4.0.1 |
4503 | magicast: 0.3.4 | 4874 | magicast: 0.3.4 |
4504 | pathe: 1.1.2 | 4875 | pathe: 1.1.2 |
4505 | - pkg-types: 1.1.1 | 4876 | + pkg-types: 1.1.3 |
4506 | prompts: 2.4.2 | 4877 | prompts: 2.4.2 |
4507 | rc9: 2.1.2 | 4878 | rc9: 2.1.2 |
4508 | semver: 7.6.2 | 4879 | semver: 7.6.2 |
4509 | 4880 | ||
4510 | - '@nuxt/devtools@1.3.1(@unocss/reset@0.60.2)(floating-vue@5.2.2)(nuxt@3.11.2)(rollup@4.17.2)(unocss@0.60.2)(vite@5.2.11)(vue@3.4.27)': | 4881 | + '@nuxt/devtools@1.3.1(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(nuxt@3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(rollup@4.17.2)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)': |
4511 | dependencies: | 4882 | dependencies: |
4512 | '@antfu/utils': 0.7.8 | 4883 | '@antfu/utils': 0.7.8 |
4513 | - '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11) | 4884 | + '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
4514 | '@nuxt/devtools-wizard': 1.3.1 | 4885 | '@nuxt/devtools-wizard': 1.3.1 |
4515 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 4886 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
4516 | - '@vue/devtools-applet': 7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2)(unocss@0.60.2)(vite@5.2.11)(vue@3.4.27) | ||
4517 | - '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27) | 4887 | + '@vue/devtools-applet': 7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) |
4888 | + '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) | ||
4518 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) | 4889 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) |
4519 | birpc: 0.2.17 | 4890 | birpc: 0.2.17 |
4520 | consola: 3.2.3 | 4891 | consola: 3.2.3 |
@@ -4531,7 +4902,7 @@ snapshots: | @@ -4531,7 +4902,7 @@ snapshots: | ||
4531 | launch-editor: 2.6.1 | 4902 | launch-editor: 2.6.1 |
4532 | local-pkg: 0.5.0 | 4903 | local-pkg: 0.5.0 |
4533 | magicast: 0.3.4 | 4904 | magicast: 0.3.4 |
4534 | - nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.2)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.1)(unocss@0.60.2)(vite@5.2.11) | 4905 | + nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
4535 | nypm: 0.3.8 | 4906 | nypm: 0.3.8 |
4536 | ohash: 1.1.3 | 4907 | ohash: 1.1.3 |
4537 | pacote: 18.0.6 | 4908 | pacote: 18.0.6 |
@@ -4544,9 +4915,9 @@ snapshots: | @@ -4544,9 +4915,9 @@ snapshots: | ||
4544 | simple-git: 3.24.0 | 4915 | simple-git: 3.24.0 |
4545 | sirv: 2.0.4 | 4916 | sirv: 2.0.4 |
4546 | unimport: 3.7.1(rollup@4.17.2) | 4917 | unimport: 3.7.1(rollup@4.17.2) |
4547 | - vite: 5.2.11(sass@1.77.1) | ||
4548 | - vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2)(rollup@4.17.2)(vite@5.2.11) | ||
4549 | - vite-plugin-vue-inspector: 5.1.0(vite@5.2.11) | 4918 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
4919 | + vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) | ||
4920 | + vite-plugin-vue-inspector: 5.1.0(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) | ||
4550 | which: 3.0.1 | 4921 | which: 3.0.1 |
4551 | ws: 8.17.0 | 4922 | ws: 8.17.0 |
4552 | transitivePeerDependencies: | 4923 | transitivePeerDependencies: |
@@ -4596,6 +4967,33 @@ snapshots: | @@ -4596,6 +4967,33 @@ snapshots: | ||
4596 | - rollup | 4967 | - rollup |
4597 | - supports-color | 4968 | - supports-color |
4598 | 4969 | ||
4970 | + '@nuxt/kit@3.14.1592(rollup@4.17.2)': | ||
4971 | + dependencies: | ||
4972 | + '@nuxt/schema': 3.14.1592(rollup@4.17.2) | ||
4973 | + c12: 2.0.1 | ||
4974 | + consola: 3.2.3 | ||
4975 | + defu: 6.1.4 | ||
4976 | + destr: 2.0.3 | ||
4977 | + globby: 14.0.2 | ||
4978 | + hash-sum: 2.0.0 | ||
4979 | + ignore: 6.0.2 | ||
4980 | + jiti: 2.4.0 | ||
4981 | + klona: 2.0.6 | ||
4982 | + knitwork: 1.1.0 | ||
4983 | + mlly: 1.7.3 | ||
4984 | + pathe: 1.1.2 | ||
4985 | + pkg-types: 1.2.1 | ||
4986 | + scule: 1.3.0 | ||
4987 | + semver: 7.6.3 | ||
4988 | + ufo: 1.5.4 | ||
4989 | + unctx: 2.3.1 | ||
4990 | + unimport: 3.13.3(rollup@4.17.2) | ||
4991 | + untyped: 1.5.1 | ||
4992 | + transitivePeerDependencies: | ||
4993 | + - magicast | ||
4994 | + - rollup | ||
4995 | + - supports-color | ||
4996 | + | ||
4599 | '@nuxt/schema@3.11.2(rollup@4.17.2)': | 4997 | '@nuxt/schema@3.11.2(rollup@4.17.2)': |
4600 | dependencies: | 4998 | dependencies: |
4601 | '@nuxt/ui-templates': 1.3.3 | 4999 | '@nuxt/ui-templates': 1.3.3 |
@@ -4613,6 +5011,26 @@ snapshots: | @@ -4613,6 +5011,26 @@ snapshots: | ||
4613 | - rollup | 5011 | - rollup |
4614 | - supports-color | 5012 | - supports-color |
4615 | 5013 | ||
5014 | + '@nuxt/schema@3.14.1592(rollup@4.17.2)': | ||
5015 | + dependencies: | ||
5016 | + c12: 2.0.1 | ||
5017 | + compatx: 0.1.8 | ||
5018 | + consola: 3.2.3 | ||
5019 | + defu: 6.1.4 | ||
5020 | + hookable: 5.5.3 | ||
5021 | + pathe: 1.1.2 | ||
5022 | + pkg-types: 1.2.1 | ||
5023 | + scule: 1.3.0 | ||
5024 | + std-env: 3.8.0 | ||
5025 | + ufo: 1.5.4 | ||
5026 | + uncrypto: 0.1.3 | ||
5027 | + unimport: 3.13.3(rollup@4.17.2) | ||
5028 | + untyped: 1.5.1 | ||
5029 | + transitivePeerDependencies: | ||
5030 | + - magicast | ||
5031 | + - rollup | ||
5032 | + - supports-color | ||
5033 | + | ||
4616 | '@nuxt/telemetry@2.5.4(rollup@4.17.2)': | 5034 | '@nuxt/telemetry@2.5.4(rollup@4.17.2)': |
4617 | dependencies: | 5035 | dependencies: |
4618 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 5036 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
@@ -4638,12 +5056,12 @@ snapshots: | @@ -4638,12 +5056,12 @@ snapshots: | ||
4638 | 5056 | ||
4639 | '@nuxt/ui-templates@1.3.3': {} | 5057 | '@nuxt/ui-templates@1.3.3': {} |
4640 | 5058 | ||
4641 | - '@nuxt/vite-builder@3.11.2(rollup@4.17.2)(sass@1.77.1)(vue@3.4.27)': | 5059 | + '@nuxt/vite-builder@3.11.2(@types/node@20.12.11)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(vue@3.4.27)': |
4642 | dependencies: | 5060 | dependencies: |
4643 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 5061 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
4644 | '@rollup/plugin-replace': 5.0.5(rollup@4.17.2) | 5062 | '@rollup/plugin-replace': 5.0.5(rollup@4.17.2) |
4645 | - '@vitejs/plugin-vue': 5.0.4(vite@5.2.11)(vue@3.4.27) | ||
4646 | - '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11)(vue@3.4.27) | 5063 | + '@vitejs/plugin-vue': 5.0.4(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) |
5064 | + '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) | ||
4647 | autoprefixer: 10.4.19(postcss@8.4.38) | 5065 | autoprefixer: 10.4.19(postcss@8.4.38) |
4648 | clear: 0.1.0 | 5066 | clear: 0.1.0 |
4649 | consola: 3.2.3 | 5067 | consola: 3.2.3 |
@@ -4670,9 +5088,9 @@ snapshots: | @@ -4670,9 +5088,9 @@ snapshots: | ||
4670 | ufo: 1.5.3 | 5088 | ufo: 1.5.3 |
4671 | unenv: 1.9.0 | 5089 | unenv: 1.9.0 |
4672 | unplugin: 1.10.1 | 5090 | unplugin: 1.10.1 |
4673 | - vite: 5.2.11(sass@1.77.1) | ||
4674 | - vite-node: 1.6.0(sass@1.77.1) | ||
4675 | - vite-plugin-checker: 0.6.4(vite@5.2.11) | 5091 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
5092 | + vite-node: 1.6.0(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) | ||
5093 | + vite-plugin-checker: 0.6.4(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) | ||
4676 | vue: 3.4.27 | 5094 | vue: 3.4.27 |
4677 | vue-bundle-renderer: 2.1.0 | 5095 | vue-bundle-renderer: 2.1.0 |
4678 | transitivePeerDependencies: | 5096 | transitivePeerDependencies: |
@@ -4699,7 +5117,7 @@ snapshots: | @@ -4699,7 +5117,7 @@ snapshots: | ||
4699 | dependencies: | 5117 | dependencies: |
4700 | '@intlify/h3': 0.5.0 | 5118 | '@intlify/h3': 0.5.0 |
4701 | '@intlify/shared': 9.13.1 | 5119 | '@intlify/shared': 9.13.1 |
4702 | - '@intlify/unplugin-vue-i18n': 3.0.1(rollup@4.17.2)(vue-i18n@9.13.1) | 5120 | + '@intlify/unplugin-vue-i18n': 3.0.1(rollup@4.17.2)(vue-i18n@9.13.1(vue@3.4.27)) |
4703 | '@intlify/utils': 0.12.0 | 5121 | '@intlify/utils': 0.12.0 |
4704 | '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.17.2) | 5122 | '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.17.2) |
4705 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 5123 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
@@ -4836,7 +5254,6 @@ snapshots: | @@ -4836,7 +5254,6 @@ snapshots: | ||
4836 | dependencies: | 5254 | dependencies: |
4837 | is-glob: 4.0.3 | 5255 | is-glob: 4.0.3 |
4838 | micromatch: 4.0.5 | 5256 | micromatch: 4.0.5 |
4839 | - napi-wasm: 1.1.0 | ||
4840 | 5257 | ||
4841 | '@parcel/watcher-win32-arm64@2.4.1': | 5258 | '@parcel/watcher-win32-arm64@2.4.1': |
4842 | optional: true | 5259 | optional: true |
@@ -4885,8 +5302,9 @@ snapshots: | @@ -4885,8 +5302,9 @@ snapshots: | ||
4885 | 5302 | ||
4886 | '@rollup/plugin-alias@5.1.0(rollup@4.17.2)': | 5303 | '@rollup/plugin-alias@5.1.0(rollup@4.17.2)': |
4887 | dependencies: | 5304 | dependencies: |
4888 | - rollup: 4.17.2 | ||
4889 | slash: 4.0.0 | 5305 | slash: 4.0.0 |
5306 | + optionalDependencies: | ||
5307 | + rollup: 4.17.2 | ||
4890 | 5308 | ||
4891 | '@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)': | 5309 | '@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)': |
4892 | dependencies: | 5310 | dependencies: |
@@ -4896,6 +5314,7 @@ snapshots: | @@ -4896,6 +5314,7 @@ snapshots: | ||
4896 | glob: 8.1.0 | 5314 | glob: 8.1.0 |
4897 | is-reference: 1.2.1 | 5315 | is-reference: 1.2.1 |
4898 | magic-string: 0.30.10 | 5316 | magic-string: 0.30.10 |
5317 | + optionalDependencies: | ||
4899 | rollup: 4.17.2 | 5318 | rollup: 4.17.2 |
4900 | 5319 | ||
4901 | '@rollup/plugin-inject@5.0.5(rollup@4.17.2)': | 5320 | '@rollup/plugin-inject@5.0.5(rollup@4.17.2)': |
@@ -4903,11 +5322,13 @@ snapshots: | @@ -4903,11 +5322,13 @@ snapshots: | ||
4903 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 5322 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
4904 | estree-walker: 2.0.2 | 5323 | estree-walker: 2.0.2 |
4905 | magic-string: 0.30.10 | 5324 | magic-string: 0.30.10 |
5325 | + optionalDependencies: | ||
4906 | rollup: 4.17.2 | 5326 | rollup: 4.17.2 |
4907 | 5327 | ||
4908 | '@rollup/plugin-json@6.1.0(rollup@4.17.2)': | 5328 | '@rollup/plugin-json@6.1.0(rollup@4.17.2)': |
4909 | dependencies: | 5329 | dependencies: |
4910 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 5330 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
5331 | + optionalDependencies: | ||
4911 | rollup: 4.17.2 | 5332 | rollup: 4.17.2 |
4912 | 5333 | ||
4913 | '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)': | 5334 | '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)': |
@@ -4918,27 +5339,31 @@ snapshots: | @@ -4918,27 +5339,31 @@ snapshots: | ||
4918 | is-builtin-module: 3.2.1 | 5339 | is-builtin-module: 3.2.1 |
4919 | is-module: 1.0.0 | 5340 | is-module: 1.0.0 |
4920 | resolve: 1.22.8 | 5341 | resolve: 1.22.8 |
5342 | + optionalDependencies: | ||
4921 | rollup: 4.17.2 | 5343 | rollup: 4.17.2 |
4922 | 5344 | ||
4923 | '@rollup/plugin-replace@5.0.5(rollup@4.17.2)': | 5345 | '@rollup/plugin-replace@5.0.5(rollup@4.17.2)': |
4924 | dependencies: | 5346 | dependencies: |
4925 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 5347 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
4926 | magic-string: 0.30.10 | 5348 | magic-string: 0.30.10 |
5349 | + optionalDependencies: | ||
4927 | rollup: 4.17.2 | 5350 | rollup: 4.17.2 |
4928 | 5351 | ||
4929 | '@rollup/plugin-terser@0.4.4(rollup@4.17.2)': | 5352 | '@rollup/plugin-terser@0.4.4(rollup@4.17.2)': |
4930 | dependencies: | 5353 | dependencies: |
4931 | - rollup: 4.17.2 | ||
4932 | serialize-javascript: 6.0.2 | 5354 | serialize-javascript: 6.0.2 |
4933 | smob: 1.5.0 | 5355 | smob: 1.5.0 |
4934 | terser: 5.31.0 | 5356 | terser: 5.31.0 |
5357 | + optionalDependencies: | ||
5358 | + rollup: 4.17.2 | ||
4935 | 5359 | ||
4936 | '@rollup/plugin-yaml@4.1.2(rollup@4.17.2)': | 5360 | '@rollup/plugin-yaml@4.1.2(rollup@4.17.2)': |
4937 | dependencies: | 5361 | dependencies: |
4938 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 5362 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
4939 | js-yaml: 4.1.0 | 5363 | js-yaml: 4.1.0 |
4940 | - rollup: 4.17.2 | ||
4941 | tosource: 2.0.0-alpha.3 | 5364 | tosource: 2.0.0-alpha.3 |
5365 | + optionalDependencies: | ||
5366 | + rollup: 4.17.2 | ||
4942 | 5367 | ||
4943 | '@rollup/pluginutils@4.2.1': | 5368 | '@rollup/pluginutils@4.2.1': |
4944 | dependencies: | 5369 | dependencies: |
@@ -4950,6 +5375,15 @@ snapshots: | @@ -4950,6 +5375,15 @@ snapshots: | ||
4950 | '@types/estree': 1.0.5 | 5375 | '@types/estree': 1.0.5 |
4951 | estree-walker: 2.0.2 | 5376 | estree-walker: 2.0.2 |
4952 | picomatch: 2.3.1 | 5377 | picomatch: 2.3.1 |
5378 | + optionalDependencies: | ||
5379 | + rollup: 4.17.2 | ||
5380 | + | ||
5381 | + '@rollup/pluginutils@5.1.3(rollup@4.17.2)': | ||
5382 | + dependencies: | ||
5383 | + '@types/estree': 1.0.5 | ||
5384 | + estree-walker: 2.0.2 | ||
5385 | + picomatch: 4.0.2 | ||
5386 | + optionalDependencies: | ||
4953 | rollup: 4.17.2 | 5387 | rollup: 4.17.2 |
4954 | 5388 | ||
4955 | '@rollup/rollup-android-arm-eabi@4.17.2': | 5389 | '@rollup/rollup-android-arm-eabi@4.17.2': |
@@ -5036,6 +5470,15 @@ snapshots: | @@ -5036,6 +5470,15 @@ snapshots: | ||
5036 | 5470 | ||
5037 | '@sindresorhus/merge-streams@2.3.0': {} | 5471 | '@sindresorhus/merge-streams@2.3.0': {} |
5038 | 5472 | ||
5473 | + '@stefanobartoletti/nuxt-social-share@1.2.0(rollup@4.17.2)': | ||
5474 | + dependencies: | ||
5475 | + '@nuxt/kit': 3.14.1592(rollup@4.17.2) | ||
5476 | + defu: 6.1.4 | ||
5477 | + transitivePeerDependencies: | ||
5478 | + - magicast | ||
5479 | + - rollup | ||
5480 | + - supports-color | ||
5481 | + | ||
5039 | '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.3)': | 5482 | '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.3)': |
5040 | dependencies: | 5483 | dependencies: |
5041 | tailwindcss: 3.4.3 | 5484 | tailwindcss: 3.4.3 |
@@ -5090,12 +5533,13 @@ snapshots: | @@ -5090,12 +5533,13 @@ snapshots: | ||
5090 | unhead: 1.9.10 | 5533 | unhead: 1.9.10 |
5091 | vue: 3.4.27 | 5534 | vue: 3.4.27 |
5092 | 5535 | ||
5093 | - '@unocss/astro@0.60.2(rollup@4.17.2)(vite@5.2.11)': | 5536 | + '@unocss/astro@0.60.2(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))': |
5094 | dependencies: | 5537 | dependencies: |
5095 | '@unocss/core': 0.60.2 | 5538 | '@unocss/core': 0.60.2 |
5096 | '@unocss/reset': 0.60.2 | 5539 | '@unocss/reset': 0.60.2 |
5097 | - '@unocss/vite': 0.60.2(rollup@4.17.2)(vite@5.2.11) | ||
5098 | - vite: 5.2.11(sass@1.77.1) | 5540 | + '@unocss/vite': 0.60.2(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
5541 | + optionalDependencies: | ||
5542 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) | ||
5099 | transitivePeerDependencies: | 5543 | transitivePeerDependencies: |
5100 | - rollup | 5544 | - rollup |
5101 | 5545 | ||
@@ -5201,9 +5645,9 @@ snapshots: | @@ -5201,9 +5645,9 @@ snapshots: | ||
5201 | 5645 | ||
5202 | '@unocss/transformer-attributify-jsx-babel@0.60.2': | 5646 | '@unocss/transformer-attributify-jsx-babel@0.60.2': |
5203 | dependencies: | 5647 | dependencies: |
5204 | - '@babel/core': 7.24.5 | ||
5205 | - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) | ||
5206 | - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) | 5648 | + '@babel/core': 7.26.0 |
5649 | + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0) | ||
5650 | + '@babel/preset-typescript': 7.24.1(@babel/core@7.26.0) | ||
5207 | '@unocss/core': 0.60.2 | 5651 | '@unocss/core': 0.60.2 |
5208 | transitivePeerDependencies: | 5652 | transitivePeerDependencies: |
5209 | - supports-color | 5653 | - supports-color |
@@ -5226,7 +5670,7 @@ snapshots: | @@ -5226,7 +5670,7 @@ snapshots: | ||
5226 | dependencies: | 5670 | dependencies: |
5227 | '@unocss/core': 0.60.2 | 5671 | '@unocss/core': 0.60.2 |
5228 | 5672 | ||
5229 | - '@unocss/vite@0.60.2(rollup@4.17.2)(vite@5.2.11)': | 5673 | + '@unocss/vite@0.60.2(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))': |
5230 | dependencies: | 5674 | dependencies: |
5231 | '@ampproject/remapping': 2.3.0 | 5675 | '@ampproject/remapping': 2.3.0 |
5232 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 5676 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
@@ -5238,13 +5682,13 @@ snapshots: | @@ -5238,13 +5682,13 @@ snapshots: | ||
5238 | chokidar: 3.6.0 | 5682 | chokidar: 3.6.0 |
5239 | fast-glob: 3.3.2 | 5683 | fast-glob: 3.3.2 |
5240 | magic-string: 0.30.10 | 5684 | magic-string: 0.30.10 |
5241 | - vite: 5.2.11(sass@1.77.1) | 5685 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
5242 | transitivePeerDependencies: | 5686 | transitivePeerDependencies: |
5243 | - rollup | 5687 | - rollup |
5244 | 5688 | ||
5245 | - '@vercel/nft@0.26.5': | 5689 | + '@vercel/nft@0.26.5(encoding@0.1.13)': |
5246 | dependencies: | 5690 | dependencies: |
5247 | - '@mapbox/node-pre-gyp': 1.0.11 | 5691 | + '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) |
5248 | '@rollup/pluginutils': 4.2.1 | 5692 | '@rollup/pluginutils': 4.2.1 |
5249 | acorn: 8.11.3 | 5693 | acorn: 8.11.3 |
5250 | acorn-import-attributes: 1.9.5(acorn@8.11.3) | 5694 | acorn-import-attributes: 1.9.5(acorn@8.11.3) |
@@ -5260,19 +5704,19 @@ snapshots: | @@ -5260,19 +5704,19 @@ snapshots: | ||
5260 | - encoding | 5704 | - encoding |
5261 | - supports-color | 5705 | - supports-color |
5262 | 5706 | ||
5263 | - '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11)(vue@3.4.27)': | 5707 | + '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)': |
5264 | dependencies: | 5708 | dependencies: |
5265 | '@babel/core': 7.24.5 | 5709 | '@babel/core': 7.24.5 |
5266 | '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5) | 5710 | '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5) |
5267 | '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5) | 5711 | '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5) |
5268 | - vite: 5.2.11(sass@1.77.1) | 5712 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
5269 | vue: 3.4.27 | 5713 | vue: 3.4.27 |
5270 | transitivePeerDependencies: | 5714 | transitivePeerDependencies: |
5271 | - supports-color | 5715 | - supports-color |
5272 | 5716 | ||
5273 | - '@vitejs/plugin-vue@5.0.4(vite@5.2.11)(vue@3.4.27)': | 5717 | + '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)': |
5274 | dependencies: | 5718 | dependencies: |
5275 | - vite: 5.2.11(sass@1.77.1) | 5719 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
5276 | vue: 3.4.27 | 5720 | vue: 3.4.27 |
5277 | 5721 | ||
5278 | '@vue-macros/common@1.10.3(rollup@4.17.2)(vue@3.4.27)': | 5722 | '@vue-macros/common@1.10.3(rollup@4.17.2)(vue@3.4.27)': |
@@ -5283,6 +5727,7 @@ snapshots: | @@ -5283,6 +5727,7 @@ snapshots: | ||
5283 | ast-kit: 0.12.1 | 5727 | ast-kit: 0.12.1 |
5284 | local-pkg: 0.5.0 | 5728 | local-pkg: 0.5.0 |
5285 | magic-string-ast: 0.5.0 | 5729 | magic-string-ast: 0.5.0 |
5730 | + optionalDependencies: | ||
5286 | vue: 3.4.27 | 5731 | vue: 3.4.27 |
5287 | transitivePeerDependencies: | 5732 | transitivePeerDependencies: |
5288 | - rollup | 5733 | - rollup |
@@ -5291,7 +5736,6 @@ snapshots: | @@ -5291,7 +5736,6 @@ snapshots: | ||
5291 | 5736 | ||
5292 | '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5)': | 5737 | '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5)': |
5293 | dependencies: | 5738 | dependencies: |
5294 | - '@babel/core': 7.24.5 | ||
5295 | '@babel/helper-module-imports': 7.22.15 | 5739 | '@babel/helper-module-imports': 7.22.15 |
5296 | '@babel/helper-plugin-utils': 7.24.5 | 5740 | '@babel/helper-plugin-utils': 7.24.5 |
5297 | '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) | 5741 | '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) |
@@ -5303,6 +5747,8 @@ snapshots: | @@ -5303,6 +5747,8 @@ snapshots: | ||
5303 | camelcase: 6.3.0 | 5747 | camelcase: 6.3.0 |
5304 | html-tags: 3.3.1 | 5748 | html-tags: 3.3.1 |
5305 | svg-tags: 1.0.0 | 5749 | svg-tags: 1.0.0 |
5750 | + optionalDependencies: | ||
5751 | + '@babel/core': 7.24.5 | ||
5306 | transitivePeerDependencies: | 5752 | transitivePeerDependencies: |
5307 | - supports-color | 5753 | - supports-color |
5308 | 5754 | ||
@@ -5347,12 +5793,12 @@ snapshots: | @@ -5347,12 +5793,12 @@ snapshots: | ||
5347 | 5793 | ||
5348 | '@vue/devtools-api@6.6.1': {} | 5794 | '@vue/devtools-api@6.6.1': {} |
5349 | 5795 | ||
5350 | - '@vue/devtools-applet@7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2)(unocss@0.60.2)(vite@5.2.11)(vue@3.4.27)': | 5796 | + '@vue/devtools-applet@7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)': |
5351 | dependencies: | 5797 | dependencies: |
5352 | - '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27) | 5798 | + '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) |
5353 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) | 5799 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) |
5354 | '@vue/devtools-shared': 7.1.3 | 5800 | '@vue/devtools-shared': 7.1.3 |
5355 | - '@vue/devtools-ui': 7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2)(unocss@0.60.2)(vue@3.4.27) | 5801 | + '@vue/devtools-ui': 7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vue@3.4.27) |
5356 | lodash-es: 4.17.21 | 5802 | lodash-es: 4.17.21 |
5357 | perfect-debounce: 1.0.0 | 5803 | perfect-debounce: 1.0.0 |
5358 | shiki: 1.3.0 | 5804 | shiki: 1.3.0 |
@@ -5377,14 +5823,14 @@ snapshots: | @@ -5377,14 +5823,14 @@ snapshots: | ||
5377 | - unocss | 5823 | - unocss |
5378 | - vite | 5824 | - vite |
5379 | 5825 | ||
5380 | - '@vue/devtools-core@7.1.3(vite@5.2.11)(vue@3.4.27)': | 5826 | + '@vue/devtools-core@7.1.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)': |
5381 | dependencies: | 5827 | dependencies: |
5382 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) | 5828 | '@vue/devtools-kit': 7.1.3(vue@3.4.27) |
5383 | '@vue/devtools-shared': 7.1.3 | 5829 | '@vue/devtools-shared': 7.1.3 |
5384 | mitt: 3.0.1 | 5830 | mitt: 3.0.1 |
5385 | nanoid: 3.3.7 | 5831 | nanoid: 3.3.7 |
5386 | pathe: 1.1.2 | 5832 | pathe: 1.1.2 |
5387 | - vite-hot-client: 0.2.3(vite@5.2.11) | 5833 | + vite-hot-client: 0.2.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
5388 | transitivePeerDependencies: | 5834 | transitivePeerDependencies: |
5389 | - vite | 5835 | - vite |
5390 | - vue | 5836 | - vue |
@@ -5402,7 +5848,7 @@ snapshots: | @@ -5402,7 +5848,7 @@ snapshots: | ||
5402 | dependencies: | 5848 | dependencies: |
5403 | rfdc: 1.3.1 | 5849 | rfdc: 1.3.1 |
5404 | 5850 | ||
5405 | - '@vue/devtools-ui@7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2)(unocss@0.60.2)(vue@3.4.27)': | 5851 | + '@vue/devtools-ui@7.1.3(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vue@3.4.27)': |
5406 | dependencies: | 5852 | dependencies: |
5407 | '@unocss/reset': 0.60.2 | 5853 | '@unocss/reset': 0.60.2 |
5408 | '@vue/devtools-shared': 7.1.3 | 5854 | '@vue/devtools-shared': 7.1.3 |
@@ -5410,9 +5856,9 @@ snapshots: | @@ -5410,9 +5856,9 @@ snapshots: | ||
5410 | '@vueuse/core': 10.9.0(vue@3.4.27) | 5856 | '@vueuse/core': 10.9.0(vue@3.4.27) |
5411 | '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.27) | 5857 | '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.27) |
5412 | colord: 2.9.3 | 5858 | colord: 2.9.3 |
5413 | - floating-vue: 5.2.2(vue@3.4.27) | 5859 | + floating-vue: 5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27) |
5414 | focus-trap: 7.5.4 | 5860 | focus-trap: 7.5.4 |
5415 | - unocss: 0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11) | 5861 | + unocss: 0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
5416 | vue: 3.4.27 | 5862 | vue: 3.4.27 |
5417 | transitivePeerDependencies: | 5863 | transitivePeerDependencies: |
5418 | - '@vue/composition-api' | 5864 | - '@vue/composition-api' |
@@ -5455,7 +5901,7 @@ snapshots: | @@ -5455,7 +5901,7 @@ snapshots: | ||
5455 | dependencies: | 5901 | dependencies: |
5456 | upath: 2.0.1 | 5902 | upath: 2.0.1 |
5457 | vue: 3.4.27 | 5903 | vue: 3.4.27 |
5458 | - vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue@3.4.27) | 5904 | + vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27) |
5459 | 5905 | ||
5460 | '@vueuse/components@10.9.0(vue@3.4.27)': | 5906 | '@vueuse/components@10.9.0(vue@3.4.27)': |
5461 | dependencies: | 5907 | dependencies: |
@@ -5480,8 +5926,9 @@ snapshots: | @@ -5480,8 +5926,9 @@ snapshots: | ||
5480 | dependencies: | 5926 | dependencies: |
5481 | '@vueuse/core': 10.9.0(vue@3.4.27) | 5927 | '@vueuse/core': 10.9.0(vue@3.4.27) |
5482 | '@vueuse/shared': 10.9.0(vue@3.4.27) | 5928 | '@vueuse/shared': 10.9.0(vue@3.4.27) |
5483 | - focus-trap: 7.5.4 | ||
5484 | vue-demi: 0.14.7(vue@3.4.27) | 5929 | vue-demi: 0.14.7(vue@3.4.27) |
5930 | + optionalDependencies: | ||
5931 | + focus-trap: 7.5.4 | ||
5485 | transitivePeerDependencies: | 5932 | transitivePeerDependencies: |
5486 | - '@vue/composition-api' | 5933 | - '@vue/composition-api' |
5487 | - vue | 5934 | - vue |
@@ -5513,6 +5960,8 @@ snapshots: | @@ -5513,6 +5960,8 @@ snapshots: | ||
5513 | 5960 | ||
5514 | acorn@8.11.3: {} | 5961 | acorn@8.11.3: {} |
5515 | 5962 | ||
5963 | + acorn@8.14.0: {} | ||
5964 | + | ||
5516 | agent-base@6.0.2: | 5965 | agent-base@6.0.2: |
5517 | dependencies: | 5966 | dependencies: |
5518 | debug: 4.3.4 | 5967 | debug: 4.3.4 |
@@ -5661,6 +6110,13 @@ snapshots: | @@ -5661,6 +6110,13 @@ snapshots: | ||
5661 | node-releases: 2.0.14 | 6110 | node-releases: 2.0.14 |
5662 | update-browserslist-db: 1.0.15(browserslist@4.23.0) | 6111 | update-browserslist-db: 1.0.15(browserslist@4.23.0) |
5663 | 6112 | ||
6113 | + browserslist@4.24.2: | ||
6114 | + dependencies: | ||
6115 | + caniuse-lite: 1.0.30001684 | ||
6116 | + electron-to-chromium: 1.5.64 | ||
6117 | + node-releases: 2.0.18 | ||
6118 | + update-browserslist-db: 1.1.1(browserslist@4.24.2) | ||
6119 | + | ||
5664 | buffer-crc32@1.0.0: {} | 6120 | buffer-crc32@1.0.0: {} |
5665 | 6121 | ||
5666 | buffer-from@1.1.2: {} | 6122 | buffer-from@1.1.2: {} |
@@ -5691,6 +6147,21 @@ snapshots: | @@ -5691,6 +6147,21 @@ snapshots: | ||
5691 | pkg-types: 1.1.1 | 6147 | pkg-types: 1.1.1 |
5692 | rc9: 2.1.2 | 6148 | rc9: 2.1.2 |
5693 | 6149 | ||
6150 | + c12@2.0.1: | ||
6151 | + dependencies: | ||
6152 | + chokidar: 4.0.1 | ||
6153 | + confbox: 0.1.7 | ||
6154 | + defu: 6.1.4 | ||
6155 | + dotenv: 16.4.5 | ||
6156 | + giget: 1.2.3 | ||
6157 | + jiti: 2.4.0 | ||
6158 | + mlly: 1.7.3 | ||
6159 | + ohash: 1.1.4 | ||
6160 | + pathe: 1.1.2 | ||
6161 | + perfect-debounce: 1.0.0 | ||
6162 | + pkg-types: 1.2.1 | ||
6163 | + rc9: 2.1.2 | ||
6164 | + | ||
5694 | cac@6.7.14: {} | 6165 | cac@6.7.14: {} |
5695 | 6166 | ||
5696 | cacache@18.0.3: | 6167 | cacache@18.0.3: |
@@ -5721,6 +6192,8 @@ snapshots: | @@ -5721,6 +6192,8 @@ snapshots: | ||
5721 | 6192 | ||
5722 | caniuse-lite@1.0.30001617: {} | 6193 | caniuse-lite@1.0.30001617: {} |
5723 | 6194 | ||
6195 | + caniuse-lite@1.0.30001684: {} | ||
6196 | + | ||
5724 | chalk@2.4.2: | 6197 | chalk@2.4.2: |
5725 | dependencies: | 6198 | dependencies: |
5726 | ansi-styles: 3.2.1 | 6199 | ansi-styles: 3.2.1 |
@@ -5746,6 +6219,10 @@ snapshots: | @@ -5746,6 +6219,10 @@ snapshots: | ||
5746 | optionalDependencies: | 6219 | optionalDependencies: |
5747 | fsevents: 2.3.3 | 6220 | fsevents: 2.3.3 |
5748 | 6221 | ||
6222 | + chokidar@4.0.1: | ||
6223 | + dependencies: | ||
6224 | + readdirp: 4.0.2 | ||
6225 | + | ||
5749 | chownr@2.0.0: {} | 6226 | chownr@2.0.0: {} |
5750 | 6227 | ||
5751 | ci-info@4.0.0: {} | 6228 | ci-info@4.0.0: {} |
@@ -5800,6 +6277,8 @@ snapshots: | @@ -5800,6 +6277,8 @@ snapshots: | ||
5800 | 6277 | ||
5801 | commondir@1.0.1: {} | 6278 | commondir@1.0.1: {} |
5802 | 6279 | ||
6280 | + compatx@0.1.8: {} | ||
6281 | + | ||
5803 | compress-commons@6.0.2: | 6282 | compress-commons@6.0.2: |
5804 | dependencies: | 6283 | dependencies: |
5805 | crc-32: 1.2.2 | 6284 | crc-32: 1.2.2 |
@@ -5812,6 +6291,8 @@ snapshots: | @@ -5812,6 +6291,8 @@ snapshots: | ||
5812 | 6291 | ||
5813 | confbox@0.1.7: {} | 6292 | confbox@0.1.7: {} |
5814 | 6293 | ||
6294 | + confbox@0.1.8: {} | ||
6295 | + | ||
5815 | consola@3.2.3: {} | 6296 | consola@3.2.3: {} |
5816 | 6297 | ||
5817 | console-control-strings@1.1.0: {} | 6298 | console-control-strings@1.1.0: {} |
@@ -5998,6 +6479,8 @@ snapshots: | @@ -5998,6 +6479,8 @@ snapshots: | ||
5998 | 6479 | ||
5999 | electron-to-chromium@1.4.763: {} | 6480 | electron-to-chromium@1.4.763: {} |
6000 | 6481 | ||
6482 | + electron-to-chromium@1.5.64: {} | ||
6483 | + | ||
6001 | emoji-regex@8.0.0: {} | 6484 | emoji-regex@8.0.0: {} |
6002 | 6485 | ||
6003 | emoji-regex@9.2.2: {} | 6486 | emoji-regex@9.2.2: {} |
@@ -6050,6 +6533,8 @@ snapshots: | @@ -6050,6 +6533,8 @@ snapshots: | ||
6050 | 6533 | ||
6051 | escalade@3.1.2: {} | 6534 | escalade@3.1.2: {} |
6052 | 6535 | ||
6536 | + escalade@3.2.0: {} | ||
6537 | + | ||
6053 | escape-html@1.0.3: {} | 6538 | escape-html@1.0.3: {} |
6054 | 6539 | ||
6055 | escape-string-regexp@1.0.5: {} | 6540 | escape-string-regexp@1.0.5: {} |
@@ -6131,7 +6616,7 @@ snapshots: | @@ -6131,7 +6616,7 @@ snapshots: | ||
6131 | externality@1.0.2: | 6616 | externality@1.0.2: |
6132 | dependencies: | 6617 | dependencies: |
6133 | enhanced-resolve: 5.16.1 | 6618 | enhanced-resolve: 5.16.1 |
6134 | - mlly: 1.7.0 | 6619 | + mlly: 1.7.1 |
6135 | pathe: 1.1.2 | 6620 | pathe: 1.1.2 |
6136 | ufo: 1.5.3 | 6621 | ufo: 1.5.3 |
6137 | 6622 | ||
@@ -6162,11 +6647,13 @@ snapshots: | @@ -6162,11 +6647,13 @@ snapshots: | ||
6162 | 6647 | ||
6163 | flatted@3.3.1: {} | 6648 | flatted@3.3.1: {} |
6164 | 6649 | ||
6165 | - floating-vue@5.2.2(vue@3.4.27): | 6650 | + floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27): |
6166 | dependencies: | 6651 | dependencies: |
6167 | '@floating-ui/dom': 1.1.1 | 6652 | '@floating-ui/dom': 1.1.1 |
6168 | vue: 3.4.27 | 6653 | vue: 3.4.27 |
6169 | vue-resize: 2.0.0-alpha.1(vue@3.4.27) | 6654 | vue-resize: 2.0.0-alpha.1(vue@3.4.27) |
6655 | + optionalDependencies: | ||
6656 | + '@nuxt/kit': 3.14.1592(rollup@4.17.2) | ||
6170 | 6657 | ||
6171 | focus-trap@7.5.4: | 6658 | focus-trap@7.5.4: |
6172 | dependencies: | 6659 | dependencies: |
@@ -6294,6 +6781,15 @@ snapshots: | @@ -6294,6 +6781,15 @@ snapshots: | ||
6294 | slash: 5.1.0 | 6781 | slash: 5.1.0 |
6295 | unicorn-magic: 0.1.0 | 6782 | unicorn-magic: 0.1.0 |
6296 | 6783 | ||
6784 | + globby@14.0.2: | ||
6785 | + dependencies: | ||
6786 | + '@sindresorhus/merge-streams': 2.3.0 | ||
6787 | + fast-glob: 3.3.2 | ||
6788 | + ignore: 5.3.1 | ||
6789 | + path-type: 5.0.0 | ||
6790 | + slash: 5.1.0 | ||
6791 | + unicorn-magic: 0.1.0 | ||
6792 | + | ||
6297 | graceful-fs@4.2.11: {} | 6793 | graceful-fs@4.2.11: {} |
6298 | 6794 | ||
6299 | gzip-size@6.0.0: | 6795 | gzip-size@6.0.0: |
@@ -6393,6 +6889,8 @@ snapshots: | @@ -6393,6 +6889,8 @@ snapshots: | ||
6393 | 6889 | ||
6394 | ignore@5.3.1: {} | 6890 | ignore@5.3.1: {} |
6395 | 6891 | ||
6892 | + ignore@6.0.2: {} | ||
6893 | + | ||
6396 | image-meta@0.2.0: {} | 6894 | image-meta@0.2.0: {} |
6397 | 6895 | ||
6398 | immutable@4.3.6: {} | 6896 | immutable@4.3.6: {} |
@@ -6518,6 +7016,8 @@ snapshots: | @@ -6518,6 +7016,8 @@ snapshots: | ||
6518 | 7016 | ||
6519 | jiti@1.21.0: {} | 7017 | jiti@1.21.0: {} |
6520 | 7018 | ||
7019 | + jiti@2.4.0: {} | ||
7020 | + | ||
6521 | js-tokens@4.0.0: {} | 7021 | js-tokens@4.0.0: {} |
6522 | 7022 | ||
6523 | js-tokens@9.0.0: {} | 7023 | js-tokens@9.0.0: {} |
@@ -6530,6 +7030,8 @@ snapshots: | @@ -6530,6 +7030,8 @@ snapshots: | ||
6530 | 7030 | ||
6531 | jsesc@2.5.2: {} | 7031 | jsesc@2.5.2: {} |
6532 | 7032 | ||
7033 | + jsesc@3.0.2: {} | ||
7034 | + | ||
6533 | json-parse-even-better-errors@3.0.2: {} | 7035 | json-parse-even-better-errors@3.0.2: {} |
6534 | 7036 | ||
6535 | json5@2.2.3: {} | 7037 | json5@2.2.3: {} |
@@ -6585,7 +7087,7 @@ snapshots: | @@ -6585,7 +7087,7 @@ snapshots: | ||
6585 | h3: 1.11.1 | 7087 | h3: 1.11.1 |
6586 | http-shutdown: 1.2.2 | 7088 | http-shutdown: 1.2.2 |
6587 | jiti: 1.21.0 | 7089 | jiti: 1.21.0 |
6588 | - mlly: 1.7.0 | 7090 | + mlly: 1.7.1 |
6589 | node-forge: 1.3.1 | 7091 | node-forge: 1.3.1 |
6590 | pathe: 1.1.2 | 7092 | pathe: 1.1.2 |
6591 | std-env: 3.7.0 | 7093 | std-env: 3.7.0 |
@@ -6599,8 +7101,13 @@ snapshots: | @@ -6599,8 +7101,13 @@ snapshots: | ||
6599 | 7101 | ||
6600 | local-pkg@0.5.0: | 7102 | local-pkg@0.5.0: |
6601 | dependencies: | 7103 | dependencies: |
6602 | - mlly: 1.7.0 | ||
6603 | - pkg-types: 1.1.1 | 7104 | + mlly: 1.7.1 |
7105 | + pkg-types: 1.1.3 | ||
7106 | + | ||
7107 | + local-pkg@0.5.1: | ||
7108 | + dependencies: | ||
7109 | + mlly: 1.7.3 | ||
7110 | + pkg-types: 1.2.1 | ||
6604 | 7111 | ||
6605 | locate-path@6.0.0: | 7112 | locate-path@6.0.0: |
6606 | dependencies: | 7113 | dependencies: |
@@ -6634,6 +7141,10 @@ snapshots: | @@ -6634,6 +7141,10 @@ snapshots: | ||
6634 | dependencies: | 7141 | dependencies: |
6635 | '@jridgewell/sourcemap-codec': 1.4.15 | 7142 | '@jridgewell/sourcemap-codec': 1.4.15 |
6636 | 7143 | ||
7144 | + magic-string@0.30.13: | ||
7145 | + dependencies: | ||
7146 | + '@jridgewell/sourcemap-codec': 1.5.0 | ||
7147 | + | ||
6637 | magicast@0.3.4: | 7148 | magicast@0.3.4: |
6638 | dependencies: | 7149 | dependencies: |
6639 | '@babel/parser': 7.24.5 | 7150 | '@babel/parser': 7.24.5 |
@@ -6758,6 +7269,13 @@ snapshots: | @@ -6758,6 +7269,13 @@ snapshots: | ||
6758 | pkg-types: 1.1.3 | 7269 | pkg-types: 1.1.3 |
6759 | ufo: 1.5.3 | 7270 | ufo: 1.5.3 |
6760 | 7271 | ||
7272 | + mlly@1.7.3: | ||
7273 | + dependencies: | ||
7274 | + acorn: 8.14.0 | ||
7275 | + pathe: 1.1.2 | ||
7276 | + pkg-types: 1.2.1 | ||
7277 | + ufo: 1.5.4 | ||
7278 | + | ||
6761 | mri@1.2.0: {} | 7279 | mri@1.2.0: {} |
6762 | 7280 | ||
6763 | mrmime@2.0.0: {} | 7281 | mrmime@2.0.0: {} |
@@ -6778,11 +7296,9 @@ snapshots: | @@ -6778,11 +7296,9 @@ snapshots: | ||
6778 | 7296 | ||
6779 | nanoid@5.0.7: {} | 7297 | nanoid@5.0.7: {} |
6780 | 7298 | ||
6781 | - napi-wasm@1.1.0: {} | ||
6782 | - | ||
6783 | negotiator@0.6.3: {} | 7299 | negotiator@0.6.3: {} |
6784 | 7300 | ||
6785 | - nitropack@2.9.6(@opentelemetry/api@1.8.0): | 7301 | + nitropack@2.9.6(@opentelemetry/api@1.8.0)(encoding@0.1.13): |
6786 | dependencies: | 7302 | dependencies: |
6787 | '@cloudflare/kv-asset-handler': 0.3.2 | 7303 | '@cloudflare/kv-asset-handler': 0.3.2 |
6788 | '@netlify/functions': 2.6.3(@opentelemetry/api@1.8.0) | 7304 | '@netlify/functions': 2.6.3(@opentelemetry/api@1.8.0) |
@@ -6795,7 +7311,7 @@ snapshots: | @@ -6795,7 +7311,7 @@ snapshots: | ||
6795 | '@rollup/plugin-terser': 0.4.4(rollup@4.17.2) | 7311 | '@rollup/plugin-terser': 0.4.4(rollup@4.17.2) |
6796 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 7312 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
6797 | '@types/http-proxy': 1.17.14 | 7313 | '@types/http-proxy': 1.17.14 |
6798 | - '@vercel/nft': 0.26.5 | 7314 | + '@vercel/nft': 0.26.5(encoding@0.1.13) |
6799 | archiver: 7.0.1 | 7315 | archiver: 7.0.1 |
6800 | c12: 1.10.0 | 7316 | c12: 1.10.0 |
6801 | chalk: 5.3.0 | 7317 | chalk: 5.3.0 |
@@ -6876,9 +7392,11 @@ snapshots: | @@ -6876,9 +7392,11 @@ snapshots: | ||
6876 | 7392 | ||
6877 | node-fetch-native@1.6.4: {} | 7393 | node-fetch-native@1.6.4: {} |
6878 | 7394 | ||
6879 | - node-fetch@2.7.0: | 7395 | + node-fetch@2.7.0(encoding@0.1.13): |
6880 | dependencies: | 7396 | dependencies: |
6881 | whatwg-url: 5.0.0 | 7397 | whatwg-url: 5.0.0 |
7398 | + optionalDependencies: | ||
7399 | + encoding: 0.1.13 | ||
6882 | 7400 | ||
6883 | node-forge@1.3.1: {} | 7401 | node-forge@1.3.1: {} |
6884 | 7402 | ||
@@ -6901,6 +7419,8 @@ snapshots: | @@ -6901,6 +7419,8 @@ snapshots: | ||
6901 | 7419 | ||
6902 | node-releases@2.0.14: {} | 7420 | node-releases@2.0.14: {} |
6903 | 7421 | ||
7422 | + node-releases@2.0.18: {} | ||
7423 | + | ||
6904 | nopt@5.0.0: | 7424 | nopt@5.0.0: |
6905 | dependencies: | 7425 | dependencies: |
6906 | abbrev: 1.1.1 | 7426 | abbrev: 1.1.1 |
@@ -6984,15 +7504,15 @@ snapshots: | @@ -6984,15 +7504,15 @@ snapshots: | ||
6984 | optionalDependencies: | 7504 | optionalDependencies: |
6985 | fsevents: 2.3.3 | 7505 | fsevents: 2.3.3 |
6986 | 7506 | ||
6987 | - nuxt@3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.2)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.1)(unocss@0.60.2)(vite@5.2.11): | 7507 | + nuxt@3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
6988 | dependencies: | 7508 | dependencies: |
6989 | '@nuxt/devalue': 2.0.2 | 7509 | '@nuxt/devalue': 2.0.2 |
6990 | - '@nuxt/devtools': 1.3.1(@unocss/reset@0.60.2)(floating-vue@5.2.2)(nuxt@3.11.2)(rollup@4.17.2)(unocss@0.60.2)(vite@5.2.11)(vue@3.4.27) | 7510 | + '@nuxt/devtools': 1.3.1(@unocss/reset@0.60.2)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(nuxt@3.11.2(@opentelemetry/api@1.8.0)(@parcel/watcher@2.4.1)(@types/node@20.12.11)(@unocss/reset@0.60.2)(encoding@0.1.13)(floating-vue@5.2.2(@nuxt/kit@3.14.1592(rollup@4.17.2))(vue@3.4.27))(ioredis@5.4.1)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(rollup@4.17.2)(unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)))(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27) |
6991 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 7511 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
6992 | '@nuxt/schema': 3.11.2(rollup@4.17.2) | 7512 | '@nuxt/schema': 3.11.2(rollup@4.17.2) |
6993 | '@nuxt/telemetry': 2.5.4(rollup@4.17.2) | 7513 | '@nuxt/telemetry': 2.5.4(rollup@4.17.2) |
6994 | '@nuxt/ui-templates': 1.3.3 | 7514 | '@nuxt/ui-templates': 1.3.3 |
6995 | - '@nuxt/vite-builder': 3.11.2(rollup@4.17.2)(sass@1.77.1)(vue@3.4.27) | 7515 | + '@nuxt/vite-builder': 3.11.2(@types/node@20.12.11)(rollup@4.17.2)(sass@1.77.1)(terser@5.31.0)(vue@3.4.27) |
6996 | '@unhead/dom': 1.9.10 | 7516 | '@unhead/dom': 1.9.10 |
6997 | '@unhead/ssr': 1.9.10 | 7517 | '@unhead/ssr': 1.9.10 |
6998 | '@unhead/vue': 1.9.10(vue@3.4.27) | 7518 | '@unhead/vue': 1.9.10(vue@3.4.27) |
@@ -7016,7 +7536,7 @@ snapshots: | @@ -7016,7 +7536,7 @@ snapshots: | ||
7016 | knitwork: 1.1.0 | 7536 | knitwork: 1.1.0 |
7017 | magic-string: 0.30.10 | 7537 | magic-string: 0.30.10 |
7018 | mlly: 1.7.0 | 7538 | mlly: 1.7.0 |
7019 | - nitropack: 2.9.6(@opentelemetry/api@1.8.0) | 7539 | + nitropack: 2.9.6(@opentelemetry/api@1.8.0)(encoding@0.1.13) |
7020 | nuxi: 3.11.1 | 7540 | nuxi: 3.11.1 |
7021 | nypm: 0.3.8 | 7541 | nypm: 0.3.8 |
7022 | ofetch: 1.3.4 | 7542 | ofetch: 1.3.4 |
@@ -7035,13 +7555,16 @@ snapshots: | @@ -7035,13 +7555,16 @@ snapshots: | ||
7035 | unenv: 1.9.0 | 7555 | unenv: 1.9.0 |
7036 | unimport: 3.7.1(rollup@4.17.2) | 7556 | unimport: 3.7.1(rollup@4.17.2) |
7037 | unplugin: 1.10.1 | 7557 | unplugin: 1.10.1 |
7038 | - unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.2)(vue@3.4.27) | 7558 | + unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.2(vue@3.4.27))(vue@3.4.27) |
7039 | unstorage: 1.10.2(ioredis@5.4.1) | 7559 | unstorage: 1.10.2(ioredis@5.4.1) |
7040 | untyped: 1.4.2 | 7560 | untyped: 1.4.2 |
7041 | vue: 3.4.27 | 7561 | vue: 3.4.27 |
7042 | vue-bundle-renderer: 2.1.0 | 7562 | vue-bundle-renderer: 2.1.0 |
7043 | vue-devtools-stub: 0.1.0 | 7563 | vue-devtools-stub: 0.1.0 |
7044 | vue-router: 4.3.2(vue@3.4.27) | 7564 | vue-router: 4.3.2(vue@3.4.27) |
7565 | + optionalDependencies: | ||
7566 | + '@parcel/watcher': 2.4.1 | ||
7567 | + '@types/node': 20.12.11 | ||
7045 | transitivePeerDependencies: | 7568 | transitivePeerDependencies: |
7046 | - '@azure/app-configuration' | 7569 | - '@azure/app-configuration' |
7047 | - '@azure/cosmos' | 7570 | - '@azure/cosmos' |
@@ -7118,6 +7641,8 @@ snapshots: | @@ -7118,6 +7641,8 @@ snapshots: | ||
7118 | 7641 | ||
7119 | ohash@1.1.3: {} | 7642 | ohash@1.1.3: {} |
7120 | 7643 | ||
7644 | + ohash@1.1.4: {} | ||
7645 | + | ||
7121 | on-finished@2.4.1: | 7646 | on-finished@2.4.1: |
7122 | dependencies: | 7647 | dependencies: |
7123 | ee-first: 1.1.1 | 7648 | ee-first: 1.1.1 |
@@ -7231,8 +7756,12 @@ snapshots: | @@ -7231,8 +7756,12 @@ snapshots: | ||
7231 | 7756 | ||
7232 | picocolors@1.0.0: {} | 7757 | picocolors@1.0.0: {} |
7233 | 7758 | ||
7759 | + picocolors@1.1.1: {} | ||
7760 | + | ||
7234 | picomatch@2.3.1: {} | 7761 | picomatch@2.3.1: {} |
7235 | 7762 | ||
7763 | + picomatch@4.0.2: {} | ||
7764 | + | ||
7236 | pify@2.3.0: {} | 7765 | pify@2.3.0: {} |
7237 | 7766 | ||
7238 | pinia@2.1.7(vue@3.4.27): | 7767 | pinia@2.1.7(vue@3.4.27): |
@@ -7255,6 +7784,12 @@ snapshots: | @@ -7255,6 +7784,12 @@ snapshots: | ||
7255 | mlly: 1.7.1 | 7784 | mlly: 1.7.1 |
7256 | pathe: 1.1.2 | 7785 | pathe: 1.1.2 |
7257 | 7786 | ||
7787 | + pkg-types@1.2.1: | ||
7788 | + dependencies: | ||
7789 | + confbox: 0.1.8 | ||
7790 | + mlly: 1.7.3 | ||
7791 | + pathe: 1.1.2 | ||
7792 | + | ||
7258 | postcss-calc@9.0.1(postcss@8.4.38): | 7793 | postcss-calc@9.0.1(postcss@8.4.38): |
7259 | dependencies: | 7794 | dependencies: |
7260 | postcss: 8.4.38 | 7795 | postcss: 8.4.38 |
@@ -7306,8 +7841,9 @@ snapshots: | @@ -7306,8 +7841,9 @@ snapshots: | ||
7306 | postcss-load-config@4.0.2(postcss@8.4.38): | 7841 | postcss-load-config@4.0.2(postcss@8.4.38): |
7307 | dependencies: | 7842 | dependencies: |
7308 | lilconfig: 3.1.1 | 7843 | lilconfig: 3.1.1 |
7309 | - postcss: 8.4.38 | ||
7310 | yaml: 2.4.2 | 7844 | yaml: 2.4.2 |
7845 | + optionalDependencies: | ||
7846 | + postcss: 8.4.38 | ||
7311 | 7847 | ||
7312 | postcss-merge-longhand@6.0.5(postcss@8.4.38): | 7848 | postcss-merge-longhand@6.0.5(postcss@8.4.38): |
7313 | dependencies: | 7849 | dependencies: |
@@ -7515,6 +8051,8 @@ snapshots: | @@ -7515,6 +8051,8 @@ snapshots: | ||
7515 | dependencies: | 8051 | dependencies: |
7516 | picomatch: 2.3.1 | 8052 | picomatch: 2.3.1 |
7517 | 8053 | ||
8054 | + readdirp@4.0.2: {} | ||
8055 | + | ||
7518 | redis-errors@1.2.0: {} | 8056 | redis-errors@1.2.0: {} |
7519 | 8057 | ||
7520 | redis-parser@3.0.0: | 8058 | redis-parser@3.0.0: |
@@ -7545,9 +8083,10 @@ snapshots: | @@ -7545,9 +8083,10 @@ snapshots: | ||
7545 | dependencies: | 8083 | dependencies: |
7546 | open: 8.4.2 | 8084 | open: 8.4.2 |
7547 | picomatch: 2.3.1 | 8085 | picomatch: 2.3.1 |
7548 | - rollup: 4.17.2 | ||
7549 | source-map: 0.7.4 | 8086 | source-map: 0.7.4 |
7550 | yargs: 17.7.2 | 8087 | yargs: 17.7.2 |
8088 | + optionalDependencies: | ||
8089 | + rollup: 4.17.2 | ||
7551 | 8090 | ||
7552 | rollup@4.17.2: | 8091 | rollup@4.17.2: |
7553 | dependencies: | 8092 | dependencies: |
@@ -7596,6 +8135,8 @@ snapshots: | @@ -7596,6 +8135,8 @@ snapshots: | ||
7596 | 8135 | ||
7597 | semver@7.6.2: {} | 8136 | semver@7.6.2: {} |
7598 | 8137 | ||
8138 | + semver@7.6.3: {} | ||
8139 | + | ||
7599 | send@0.18.0: | 8140 | send@0.18.0: |
7600 | dependencies: | 8141 | dependencies: |
7601 | debug: 2.6.9 | 8142 | debug: 2.6.9 |
@@ -7740,6 +8281,8 @@ snapshots: | @@ -7740,6 +8281,8 @@ snapshots: | ||
7740 | 8281 | ||
7741 | std-env@3.7.0: {} | 8282 | std-env@3.7.0: {} |
7742 | 8283 | ||
8284 | + std-env@3.8.0: {} | ||
8285 | + | ||
7743 | streamx@2.16.1: | 8286 | streamx@2.16.1: |
7744 | dependencies: | 8287 | dependencies: |
7745 | fast-fifo: 1.3.2 | 8288 | fast-fifo: 1.3.2 |
@@ -7924,6 +8467,8 @@ snapshots: | @@ -7924,6 +8467,8 @@ snapshots: | ||
7924 | 8467 | ||
7925 | ufo@1.5.3: {} | 8468 | ufo@1.5.3: {} |
7926 | 8469 | ||
8470 | + ufo@1.5.4: {} | ||
8471 | + | ||
7927 | ultrahtml@1.5.3: {} | 8472 | ultrahtml@1.5.3: {} |
7928 | 8473 | ||
7929 | unconfig@0.3.13: | 8474 | unconfig@0.3.13: |
@@ -7964,6 +8509,24 @@ snapshots: | @@ -7964,6 +8509,24 @@ snapshots: | ||
7964 | 8509 | ||
7965 | unicorn-magic@0.1.0: {} | 8510 | unicorn-magic@0.1.0: {} |
7966 | 8511 | ||
8512 | + unimport@3.13.3(rollup@4.17.2): | ||
8513 | + dependencies: | ||
8514 | + '@rollup/pluginutils': 5.1.3(rollup@4.17.2) | ||
8515 | + acorn: 8.14.0 | ||
8516 | + escape-string-regexp: 5.0.0 | ||
8517 | + estree-walker: 3.0.3 | ||
8518 | + fast-glob: 3.3.2 | ||
8519 | + local-pkg: 0.5.1 | ||
8520 | + magic-string: 0.30.13 | ||
8521 | + mlly: 1.7.3 | ||
8522 | + pathe: 1.1.2 | ||
8523 | + pkg-types: 1.2.1 | ||
8524 | + scule: 1.3.0 | ||
8525 | + strip-literal: 2.1.0 | ||
8526 | + unplugin: 1.16.0 | ||
8527 | + transitivePeerDependencies: | ||
8528 | + - rollup | ||
8529 | + | ||
7967 | unimport@3.7.1(rollup@4.17.2): | 8530 | unimport@3.7.1(rollup@4.17.2): |
7968 | dependencies: | 8531 | dependencies: |
7969 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 8532 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
@@ -7992,9 +8555,9 @@ snapshots: | @@ -7992,9 +8555,9 @@ snapshots: | ||
7992 | 8555 | ||
7993 | universalify@2.0.1: {} | 8556 | universalify@2.0.1: {} |
7994 | 8557 | ||
7995 | - unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11): | 8558 | + unocss@0.60.2(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
7996 | dependencies: | 8559 | dependencies: |
7997 | - '@unocss/astro': 0.60.2(rollup@4.17.2)(vite@5.2.11) | 8560 | + '@unocss/astro': 0.60.2(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
7998 | '@unocss/cli': 0.60.2(rollup@4.17.2) | 8561 | '@unocss/cli': 0.60.2(rollup@4.17.2) |
7999 | '@unocss/core': 0.60.2 | 8562 | '@unocss/core': 0.60.2 |
8000 | '@unocss/extractor-arbitrary-variants': 0.60.2 | 8563 | '@unocss/extractor-arbitrary-variants': 0.60.2 |
@@ -8013,14 +8576,15 @@ snapshots: | @@ -8013,14 +8576,15 @@ snapshots: | ||
8013 | '@unocss/transformer-compile-class': 0.60.2 | 8576 | '@unocss/transformer-compile-class': 0.60.2 |
8014 | '@unocss/transformer-directives': 0.60.2 | 8577 | '@unocss/transformer-directives': 0.60.2 |
8015 | '@unocss/transformer-variant-group': 0.60.2 | 8578 | '@unocss/transformer-variant-group': 0.60.2 |
8016 | - '@unocss/vite': 0.60.2(rollup@4.17.2)(vite@5.2.11) | ||
8017 | - vite: 5.2.11(sass@1.77.1) | 8579 | + '@unocss/vite': 0.60.2(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)) |
8580 | + optionalDependencies: | ||
8581 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) | ||
8018 | transitivePeerDependencies: | 8582 | transitivePeerDependencies: |
8019 | - postcss | 8583 | - postcss |
8020 | - rollup | 8584 | - rollup |
8021 | - supports-color | 8585 | - supports-color |
8022 | 8586 | ||
8023 | - unplugin-vue-router@0.7.0(rollup@4.17.2)(vue-router@4.3.2)(vue@3.4.27): | 8587 | + unplugin-vue-router@0.7.0(rollup@4.17.2)(vue-router@4.3.2(vue@3.4.27))(vue@3.4.27): |
8024 | dependencies: | 8588 | dependencies: |
8025 | '@babel/types': 7.24.5 | 8589 | '@babel/types': 7.24.5 |
8026 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 8590 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
@@ -8034,8 +8598,9 @@ snapshots: | @@ -8034,8 +8598,9 @@ snapshots: | ||
8034 | pathe: 1.1.2 | 8598 | pathe: 1.1.2 |
8035 | scule: 1.3.0 | 8599 | scule: 1.3.0 |
8036 | unplugin: 1.10.1 | 8600 | unplugin: 1.10.1 |
8037 | - vue-router: 4.3.2(vue@3.4.27) | ||
8038 | yaml: 2.4.2 | 8601 | yaml: 2.4.2 |
8602 | + optionalDependencies: | ||
8603 | + vue-router: 4.3.2(vue@3.4.27) | ||
8039 | transitivePeerDependencies: | 8604 | transitivePeerDependencies: |
8040 | - rollup | 8605 | - rollup |
8041 | - vue | 8606 | - vue |
@@ -8047,19 +8612,25 @@ snapshots: | @@ -8047,19 +8612,25 @@ snapshots: | ||
8047 | webpack-sources: 3.2.3 | 8612 | webpack-sources: 3.2.3 |
8048 | webpack-virtual-modules: 0.6.1 | 8613 | webpack-virtual-modules: 0.6.1 |
8049 | 8614 | ||
8615 | + unplugin@1.16.0: | ||
8616 | + dependencies: | ||
8617 | + acorn: 8.14.0 | ||
8618 | + webpack-virtual-modules: 0.6.2 | ||
8619 | + | ||
8050 | unstorage@1.10.2(ioredis@5.4.1): | 8620 | unstorage@1.10.2(ioredis@5.4.1): |
8051 | dependencies: | 8621 | dependencies: |
8052 | anymatch: 3.1.3 | 8622 | anymatch: 3.1.3 |
8053 | chokidar: 3.6.0 | 8623 | chokidar: 3.6.0 |
8054 | destr: 2.0.3 | 8624 | destr: 2.0.3 |
8055 | h3: 1.11.1 | 8625 | h3: 1.11.1 |
8056 | - ioredis: 5.4.1 | ||
8057 | listhen: 1.7.2 | 8626 | listhen: 1.7.2 |
8058 | lru-cache: 10.2.2 | 8627 | lru-cache: 10.2.2 |
8059 | mri: 1.2.0 | 8628 | mri: 1.2.0 |
8060 | node-fetch-native: 1.6.4 | 8629 | node-fetch-native: 1.6.4 |
8061 | ofetch: 1.3.4 | 8630 | ofetch: 1.3.4 |
8062 | ufo: 1.5.3 | 8631 | ufo: 1.5.3 |
8632 | + optionalDependencies: | ||
8633 | + ioredis: 5.4.1 | ||
8063 | transitivePeerDependencies: | 8634 | transitivePeerDependencies: |
8064 | - uWebSockets.js | 8635 | - uWebSockets.js |
8065 | 8636 | ||
@@ -8081,13 +8652,25 @@ snapshots: | @@ -8081,13 +8652,25 @@ snapshots: | ||
8081 | transitivePeerDependencies: | 8652 | transitivePeerDependencies: |
8082 | - supports-color | 8653 | - supports-color |
8083 | 8654 | ||
8655 | + untyped@1.5.1: | ||
8656 | + dependencies: | ||
8657 | + '@babel/core': 7.26.0 | ||
8658 | + '@babel/standalone': 7.26.2 | ||
8659 | + '@babel/types': 7.26.0 | ||
8660 | + defu: 6.1.4 | ||
8661 | + jiti: 2.4.0 | ||
8662 | + mri: 1.2.0 | ||
8663 | + scule: 1.3.0 | ||
8664 | + transitivePeerDependencies: | ||
8665 | + - supports-color | ||
8666 | + | ||
8084 | unwasm@0.3.9: | 8667 | unwasm@0.3.9: |
8085 | dependencies: | 8668 | dependencies: |
8086 | knitwork: 1.1.0 | 8669 | knitwork: 1.1.0 |
8087 | magic-string: 0.30.10 | 8670 | magic-string: 0.30.10 |
8088 | - mlly: 1.7.0 | 8671 | + mlly: 1.7.1 |
8089 | pathe: 1.1.2 | 8672 | pathe: 1.1.2 |
8090 | - pkg-types: 1.1.1 | 8673 | + pkg-types: 1.1.3 |
8091 | unplugin: 1.10.1 | 8674 | unplugin: 1.10.1 |
8092 | 8675 | ||
8093 | upath@2.0.1: {} | 8676 | upath@2.0.1: {} |
@@ -8098,6 +8681,12 @@ snapshots: | @@ -8098,6 +8681,12 @@ snapshots: | ||
8098 | escalade: 3.1.2 | 8681 | escalade: 3.1.2 |
8099 | picocolors: 1.0.0 | 8682 | picocolors: 1.0.0 |
8100 | 8683 | ||
8684 | + update-browserslist-db@1.1.1(browserslist@4.24.2): | ||
8685 | + dependencies: | ||
8686 | + browserslist: 4.24.2 | ||
8687 | + escalade: 3.2.0 | ||
8688 | + picocolors: 1.1.1 | ||
8689 | + | ||
8101 | uqr@0.1.2: {} | 8690 | uqr@0.1.2: {} |
8102 | 8691 | ||
8103 | urlpattern-polyfill@8.0.2: {} | 8692 | urlpattern-polyfill@8.0.2: {} |
@@ -8111,17 +8700,17 @@ snapshots: | @@ -8111,17 +8700,17 @@ snapshots: | ||
8111 | 8700 | ||
8112 | validate-npm-package-name@5.0.1: {} | 8701 | validate-npm-package-name@5.0.1: {} |
8113 | 8702 | ||
8114 | - vite-hot-client@0.2.3(vite@5.2.11): | 8703 | + vite-hot-client@0.2.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
8115 | dependencies: | 8704 | dependencies: |
8116 | - vite: 5.2.11(sass@1.77.1) | 8705 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8117 | 8706 | ||
8118 | - vite-node@1.6.0(sass@1.77.1): | 8707 | + vite-node@1.6.0(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0): |
8119 | dependencies: | 8708 | dependencies: |
8120 | cac: 6.7.14 | 8709 | cac: 6.7.14 |
8121 | debug: 4.3.4 | 8710 | debug: 4.3.4 |
8122 | pathe: 1.1.2 | 8711 | pathe: 1.1.2 |
8123 | picocolors: 1.0.0 | 8712 | picocolors: 1.0.0 |
8124 | - vite: 5.2.11(sass@1.77.1) | 8713 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8125 | transitivePeerDependencies: | 8714 | transitivePeerDependencies: |
8126 | - '@types/node' | 8715 | - '@types/node' |
8127 | - less | 8716 | - less |
@@ -8132,7 +8721,7 @@ snapshots: | @@ -8132,7 +8721,7 @@ snapshots: | ||
8132 | - supports-color | 8721 | - supports-color |
8133 | - terser | 8722 | - terser |
8134 | 8723 | ||
8135 | - vite-plugin-checker@0.6.4(vite@5.2.11): | 8724 | + vite-plugin-checker@0.6.4(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
8136 | dependencies: | 8725 | dependencies: |
8137 | '@babel/code-frame': 7.24.2 | 8726 | '@babel/code-frame': 7.24.2 |
8138 | ansi-escapes: 4.3.2 | 8727 | ansi-escapes: 4.3.2 |
@@ -8145,16 +8734,15 @@ snapshots: | @@ -8145,16 +8734,15 @@ snapshots: | ||
8145 | semver: 7.6.2 | 8734 | semver: 7.6.2 |
8146 | strip-ansi: 6.0.1 | 8735 | strip-ansi: 6.0.1 |
8147 | tiny-invariant: 1.3.3 | 8736 | tiny-invariant: 1.3.3 |
8148 | - vite: 5.2.11(sass@1.77.1) | 8737 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8149 | vscode-languageclient: 7.0.0 | 8738 | vscode-languageclient: 7.0.0 |
8150 | vscode-languageserver: 7.0.0 | 8739 | vscode-languageserver: 7.0.0 |
8151 | vscode-languageserver-textdocument: 1.0.11 | 8740 | vscode-languageserver-textdocument: 1.0.11 |
8152 | vscode-uri: 3.0.8 | 8741 | vscode-uri: 3.0.8 |
8153 | 8742 | ||
8154 | - vite-plugin-inspect@0.8.4(@nuxt/kit@3.11.2)(rollup@4.17.2)(vite@5.2.11): | 8743 | + vite-plugin-inspect@0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
8155 | dependencies: | 8744 | dependencies: |
8156 | '@antfu/utils': 0.7.8 | 8745 | '@antfu/utils': 0.7.8 |
8157 | - '@nuxt/kit': 3.11.2(rollup@4.17.2) | ||
8158 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) | 8746 | '@rollup/pluginutils': 5.1.0(rollup@4.17.2) |
8159 | debug: 4.3.4 | 8747 | debug: 4.3.4 |
8160 | error-stack-parser-es: 0.1.2 | 8748 | error-stack-parser-es: 0.1.2 |
@@ -8163,12 +8751,14 @@ snapshots: | @@ -8163,12 +8751,14 @@ snapshots: | ||
8163 | perfect-debounce: 1.0.0 | 8751 | perfect-debounce: 1.0.0 |
8164 | picocolors: 1.0.0 | 8752 | picocolors: 1.0.0 |
8165 | sirv: 2.0.4 | 8753 | sirv: 2.0.4 |
8166 | - vite: 5.2.11(sass@1.77.1) | 8754 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8755 | + optionalDependencies: | ||
8756 | + '@nuxt/kit': 3.11.2(rollup@4.17.2) | ||
8167 | transitivePeerDependencies: | 8757 | transitivePeerDependencies: |
8168 | - rollup | 8758 | - rollup |
8169 | - supports-color | 8759 | - supports-color |
8170 | 8760 | ||
8171 | - vite-plugin-vue-inspector@5.1.0(vite@5.2.11): | 8761 | + vite-plugin-vue-inspector@5.1.0(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0)): |
8172 | dependencies: | 8762 | dependencies: |
8173 | '@babel/core': 7.24.5 | 8763 | '@babel/core': 7.24.5 |
8174 | '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5) | 8764 | '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5) |
@@ -8179,29 +8769,31 @@ snapshots: | @@ -8179,29 +8769,31 @@ snapshots: | ||
8179 | '@vue/compiler-dom': 3.4.27 | 8769 | '@vue/compiler-dom': 3.4.27 |
8180 | kolorist: 1.8.0 | 8770 | kolorist: 1.8.0 |
8181 | magic-string: 0.30.10 | 8771 | magic-string: 0.30.10 |
8182 | - vite: 5.2.11(sass@1.77.1) | 8772 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8183 | transitivePeerDependencies: | 8773 | transitivePeerDependencies: |
8184 | - supports-color | 8774 | - supports-color |
8185 | 8775 | ||
8186 | - vite-plugin-vuetify@2.0.3(vite@5.2.11)(vue@3.4.27)(vuetify@3.6.5): | 8776 | + vite-plugin-vuetify@2.0.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)(vuetify@3.6.5): |
8187 | dependencies: | 8777 | dependencies: |
8188 | '@vuetify/loader-shared': 2.0.3(vue@3.4.27)(vuetify@3.6.5) | 8778 | '@vuetify/loader-shared': 2.0.3(vue@3.4.27)(vuetify@3.6.5) |
8189 | debug: 4.3.4 | 8779 | debug: 4.3.4 |
8190 | upath: 2.0.1 | 8780 | upath: 2.0.1 |
8191 | - vite: 5.2.11(sass@1.77.1) | 8781 | + vite: 5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0) |
8192 | vue: 3.4.27 | 8782 | vue: 3.4.27 |
8193 | - vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue@3.4.27) | 8783 | + vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27) |
8194 | transitivePeerDependencies: | 8784 | transitivePeerDependencies: |
8195 | - supports-color | 8785 | - supports-color |
8196 | 8786 | ||
8197 | - vite@5.2.11(sass@1.77.1): | 8787 | + vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0): |
8198 | dependencies: | 8788 | dependencies: |
8199 | esbuild: 0.20.2 | 8789 | esbuild: 0.20.2 |
8200 | postcss: 8.4.38 | 8790 | postcss: 8.4.38 |
8201 | rollup: 4.17.2 | 8791 | rollup: 4.17.2 |
8202 | - sass: 1.77.1 | ||
8203 | optionalDependencies: | 8792 | optionalDependencies: |
8793 | + '@types/node': 20.12.11 | ||
8204 | fsevents: 2.3.3 | 8794 | fsevents: 2.3.3 |
8795 | + sass: 1.77.1 | ||
8796 | + terser: 5.31.0 | ||
8205 | 8797 | ||
8206 | vscode-jsonrpc@6.0.0: {} | 8798 | vscode-jsonrpc@6.0.0: {} |
8207 | 8799 | ||
@@ -8271,7 +8863,7 @@ snapshots: | @@ -8271,7 +8863,7 @@ snapshots: | ||
8271 | '@vue/server-renderer': 3.4.27(vue@3.4.27) | 8863 | '@vue/server-renderer': 3.4.27(vue@3.4.27) |
8272 | '@vue/shared': 3.4.27 | 8864 | '@vue/shared': 3.4.27 |
8273 | 8865 | ||
8274 | - vuetify-nuxt-module@0.14.0(rollup@4.17.2)(vite@5.2.11)(vue@3.4.27): | 8866 | + vuetify-nuxt-module@0.14.0(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27): |
8275 | dependencies: | 8867 | dependencies: |
8276 | '@nuxt/kit': 3.11.2(rollup@4.17.2) | 8868 | '@nuxt/kit': 3.11.2(rollup@4.17.2) |
8277 | defu: 6.1.4 | 8869 | defu: 6.1.4 |
@@ -8281,8 +8873,8 @@ snapshots: | @@ -8281,8 +8873,8 @@ snapshots: | ||
8281 | perfect-debounce: 1.0.0 | 8873 | perfect-debounce: 1.0.0 |
8282 | ufo: 1.5.3 | 8874 | ufo: 1.5.3 |
8283 | unconfig: 0.3.13 | 8875 | unconfig: 0.3.13 |
8284 | - vite-plugin-vuetify: 2.0.3(vite@5.2.11)(vue@3.4.27)(vuetify@3.6.5) | ||
8285 | - vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue@3.4.27) | 8876 | + vite-plugin-vuetify: 2.0.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)(vuetify@3.6.5) |
8877 | + vuetify: 3.6.5(vite-plugin-vuetify@2.0.3)(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27) | ||
8286 | transitivePeerDependencies: | 8878 | transitivePeerDependencies: |
8287 | - rollup | 8879 | - rollup |
8288 | - supports-color | 8880 | - supports-color |
@@ -8292,10 +8884,12 @@ snapshots: | @@ -8292,10 +8884,12 @@ snapshots: | ||
8292 | - vue-i18n | 8884 | - vue-i18n |
8293 | - webpack-plugin-vuetify | 8885 | - webpack-plugin-vuetify |
8294 | 8886 | ||
8295 | - vuetify@3.6.5(vite-plugin-vuetify@2.0.3)(vue@3.4.27): | 8887 | + vuetify@3.6.5(vite-plugin-vuetify@2.0.3)(vue-i18n@9.13.1(vue@3.4.27))(vue@3.4.27): |
8296 | dependencies: | 8888 | dependencies: |
8297 | - vite-plugin-vuetify: 2.0.3(vite@5.2.11)(vue@3.4.27)(vuetify@3.6.5) | ||
8298 | vue: 3.4.27 | 8889 | vue: 3.4.27 |
8890 | + optionalDependencies: | ||
8891 | + vite-plugin-vuetify: 2.0.3(vite@5.2.11(@types/node@20.12.11)(sass@1.77.1)(terser@5.31.0))(vue@3.4.27)(vuetify@3.6.5) | ||
8892 | + vue-i18n: 9.13.1(vue@3.4.27) | ||
8299 | 8893 | ||
8300 | webidl-conversions@3.0.1: {} | 8894 | webidl-conversions@3.0.1: {} |
8301 | 8895 | ||
@@ -8303,6 +8897,8 @@ snapshots: | @@ -8303,6 +8897,8 @@ snapshots: | ||
8303 | 8897 | ||
8304 | webpack-virtual-modules@0.6.1: {} | 8898 | webpack-virtual-modules@0.6.1: {} |
8305 | 8899 | ||
8900 | + webpack-virtual-modules@0.6.2: {} | ||
8901 | + | ||
8306 | whatwg-url@5.0.0: | 8902 | whatwg-url@5.0.0: |
8307 | dependencies: | 8903 | dependencies: |
8308 | tr46: 0.0.3 | 8904 | tr46: 0.0.3 |
public/sitemap.xml
1 | <?xml version='1.0' encoding='utf-8'?> | 1 | <?xml version='1.0' encoding='utf-8'?> |
2 | -<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://www.canrud.com/</loc><lastmod>2024-11-11</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://www.canrud.com/about</loc><lastmod>2024-11-11</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products</loc><lastmod>2024-11-11</lastmod><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://www.canrud.com/contact</loc><lastmod>2024-11-11</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products/detail/06acc5111c654eb3b2fd06b0c677cf28</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e84872cede9b4805aa0a0a6b60ed7a76</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e424e1d1ed84c5c8b2c8ecad9ddebb2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09c6ee2fd4764e63a6f65c4e0858123c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98b9a0a517f94bcaa21c9e491858ebd2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a89e241f8b014389bbcf0732df66ae94</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/717de68d8ecf4618b014ee45f4431359</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ac816a9f53b496783cd34ff0e3e9617</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adbbc24922224a04ad54d6c22631b042</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2163e072f1a5430dbe49edec9792b5fb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21a63eab4b934d74a056d848791d4aa8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24fdd0cbf1534caf99a61c5c4ec9a190</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2697e5e7a45549b5a00ddbfc6bdc6803</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f516a2e5afa4886bd4f71cbb4f014f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/341e8caa66b347a69cb8723fe9dfef9f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e80a2b28f2e44f5ba701be6e3492068</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ff24c3ac0c9465fbad55d6156925883</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98387d7e2a5a4cf3a8d51285c49f352e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9bb0a128f9a14408a94b7df49b78671a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7f8d4bf2b024f6aabcd8e08586aa336</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35e9376e598f432eab78ee7ce12d13ae</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f42f1045a154e8b8830269a322de6b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/366c2761f1e64d63aa66ad4364a413b9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d67cfa3b15a145c0a8531b5e891bfe83</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80ee89ffea50426d8a08cb15098dcc4f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e367a40dcdda4e17af1fd6bd521a0bf4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4e98e3960884654a408f380efe2dbc2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b43a487090544e86abc02694716b631a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/480a343f8ed24ba2be3796a687b50e9a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4e82a4fcbc49425a9015cffd9b291147</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5156cb107b154827b51410107e2657b7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cad6a3de93244869a323a6d15b9fdf80</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/570c3e72520f4b2d8f2b3c0e347725cf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/596701b0dcbe40748276600c23470707</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45217410e8db4d7f92bae04906294f37</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3130a91ac5a44804b6163f7503254d3d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c84fa44d78944d3e9ae3e06bf4e3261b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/219f499618954865a9f94f8afa59f1a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e7241f1bd064dbaaf157cd0ffaff39a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d64e8f9aeae47a08c62fe8d432e599c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d2c7cccd4347789f3f44139da8106d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f2e4b0973884cac8388c62976be04b4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa262cf4f6824f27baf7fe158d02a6cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/68ef6d2dd95741ea9a5b50e52ff1f646</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/690a6647dc6e403891b069c7d7ed77ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19f8abd7e72946928e8f5e725d753caf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aef4c0d60695484eaaaea0788bf486e5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70abe7efabd24ecc9e33b62547c346b4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b45475fec933445fa49dc70b9ad2cbbd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d19417613ae4f739bc20089f20293f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85329d7a8a6f46ba9977dddd3c90e6ce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92ef8e9a452642b0a55414976027e105</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ef7b2fc0f814c4983053574d66eea0f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8aacbcb7c254469abc6d4ba97245b97b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d99231809fa4dfab259e3efec86cd82</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5f652db0a864b35836dc0ec72b6e1a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93066e43cde14293a2d9cc302485ab6f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f3a9de818c644c8085f570697019ef5d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ddcbe7c1200a4e24a1218f44f26ed20c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e9d14dee39245c48af78540b07a2054</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ddb131b374841f8b175f6f80d3a3f53</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c52bf93b503b4c0882f9a63c878fcf37</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e94d1322d134f728008af49aad207fc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/834c4c5edacd443f9be29c8b520dd84d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a41aa97437741e5b40c690590042030</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c8f491d0f80849c4a5038ce345d86566</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec92b18b5a644b90b7ebaa689305ae9a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/989bcc5cd11d41c0b908aa804a625e78</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdde037ba56b47d1a3927f26b67e42b1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac1e4475bbea4eb786a8661b7cdea40f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4ae23d47b1b4bf9920216dfb430c782</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5881375a58d44c7099fdbefe7ff81e0e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b51ab5680e54d949bf6e5954ff10158</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d1e0beb88c54795a183ca988d9b31e4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de3516740b43418aa47e50afcfd1a1aa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6c4e08d42f146f4917c0362a48ef5a7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fc4057942ab444babba817cf9bb02d67</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9c860c090cd41e1be3823471fc882f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ee8bb4e951bd4cfaada77738bce630fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d7a3059455049889eb79422900a7a45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed651833dd794755a05c7cc5488ecba7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd2402ed35b24505a2f6d4c781cee35a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b638f093db14c7d8995a38e07d17266</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4cfad14a8824fa7acef0264e0311447</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d8a019dd4b6403db789180f9e8109ee</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f564361a878146189ea18668d916eb90</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d09d3824e2a64e41bc207e0f346a710d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/506442858ad04bb189499cf734eaa7de</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/198f57a11936417d96181bef2f1b424d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74bcacafe88b45bcb2b341dc6d082d20</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9edff2cc4123432ab4e62b8837dc3f4e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ffb70df939b34a99a186b42d0378ae73</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9787647d30d4c0c99f4beb49adc3979</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81f89a31076f4fd18e883ee190d194cd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09c2022812b0406995e545057231ccc8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d65df81681ad46feab5cfc99ff8f98b1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/87d2e0573ee347c599db901448ddd812</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/243450106307444cb14687fafc99ff0e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/882e9fefbd6e439ea9a888640bbc59b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cab8f478eac741b1948fb0ec169bdefe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dbd15b84f4bc4856826efb0b42cc1b1f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b91c94a62c749d687c69b9898031cdd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94dbc8bfe9ca4ac09939316e8b2531e2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/573a692988e3408c9a3e2fc39458784f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9732435264b42159ab93c19b2513e28</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bda3026a2bda415886b7cef0250ac9dd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/82e60bc3a333444bba68f1bcad86bebd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb58241c40c14055b316759cbd2183bd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1b58f95073744a088fad09436e09284</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f207449ea944a1f8a4054b6ab6eb1a7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0e96412d8b04ef5b4a6efd264c0f977</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3adbf61ade6640f1815cd8b249f310e5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09f3937d74044e8b84a98b5323fcd7a9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61a3a00d0ec94513957be40386310a7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18220ae10c9540c597ee60e15414d47e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b5eaeb792dc4a54b6ed191e435881d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d85150bb5e364ce3945ec949889df22f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b6208dd900249098c3f25d76f6c7004</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43b9a96b3f3745699e49741cd5431332</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/423188d8460045b79ca02bc53911e21c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03c1b3d7e3414190969fa5a5c628114d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb4e18c42ea249c58fd2c33c992fa911</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33f514be5a80463f8435d13fb27a8fec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2417f8cbe8a64e929f52ecc54b7f4801</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1854c2a9d4394535b1fd75181f23fe7c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf13202e494a4900ac8ae54c1e15886f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd73857206374f908d0419767a4087e6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4caca389a7e4990995c11d450242359</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e9b8cf6081746d7a19d305ff0716a3a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86edeca16424427cadf9ef73d8ea1781</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a5369533b334b93b150534844a85924</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed6e68c3d91a45f393e4caab9b48017d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2854725c62347b087d9c37390a7908a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a59aea4e13e4e549a16cca11a0ca3f7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc89b9347e5b41f2844a6c5bf4a9bfdf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c66960a340b546bd9c3ed86e86de5d77</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1cee57c1608f4267aa892be39cb69952</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd78007fab27487cbbd223b5734aac21</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc6cf238bda84b5eb984572d473ff9f5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c556b86f5d8a4ae4ae8c0f162ec6e9e1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a82034a97a14018b129f2b4e32b2f9a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be68c71a37a74e2eaee270707e7e8853</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ec47c927c324ee6b64c4419612fa9af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a88dde549cec4328bb2c8becfba24d13</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27815c5f1cf242c5a6aa38da87135aea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b695051331341b3bf82ed39724df353</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26c2438d1bef4ecaa98bd5dfa58c8f54</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/67320a4a82054ea49fc7e5eea8eb7f5b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af489525b1994864bd5170742f450409</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c899b444e9564a849897f7e10e680482</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1eef20db89134883863bed00b1b8b1bf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65682a687d6f4e5c9be9d7a6c0e537ba</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab04191266654f658af8394da2fbfea7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ddad72d1522463c94df79e433f03507</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/348ba51b5bb54a15809f2bf598fa3f2a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/62fc1a7764814408a14d5abd74074359</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de986a537fd54ae6a4ad549cc5536a2f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2688369140147cf972267be8dd9c09b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/20a32f14345847c2b584972fb0825c77</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51e378ab73814225a19ccd51f33e81e8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d387cd9a19a433787c835259cab88b1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7461f6c8f1d94cdf99cc5cf8112bd35a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/969943c90e414f5292613e1256b2e8c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf48e8eac279473cb879c351d543ec05</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ca94453cd9f4b6e92659c47c31ed284</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e00efbe470b45508f575923f97eeb38</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb25e4bc85ac4b18abbb7398f430809f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e8f1e32d801464aaccd895b17ecb3a8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f211924730c407389d7fd9f2c62ea4c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5d3855c1194473eb4ebf14eabe37fe2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc2e62fc3ae944409404007abd8e6fb8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1102361d4ee34a9b8deccaf408d1651b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a18bddaa0f841c0825161911fb71a1a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85d50687f6ff4ef89ee4d919c74497d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ce01f99c9684cecb8cbefe20034da65</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa53c9122fce4ff29aef0dfa2217f736</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/896aaff113fa4d9f87f69108a4961bed</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b50f443189714d79b8bf905f4de555c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a957efaa15fe4b04a85e8390636c91b3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bebde05f00b347aca58d9f4debe9d822</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29c4579dde1e4350b158d06aaed44f38</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2c1bfa35fba42aeb1a750552e7d9d08</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f960c975be24548b9c1590d82c245da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f742c972cf64fe1a56c8048b80fd57b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08fb06e27a5341d58321741993c21072</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a43b256a74774e7e86577fb4e04d1951</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7eb73b43915a4992b580582fb3c92bfc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd871308d8624d04b8d86fbb4a0672bf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51294f4ab9ff4675a8c85c42e30014aa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de0d80c57349492aa3492cb889aff4e5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92b86871011e4bd4b8fdce0909cdfcdb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fec799b2a6940fd9c17fef64f2b85ca</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9cdcf563e5b4b54afff35cdad42c1af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8105fb71d10d4adbb0c41e775c4651e6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28c6bcd34caf485f97a6d11e16448a41</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b324838eba24a26bdfb67b07df94597</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14c53ff26f614b0f8814eb0d86375427</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7ae40217bb24c809950c00a9a97378d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7f412eb07331465abab6360bd77cd908</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9a66bca6b8449cea4563df023bec50f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bba6722fcb31463abd54bbc79c911dd6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03091e526b714979ad2a67b497ed92fb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c0d4204cefa42beaabbd8fe2d0bbea6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26ba6f0ef82f4239a584c0f81780843d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dcd15213692749df86f9bcd327f23ce9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d178dc245a5641a880628e03072ce341</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0bcfc443daeb4dcebf1df0a54c26b1b2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be8229be1e7e4292b5b169aaabe2ea44</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92dfaa07a923499bab390fefdbb8e4cd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/919a3018bdc44ca0b711bbe86fdd102a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cfb654a4c87d4fc0a1fe3a014245252e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2256157cfe445e698d9807742f10ccc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86e07d94ec9d4756bcfeda97bfe9ee55</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c141c4be122483f83348f46bad7e591</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f429b35b489a452481e0ca5301b1ef2a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a888204bdf9e46e0ab1ad98947238096</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e706db42b13d4732a70b2c16b02ee27b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab692efa8d80427ca3180f6bd5ba1014</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/95289d17cb6046afa9328767a36a777d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a8000924e594fddaf6a22c9bb0d4bda</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7dbab396e2aa49c5a21759330118f023</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b8f1c381226464a96916f9deebfc82f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33d07af7872846098ed1abcb4f8039f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd15ede92a774888b9b1cadaf3b40c4d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/133c090b6904415495d71a7cd3c59e21</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d5c23dd250a4ad99b9fb907e0602c85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6edfe7d3cf24d6baf4b23dd56d10eb6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cda86eea0434ee480b296393c9e39f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6663e4cb001d48a5a5fbbf5bf89aec08</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3196bfe6e04b4945ab6381255f984c74</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc9cbc33ec3c4f1c9de0788aa9ab7fe0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d01a0a01123644ae8ddb0aebeb4618c8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c62f8b0b63004ad3b1c88942617fbc64</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5352bf95b504d1cb03306a89c4d6cfd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81ddeb6f48d54abeb52c3438dd6e586c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a2ffe03988645da8994cde50a883923</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f3be7ac087cf49dd99de9b1cf60493f1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdb2a46bd4b4434ebe16e52b02b6f2a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1c53e58da9546f3b8fea589f4ddd7f1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/313bedb8f97a45f082afddabd611f4b5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1b8ced3498b4c5f964132e1e64129b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fce8a8890914374828cfc61007ddd75</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1800be2ace504ecc9e259751d0668801</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e85a00705884addbe94e2ebc4188290</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e49313994d994068a06b324ff4e3ee2e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc5bab31f3e44c569a79b034179f2b2c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06ee6155fa98437b8459dbdd44bf03ee</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9d0f2dfd400a49aab8c7c170eaba2635</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/081026e1174b48c0ad333162d5864539</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/669b3178874644db88cfbea18a3c8b2e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0bd3c3623e4f1d8ec7f2b314b74dd8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/274ab70adae844c89d60444d8a250318</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c9c3800d8724f9bbc4029d55e5ddf7e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d45871e7027e494f8a0d5d57aa99d45e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9cdde0b7ffb14aa3822d44c379a4bc68</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b94461937fcb4c2994443e3c3f69126d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8fab0b0a8ed477b926d0dfccaea7201</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/609fc979ff614b38b01cf0b8262c9354</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4ec6d78f9c0408886750e7183d4c3c2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9af2f1e03cf2403ca482471fc4bdb8c0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0eb26ff17c2e4cb182d3c047a5967094</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cdf0e878e6849f29042df32151a0fe8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6be2b0307e344c6eb00d580e41b6d6b9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f4384112b8644898121778943eb1c7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d7901abc027470bb4203a766978e370</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fac437bdc784b4aa443da33d6aa49db</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66b0f2f513bc463cb546a42fc328f1ba</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8d6b1e033db4afa9db0cdc52abad582</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a3aa20cf4144c3286816acac8fcc252</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b6ebf85f06c4e128a9e197b87c225c4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7cbee4eb23249288661a2f496b49755</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fef495da55904aaf84d58cc9ee5d96a1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4588fadb8474b7da378a56913562102</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a702ffa7a568493b9d2be08904ee5dbf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5cda75153e94d78b668573de0721582</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26ca87bd078448e5be4f27b76079efe0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/22664edb0daf422e99de4667b1556cf6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d78f1dc776d4ff888c2af1e4629e435</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79f217778a05433d88d5ea7c9bb4c991</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e6232b32dc2d40e5aa2cfa77e6aad533</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f58c2869d5e84858ba823798d9d4c05e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea99ab7ee3f2420ab0a52ab053d4265b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3471ea51753e4dce88c3b0eaa3332c45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/abd7548ebfbc4f10becf9b1b00c04afc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b590900e7bb4b0799e8fe193f587ed2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3fc8c3d05c4c47bd8703668fbdbdebac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e6ce5e58479403d93b00031fbc4fe3b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7464247609d949ab91f363123e2b2749</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21d704ad039e4d689e01081ad04bfbf6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfaaac5f5b0845dfa53b7feba67d2e50</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a21ca25c5f004443b04a24d8b557c22a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9177c1ffdaa24d8db00cff43233c8dab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3fb79ab08e0a4c0fa58839c465dab6bc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59d8c571bbb2417fb7f2ff830ca217a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/398d5852afd84e048a21cd8b9f5e8549</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e939686d8b6434d89035f6b27a0e199</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a96614473ab482a96feca1648dbcfff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db559c4f61a4fbe9e3a61c474597a78</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adaa9fe5f9ee458f986d50184f6ee31d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5663ca67d954b679f4ec59096d9fb2f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e35c2c4252d49d0ba423d268755fd7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd8ce83fc62f4a998d801bd8cb8f20bc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d72a468baa24a7db0164f6c40284ce9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1e864d64c734c78bc6604ef79544220</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50d5de86a2f64cac9982c2a3200833d5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e77f33b796a94688ac3e6d0656a2c8c2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6e6b3844bfa44e3b6da39efd2b56f02</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78e3eaf48062415b94f22a3de61154bd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/850aecfba1234cdbac5e6fdc297a1d30</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c4cb53a407d42b8ad904c41d34c5218</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8815f5815e4046ebbf466e059e9d5064</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d4601328c2c48fa9ff3a0eefd94424c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a032d598cd046eeac1eccc515fc3fcb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03438e31f28848d49cb59a03c4c1832b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a684495afbd74f449e1bb19bc5d8baff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/299f8a88cbeb4b4d8ca9393e0d55cc1b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ddc77b7e713f46efb357205a780806cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e3341de6ec54bbf9ff814166a6e5a76</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fd0989dbdb243d3845e3b7be09dc88f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89f48cc0cf2c4fd78534d8c7eb5061da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/299c87b81b264dc0ac18c4b9937294a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90393493359347188c07e66e6ff992fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d622bfe604be4010aa24b021dd87d1c2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ae079f7c867411083b0d8b859f21a8f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21cb7d90375c46a09391f6efc4e4878d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1130758649a44a7b8bc56956b241dda</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2be9e15b099f48ad8d2ec6d7ded52def</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4485b04645f94836989623d4b1b7d522</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27c1f9c2ff5d43acbcf85cf890b8bd00</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a129db49f783431f8a05b7f5a64ea655</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b271a2524e554e2cbbffe444d77594ee</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5b6c734c66a4bd2b0fbb270205e35d2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c308d116fc64658b01efcf6d3838bd4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/569dd0f0ab084e5faa9df8a3014d196c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51db661cf15a440ba06c3ec78627ebdf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7aa4dc6b605d4e60b60313fd20fadab0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ff29cf0acaa4462852d64b3a9489cd1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ec452155c3f430f9d04e1ea6a2f2d3e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66962effc7b64d82ad6a2485d6fc99fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b796076bc30a4365b8fce52692a873a2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ee5a370646674bc5b0d998af7a7b4fa0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65e0d748c6654b0c88f3562b22cf5b1e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90d1488120ba48cc9a652f950e5c159a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46574d7bcbd7415484a01f5f7308e578</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d86e9f4031d4c8cb586829099f53d94</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/107ec73f62cc49b88e1bf47a37a525f0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/890a23cb626a4b55ad7f46716628f1b5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8779afc345ec4beb93da3818e3949309</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/542087bc610045a787112fa706df99d8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c3c13064e6d443f6afe423747c8f27f2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d3ffd79799994476b5401f2016a4e8f2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63ed389cfee84b3686f78b2cb2c15d9b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e16d636abd443b5a747369957399a41</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e83843645c574ab2971b01c0a67e60dd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/923903c67daa4fe09f300cbac5f088c7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48f8337424414ad0b0a99fb7a7da6c60</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c35407ccc5d9425cb34600184b1fc0d6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/56ac5194c0314335bf02d6fc7f611c67</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d52f757bf594229a428b5bbf1efb26f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3628ea36ad04c5591e23dca4d2e390c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5cc35b11f0b4008846d18bb95348eed</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c663c9562a04350853933a9a0f43c36</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17548ce8bc8a48d3816882bb6f4022de</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aaddd6a0c14f4ec79a6d9d6ed6fc35d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72c9b7b34a7e48f2867d4aa5a30f2630</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c090573cdf9b47a8b5eedfa97826b83f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54dc5c63fc894febb478f89572c760c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bea1d6693a0e4624aaeab48e5ee8620d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06e20e58871140488a68e37d4b4b1d95</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfbe07d5f39c4e5db1da576a68d57842</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4690f3f7adc04d09abf9dfc02d92b0ce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6946a37c20bf47379fcc042b4ab9ffa8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/afd1c9ba23774c16b43ba8757a65d390</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8791b4e790d64a2d8515c86cdd987342</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/edbce9663b2e4ad6a3306b668e658219</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79b6b202ae0d4d05a961281b5eabd6a9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f26d991d87f94a83bd34f450c54e1324</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60efd9ca515d4d11a55595db2947b9b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a29596e6b4c4cb7b72638b4a560f452</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c227f417c254667b0a1afafa359cd2a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7fa5414d3564bb59298e2d82300b8f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f1e88fbde9f47d198f70609451b5616</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86a05e1d8c1442fca067acba1842f626</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03d62e552c104333894cf54ce072676b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5091f04f81724753bcd7d86b454353a9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15b39e808e4b417683c74e8b117788ce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1be84da645f846edaee4229aca580e3a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6b3195501eb4e7b85285618f4cd61b7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab360906a50944dcb6c1ebaed9e8b8d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/177a81dd7f964c108e3084b72e95f495</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/321dba0a3f484ea39a7fa5f18586bd7e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba69c74187494aa7922f335ec91ee49d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2b07cd00c6245e4b39829658f908903</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cda171bca2ef4439b17e9bdffb04bdb6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b69b04f0f917427c824a578b2372cbce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5f33c46327b445ebf9ad34b14ac053d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0037fb79cea64b07a2e3195476c201f3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2959134e6db247ad842cddeb0aa7b051</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e61c9df199254fb4bc5acff6e890bd40</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d6546d1bab24c3aace41ce006ebf85b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ba8d74a4a2444429eec1043b319ff47</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba9634763ed54b7e9dba1e14f8c7ca3d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9c86a18a9db46509af8643771153994</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d51a3463d14484a04f53a9529b350e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e316025683e437caf7ff85fbc3bb8fb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/710394a50cbe4eddb73a18eb385aa375</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf5a7c106b6f40099620e927f006f383</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e008b2c7f85435f903416a4c124a7eb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db1462e1ae04fb693ac298e22d2f79a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f473d313e94b4e0f8ccfce908fa5a725</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48e265d73bd845da8836c41de61cf98c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1188d23c7841497cb67a37b1610dfc32</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/921863bf30074c5791f9d46164af778e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b517a0c15e7c407c82351fa293fb7020</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90c1cb85fd8b4462b746e963df894d72</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4948d095d6ed40c38132b27dd1642289</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0edfbd32f4d849e7ad91bb930542da92</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5614596f0cd04b078e0e4b6d418aa7b1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e775681f406472f850525210ac86afb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f889b2b1226440ba126b78586e829a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ca944fdfb3547b7a3056a9ec128c770</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e1c0b09de1e456fb7a334ea191f4d11</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8a28ae3007e4cda90f6e949008aa295</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/255241448e9b455baa423551dfa5267b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e59ea9675ac44b6a33a43992a49cefe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c42bd2eace74a309937bb7ad9b56ae5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2814c5d3c474501a27eef381dbe7ea8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50a3104a610441959d075f7fce02a63e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a1e1143ac614588b2000cd4cae290cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b402728264f0465a9970061c2817257a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c4dc8d766a744fc81343812fa04f7d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/428f576cf5d84ffd88491541d06c82f2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/489efa16ced54234b73c0530f879fc85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1b84c346dac145efb53f13999419bebf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2efe3a4ffe174ca094a6d9331c2cbcdc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07dc5723a1564f0997017313cd9fa2f3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdef9438716448aa98527ee4ee92370a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/671a3bcffadd450d859594de1831e053</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9f682898b4f45f2bcb0f72a10f97407</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a68c7a89eb3f43dca8dff0414f91734e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/445bae7bdb294cbd9831460c6098a6f5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/91900668dfa7432d89746b543df8bd56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48137378c363465db40404954c94cbac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/586b1c8d21424f45ab202d13f4d2f03b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b332707566ac492a9b7e0c6548a0bd0c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/445926c87646498d9be3f4d97bbfb874</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ff5d91519de45fd8e99b49d77f5a0ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e549b92c0b0e4f97b09a43b31bf53233</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70181bae88854c448709d2bd94ddfc8b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f96b12d22e67431e97b5afa2544f7dcd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49533b89951e4028b8a6b5f4a13b16d3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5e4307982954c8999401ec8edd596b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7eb00991a73414190ae517f096ce75b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42f1450b5c1e41d6a4be1f28c3208630</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5046dc1426349fcbf9db98cda19156c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a5a4551634e45bab5a3c8c220792e3d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09eaf454da684a05bb286662f70d4441</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41ff244e86424866960fc8412d04681d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/249d52d9e48542378f60d3124e943f85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f62f3f42d472468ba661d30ff75e1fd3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36518772aabc42288a37495ac64df1f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1b2b055a53004f6f8dd85f5afcf96fe0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93cd0870aab442bc96117ab2144afbf4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3da375f17e394885b31519b45fc5da38</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/512790dc3463450083a0ef4cb4a16cfa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c350291d39c6445680ee31f36af530b2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c240013e3ff442aa8d8a77992b2a9b12</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d7a9437838d4e718d0087277763f2e7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f22f12fcf48462c99d491e1134279d4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86d3d558981e4066ae591d28d43eaa58</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06e3c15c2a2b4c27a0bf49db10e69739</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1308275c155346c4bb22f05ffe4e60e4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05e16bd19b4e46078f83a31a306eaef7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0350683df93b46a58177d252dc0e727f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bba3ceae70b34a498ee28f935dbfbea5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd3f8762b3d1415b8c7e718e5341915e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/640e3a436f7d4836a9d3f7743a557197</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7487db083434a7783d8ff105a0893e7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55eaf2aa3bff4897a18fce0b095ee5c6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07509a4b36ce4578bfe0092234fa19ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd544d73f13641b99436c41fb26be628</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6c3642685d04da7b4ffb9250dabd0d2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ac2c1923d52449d9f87bc83c352dfad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d04352b50841daaddbe0d115491eac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70df8533138b4332b53a1328453860ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18345b3800f14909821781c77f149b4b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed9c7f2a74074b1d9b5e951a5415c710</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/56701c9222504107a85e5da2368175be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c844e18786084c47a9c9c766ff65307d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f37667148ec4cb394f18792f257a5af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd00081aa2b34662a9508d8bc62e3177</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/22457c2aea7f4580bb210888edd5c207</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f73af62afd647a197f9a5065fa56472</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09f72470324b43108ae7e7447b4c2ad3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92c78aad117f4b569dda0a1b9a29d6c5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33de543233134c0a82da1dbe22224734</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/517efc57703646c597eb932e9f020e06</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0694fa15f3824e5d96ceda45826af0ec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55535820fcbc42918944caa78faa2eb2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a70e80044380456c83025dc0711a7873</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94a70fab8eaf4d1d90f15ab7ca71add6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f97e06dddc94478ea6c6857ea871092a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c87128e82864c39a20708668189c81c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/724676fc53d24d79b08a5e5869933fac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0cb186ab9c546049033954389acbff7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f61f3cb3478547f9b95c94d9e1d20ff5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8743ce5cdb404cc39deb6be4fe690ad5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1562f2315c3c429cb9e307f082c73530</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5eb7011c86b8477386bda45bfd529128</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d14fbf76d3294de0a6aa016d6072fca8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11c7ce7fae23473a91215cd3261cc51f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90d5d634d47546adb3ec0391716e198a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18e1a55cacd44f1293c812c8228b6a46</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a5d13312137404db501c22a0f781af9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a65d3b2d5084d24b10540fe9edae280</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0808ec3820a94b3fbda64fcefc8f61f9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86ee9c2122b34f8c87d1d17ffca98a8a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c438701351b140a4bd90dad5ce866b33</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4756d6618df145368e7b20e384fa64cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfb5407179b94e7da386fed8a267d688</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52acbf4769a84dd5835f35d69f32ba7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eef20a80dbac40e1a615fcdc137f424e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2eca3bc6b46c4d259029b8f707c61525</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c6c6394e9142808af9e2d9d18d20f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f79c8311da6c419fabcd4af63f1a8b54</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/88cbd872a7d144f88cdcba95fe1710f1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5a8d806a7ec486fad54f14ad48cd449</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bca080b6ca654b40b372219832454a80</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a509c5aa5284696ab5c113a4e28f42b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f191d2c6fe145dbb9296c29291be780</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2121e6af0ade46538cfe9679bd1e9236</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51cb86cbcaa3414d9b9009feea187869</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9307f918fc1a4a8d82927851d07faafe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd8acc3fa76c41dbb4019a09a4d5ca1f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3030eaa46d8343b59fe20e42a8a91adb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce8621d25863475a9caa934fab1f88e6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8102ff599d204fffa490401052834f04</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d06890408c7e45d987dd28ffde903b30</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e5cc13734f04273a6c3b4defaf1b5d8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7613de0f904a414b9e2e4b6dea647feb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d254ae37d2442ac97414961734271f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e63c1a33627543fa902b8ecc6195f7d0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e768104ef9f4a599e89d1647ac185ce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7edc50c651164f9982f42712e2b37cc5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46c3fe2aaf304eaea76f9e0e0d07d36f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e8295264cb14e128fe0a8688b6f8792</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c56bf4e7b60744858042c0821f1504ec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9df2600b4bea431c81221f159ea96b68</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/003c64e949a843e2a3f2f53c84541a50</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/173243702cc14d58a6a8897afbaf05ea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3ba5900daaa4cf1b76cc3fcd67a26d2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c312e1ed55bd43eda607489acdef9fc9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a6d42a05c58415aac32f31b0f194be4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6623271b062f4be282357151985188d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/765fcc27807b4837868f79a271eb1048</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24c4e921b9df4e759477792977190bb0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0b8862ef5ffa4ef39e622aec1d6e4af0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45a83c2277dc4a258d04ac249bdde9d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d680404c4a074fe482db77a00760b876</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60f933f9b47a4c83bce3643f15124755</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3483193ff8f9417182d4e98ddbdee949</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fe3e937ceb449cc92985a48e1b39433</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd11ef7c610845edb61c6cc3d25b3f97</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47c5b715d79847c69f3bb24f32596073</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5553e81b67c245e49c152ac460df1c7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5265195f9f77427f9925c1803dc1850f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/00ba0cb2604f44bab609ed6147293087</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9db1bcfa1f2c4a47838e8a7830fcb274</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ee58ca220704f43be2d390aaf40eda7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03d9a245af784278b0feff62b286f4c5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e6ed5c271a74084bb5c7dd726b44fb2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c1479f4b55945038425c3bc085c532a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6255be7b621844c8813b4997ef41cb92</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65449b893d284a2c8374d5f38bf3870c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33bc95b689ad46828332fd831e479e56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c05bc03fccb4cdeb7506406312cc8ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdb7b9543b9545059e70c8dbb64e564d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c72f7f973cb4f5e97f47ed36dfec8c8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adc02e8d0c0a431ea20bdaad93746059</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ba6aeefd8c0491cb498a3c2fc3ffcc6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5f42191c54041a9b4cbb2a2af324336</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/969a8476f3ef46aab7f1dce5385b64f9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7df5a23e790f4e62bc9b1809d11da9e9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54766a4948c440eaae36bfd3a467c246</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d8990e19dbd04416ac27c803498c437c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dded1fdb568b44e5a19be64946b81c96</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/188d602abb6849668023822fbae7837f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9173158992345e3877615e5c3dc1d9c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/95dd1c214d3c4df6bef2e02f81f66edd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21c7bf68625e48128b650aac8d93a73d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b11391d0cc3d47309cca8c09d46f3aef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa777618f6794bfbb6e51cfa26f902f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ccc4075b6e848f6a74c61ef7db36189</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/668c051d7cfc4ae6bb2aac444bc9b1be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2acd9b97b24245eb9739d5b6939e28f0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32778e4812fe485091d573e9cac50cb8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5916fd55a2c146cc8acd7165c2091194</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb8bfdd96cf94ded8233f51215e67e7c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97f98e1fe8414a5c8728d6e6c97f50b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d2a5da4fa164029bf40e772c2c87505</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fec12df70ee43f6969bd685772ac17d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/656882fc082649b4a12fb9b1431ad0ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14f505332d494b31a998bc8f3a183a84</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c7845ea8eeb417e919d88966f80802c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2377e3acb52147c78610569ee462ab9a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b01e9df7be64c23a340f07314835581</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/20e124066a404467855e2bfc4d62830e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc0966dddc3e437e807c21bbf15e281e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/298c360adcb4423a809d1b9a54212a38</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a7a90b5258945cd85c72f7062c684ff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54a4761aec0a40fbb01fd006ccbd6aaf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c35540a39054f539d0c628af78e3ec9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a33e89faa91e41e68c23e39281564a11</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbc5349b04ab49789c989b945bf128e5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0c991b7b4794a48b837124d7919f0b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c7602f5fd044e3bb4139833ef2db111</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21dc54145d2a4a9495a88ad103fa0716</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24df7857ab304777937ca8e444e7c04c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb6a932deb4f4efdbf3c995ce87c977d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0474d206084764818b48dbd8cc3186</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccd3bd974a2a4b5ab882dca3eb0c7943</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44841434bbb34e5a8b161320ad2994f1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ea3fe744f7b4eb4b9516f0cfcc5d2a1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25550efac5034660a639c7225bdbbe44</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/344ed0354f9d4b39bf615b92a0654abb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02bdd93c13e64d83bed11693e3bd8cac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41485a1fdf52495e850f07da5130cdbe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/757be3d085a54278a2117903854606f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/632985dac0d4495cb721ce9c4aef6a1d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfc08783a68a497387b4a75c2d7fe3db</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ffe965e1e344b74a65ae10995620c5b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e22a6873b7bf4dce97877f9d6b7e19a0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16e6fd4a7ad148adb2b5fdebe59cb112</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f454b6d0c2104843b33f5c14513ceb64</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e42067963724e74b7a60b56d23ccfbe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5fdac83aae349cf9554060f7f92495c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d726fe851d7b44c5b9729b797e4d0754</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0672cedff1ef431daff56a1954b612d5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fae7619ff7f4d39b90e6a716b512897</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0220f615e6c84ca98d0598c4e6512a4d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db71d41b25c47cdaaffe5426e57755c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/99cab6c019634d44a1936e752b7527fc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45de508ca7094626b5df5d5a2359d86c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/844b3958033f45739c0e2ba3d83585df</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c924da23f96f42ad98b648c08e173cc1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16b24fa1e78d4a6e88bd90f5c0ad9d5c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/56eb74d64dfd4f19a218b23473a29e8a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33d0e9bba1fb4dc4a6eeb32b924059ed</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/105761c6726e4c8fa125d4a42657013b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7a6f6554a8d64734b5161643749458bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59a3bcbe2715447a9d8b14edf810b92c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4c632e53eb6489f879e8c35a10f2184</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f157184cb2a4ceeb5164936397872c1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40a419ea0e964462817c2368aa06868a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5471563cb04b82a8fb7d5c9f136b6c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4414e40ae0d4eaa9997364ac7f692c0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/13b555e002134be2ac66b616d0339f60</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/782a9214e20b48789d3870b103f84f74</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0f8b60d2f154ce492bb8eff25c03999</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/767e4f84bb584f57878dfb599ef2dc40</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02a6ac49a1aa4d549da9f11bc63db5a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/317024cbc31347558ecfb0a6cf7ef543</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36df5c66ebdf46a69067a9bd5c7ad81f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36dc20c4c4ae4bdc87aa16333a928a5d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e269f4875ba46a2a9269ac60df30202</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b731059142c4252a9a3cabda997da87</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15a6450796a94218b034c2c2cff7838e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/786f294ff8334edd95272b8b43878460</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/287541735771412d9091e5708f201985</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e31744436124483198e29e70f2aa91d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c8c03d00a1f417691d8287ddf254a63</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a57e0b6f79b34586bfaff695b885aa66</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f08d4f09e1ce470cbc008a0770595cd3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55c43bf4afc2437f8116c152ad02ad2f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/703baebddb87428084907d522ea5b216</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a51e140a573414faaa52d64b921036c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66db411bbefa45fabac81bb2acf0bf0c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f9aef9b627f44bd8dbef467e7afdcd9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79cc3fad3d4945669c37701639414d06</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa1e85c0fde14d9ea502c40496598f72</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e562b8f1d6854a84b3c4491b85fe1932</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ad54b0d2dc34cb1896e3a628dfe8751</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e927043dc534e5597e49fcb95fab4b8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8af7d783492d46ba88eba9d5356c1344</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f23120af52844aebc0644a22a8ae3b9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d398096f888c4d7dbfd4ca7ee7de4aa6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b551e74cc484366a22e647464f2be9f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/99e89f47efba42d3a71eb80254f163af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43eacb2d32384a71a84c24f33be582dd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27c0991befbe4b049b44a9e8ead7483a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97987d2d52d44d8091c058b8646065f9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1803cbab3fa484b9aff47e9ff35c5b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49c83ecdc516496f9aeea771914cecfa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8529e1bcf29f4e098c3a378efd06d488</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43f1d1439715449a9bc695bd5bfd8c93</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a448b82f38c4ef98f984cae9fe517b2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e36e26215a484b81a9ce0f63de1f87be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dee4a5f32cf743b5ad5f9217e26daa8f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59251f13fdae4398b8174ccee3d876a8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9582c9ca3e8f4d5abad30c07c4410959</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aac2d8a4633e43da8bfff5ddc8134585</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c120e3f7dd7e431a90a6d3b2408ad11c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4698fa2164c94bfd8dc7ac0df7115980</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4786deba492743c6bfb5f6a3c068d607</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9811d1f8ef0f427bb43694e9b414923e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08a4dc84731a42b68ac3021e808dcb02</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a39cdff8ed94533840df19f21d5f662</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4480a7e09b84c97a3027bbef0be226c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04e7ef3c5c054911a47f09fe9f151454</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29c3a8c4371d47829c3f7e062a139b88</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75bb710a87fc4f579cef6d3412938842</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b47a6afe320449a8fb7b955164320af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e25c60ad3f54ded990be8279d73006b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d05c6d204ecf4003b99619783597be03</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14d17b17de41477f9e4cea55fc02a950</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6558c2f6aad4a1ab82de94d285aa704</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dcfc3450cebf4a07a97113707636a8ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70c21f784dd8471cabc50a752c9582da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f0b30853de2451590f948ca9c521fc3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/816c117755d94e2ea5b0a532d02e8d60</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fb55447093a479b9cc842b6a15df6b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1f44fc742c44457866b480884391c76</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb093fa08b8d46bd859d8b38b0f4ea32</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74049da7c39c45dbb7e52941a42d97ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad2df7132261484e9f69da31ac111f6a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/272632926d0142a699e9c6fce527e725</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c37fc291cf434475aeaa55ecaa004346</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b01ef1734b046a880c83a42502011e1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72e2106ed48f451a9d66f97ab7aeb239</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/611163bb8fa24029876233b57bfcadf8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/882c32b9f7694ca7b5573cf492695e96</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bfaa79cc89f437888c9f206cda645d8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/87ff854f7d00442fa08b9c399fb987a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/10a44d3a78e64ce2bde0104f34dbfa5a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bd50ae4b15349f5bb3eefd8c2a58b9e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ebfaee983bab40df84dd238f21c4fb0f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9cd3c0a52f374b90bddd6276d0ed4a07</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d27d5d7426748a298b2440fe4cd88f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f13f45d7495244c79442e6c39d39e226</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec8055d0a0b74c8d99b4167076db9057</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b99079c69edf4338b6a7b1ec08a23df3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d79ff94615c44d3bb70a23d6a54f1b56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/619777603669453c9a08b6d7d4f375fb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/368b7660a1e544e2bc831593cf5e10da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bf0cad3f3c649618de840332b15792a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c095c569717943c0af016d2c9d426109</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e711574e822e44829c9a15d226c0cc86</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd6b02eb7bd2412ea7ed96767ca01aa7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c329208666794e23864e439161658716</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b978d0a60494c16b562003b302a2e5e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/700cd022ef154c5f8658f4a885a6affa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b610b179156a4dd5af2fd2f77ad494a9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41f0200a141440a3bb82a12ebf1f9b39</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c87baf53ed2448eca7deeae9a282f1e1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df0fcc793d404e439085cf0334286f40</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b1f11d5880742458437ae60217c8709</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b3796865d924c9b8693ad7310858514</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff5f5abbd69b4187a128eb1f988acd61</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e27946fb8a64147b07e299ea46c3681</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/503129530e2442c29fc0301073c7c5d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46dfbcaa67c245209ea0692bb46aa1c7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df593cae621f474c83a94d3e35b32a0e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fad98834857b4f19a9cd9a6cdd088681</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a277e03954649a79facfa012f0f79f0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/589ee535579b4ea3a79bf3734f8c0ff9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a64738297b184857b579864c7d5e6338</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a865a3f25ea42fb9a8e4f35d3f6652e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e4c64133a6840358461e00d685f1a04</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/abe97b810c514099ae282c9892dc39a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb9bf65b9a6a4b2ba20a60606b0de344</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cc8d41b5ac745aebbd4d4e5f9db00dc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccbddf90d9324c05b1598dde7e9f7336</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eeb2f38cd9f944178fc98cfdaa22310a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f2d1486912d40ddb5f3881fe8a252fe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2854ae7a479e4861b0766010d9785a97</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78c784aaaf5c492c9882b5c8b45a21f5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/acc65910582342a9a1e8df8adc10fbe1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccca3147a0d64b118b9790ab51ed190f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/246b300449cc400eb03f380e1638bf7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bdd156c83e114efb8f88787b09cf3e97</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8dde0c69e1eb4721bfbb3d14144a6812</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/838ab396b53d4e9fb7c8bc458e3c6b5a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b9793a6f548b4729a113dc519092fb2b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/720e812a99fa487b83238e818e5e53ca</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e31a121f75a1454b90ce248368c838ff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cc1b6ba19d9488b9b484edb457cb198</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c9dcedddf2d4fbe94c414d10ed0236a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4bfc7dde49874f3a8baf984b2838a633</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/269b630793ae4b7ca8a962935ee7277d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac8a98aecaa84930a6175e1e5cc47f3f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08f489f70af8439999775892db58a06d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e56e769cca649fcaa7665ab4bd85d35</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90380babb27348b4b3bd60d6f2d834af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d85e8f4b14f844d2b2ed1e7a99d1f919</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c8d435896574f5799b06cde11b46600</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c62246bcabaf4ad19be99a29708dd901</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1535055d258840f5ba4a82491ad69f85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0c548e35014a43bcd3493fd3946827</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/497e5a98a7be4a1e981bfd1a619028bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb7bb674a2ba4518adff29663c3ff4ce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b0bacfd274944f6865f3cd14a392f0d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/957175a70aea4375b18c64db32518e31</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5692a02ac3dd493db38bf7414dcf4990</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ba3bbcd90f443249630aa6cee4095b4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74f93f2c3a784364be6dd33d9022659a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b7e8962580ca4459af2ff0a7ecfb36d0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4ea5a693bb741a09d0c268067c88c85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18e5241bd3b3430b8a963b9022204600</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93891989e62845a281e42bf057065c7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/88f745f08c3c4249a1980d115686bcd9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04ed0c64f3e44fa997d6a78ff7ccf895</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e9dc2d1943748948754e8ff4f9d2eff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8860ab6178514aa6830079627bbed8e8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a6247fe074c4bf1ab50a4597cf83674</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a3c7ad7b1fb4640a338a33d7e29f96d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0c43802d06d44c798e12c5d69333114</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/289b4a8c6ead418e9a08d40b9088a066</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/402f19a047354489a8519e0ba03b8b46</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/230b8ccdf4f048ac9533384d8b307e9b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cf6387c91ac4567a4fb663cefa4e41d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42f328b448f64883b88e0308219d8e46</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7a6af9b50ab45399eec246b8a4add76</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b3ff56e4118a4c0b8158281924dac8f0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3b1359e50684624ad98b7d53657a789</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d799f890c3d450d84e1d45e274d1273</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/444c3c99f9054fb098ddb53212a3aa98</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed592f2f22534e97adbd2466ad5de8d3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d6f476bc29b4bbb93011f36e8db7418</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ec351759071447f8df949d3c1c6b620</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce2db3d791c7428b924561d65e95ec21</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2373d56fdad42dd9affa18b323c4bc6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/242f413a71a542b389ddea58c0a76f70</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f775faa34de4401facdc0c44ffc76b18</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/69d0f6d67e334c6ca79575f4a778cf66</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/452da03c9333443a87251aa95e9e6f62</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/67ab8cd70b304b849823d359ea430e9d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/914fd25450a84bdfadc9d9b2a60f2b88</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c638d6a1dbb4421a6b0714c9c1d6882</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea24f5a059e94af7bd47b439f800b3e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8fcd500ee894ec8911ba6cf1ad2120f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef16fedc52ef45a28dd5bd9497c694f7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d8f3cf34de8f4793904a3c9a6c9685f7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/129558bdd478443e9529841df5282dd8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c494406b24549aaa01bfd1fd569b4be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af7abeaa667b459fb58558bc561c02d8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aaa01fd1e9d848a2b22699407c1a47d9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d601e3875b814c8cb1046ddfa38e41ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ece018e4a4a14b999d6834e942783be1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80a776fc481f4da78ff2646f2dab7e05</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/165c1362577a46c4bc3bf1ff99b60363</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/326224dcabc344caa79ef87e0bda6ea0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2e5b954db3847d7a646453c04599251</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef747f30a2f14f3dab3d95b6421bb027</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/588d005206734a33a39eddb6f9166776</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c0304eefe824579a5837fcef84e3a3f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e922b8c12cb4a9e9ab40d0ae6521116</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b7ac005b90a9419caf80f625e8b51ae4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7c1ec50c36140fbab6e468e24cbf55f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba1874dc89924d32a17ade096b9d4e35</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0d4fae911f945a2b13799c5c5b5ddf9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a02f2c457be4d95bcf9546d073977b4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d13c2747d3044203acdf9cae190c674f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55ed7e184861432f8325d89bcabbc103</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/772fda9c01574890af701dcd2556452a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74755c16bbac4dab9b2c9eed6555773d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db89ba17ebd44472b99a18ef1f800a50</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f01984174c4c4b369d34ab71e190ce7a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4ed70b0616e48eb8a62f1fb84db2a23</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ff9ad0d92664bdea2c74f073d45b697</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/23780eeef10646d28a6c8955d3df3608</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e90fe2e6abb64e0684efa37ee6246548</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9eddab8e01824dcb847b4a353fee709d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75cc1e67f06d4c049b5dcab1a3c44512</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/175ee55f41cf4e698bb67ca7ace0b64c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b41be4d528dc43039f1c04bb5463304b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ed0c19abc614d6da2af5cd5d29f7c56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f90a41815264709926d5ea09a5436c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/53d0a6292a90446d8681e6f59f9d1121</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cd36f4a4a3b4807999c88a9a1b1b202</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57da4ae5b3094417bd2832e864649476</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d852e1187fb42f8b9e3ba3c398fa794</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ab95bb830f64626a1b1595d03715c6a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2ac61b1e4a741f5b779b3a7344b9692</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e64f8567f37d4c98bbb0021010c075e6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab117cd1675e4795908731be7191df0a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74d7d67037964242a3889114b4def405</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da6c1ad45d1c4900a4af8256a721955b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b877f005b1074627a2e1a1645412cb8a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7508669a87dd4201a507f3887f7e10eb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9d68fa00c1d4c39a2ed3cf1a8830b50</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/039aa489e0dc438aa58f97f03746c451</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eec3c55e541e4bdeb5d098a7f7fa1922</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f16804c2c82345be9a21125c82fa3ddf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5d2bf13ae11442a9b2a9a7dc980451f8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5200a9b323064957ac4ff4afd6c4d72e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e927be51bd7a45aa8d5c8f0ae49c8550</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/39d52887aa2e49078413e5d1562494a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b65c28fab0c422ead9ef3a0400d926d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92f5e87ea25b494199e93a705175a390</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcfed4922c3748d4891483644e797516</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b425e0315f24bc1ae045d77e618c36d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43605928f7ec474ca03f736744e2b501</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c8a76500274452b3b8bac9b23162d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad6a85c02f614a37acf03c799a23df65</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd8167f15edd47968df245488e6ce9ef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a45c60f7b724f2f89ab1c0b2d63e921</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50331d0c4a0e4ee6bed3bad95cbc734f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16da7780cbdb45eaa514dfc37baa40bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a932abca0d948199e01c747ec3a0621</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05e821feeb984696b157202b451bd11f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f40b3a295e742439d24f5141c71628d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c85a22c93f4c473b992b6c4603ccf50b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64f9f3844e0f4e25a8ee845394fda500</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4fe65817bbda41be812980f3d3eae631</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9d797f61cbc4a71a7f7418b50022bfd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e9bbf3d19674e789272f80ed01b775c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05f216f8fed84c599e2f5370167a47d8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c5762f2522741728ce428b86ec0f9db</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d35e7a795da45e5bc7a4734f318d5b9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d5ee8e3ed554e6db42e215491054399</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad45b50c80c84f659a4d2ce9f46cb305</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcdf00f6fbf144f08dccdd293b23e360</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dde2bbff9a23488bb8dd68241b826998</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7225e25f27ab48429ac4afbf42fce339</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36394b3e87ec48998d26cd6c73981f5a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f29bcf7039144a37aca5f1444843a5eb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0f39ee62a854dfd85edfaa28e3df0e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f866d76f3a5c4aedafa6b417ffceab51</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f411059fa6d044a69a95bcd49567b8bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e42ec1222934150846de2df9b4dc826</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0c1fe51a51344d4bfa0bd08887fbe7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1cdc9d2373c4a3ebbf7e655f029caa9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed74687ae2e44fbfa83e4d6d91d6f8e8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/58562eb11df54b01b01dfc1fe7b8038d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a5c515e5c6245efbc73cba75e466fec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/607363ab5cb9442a9c44573a412b1a3c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/045f0f121c4049e2b99b70d976baf10a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a46ec74c201b463ea7ee7c3821bfb632</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a20918f4e4b54ca682a6e72bcdd7d482</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d363989990c94bb499f57679135b2ea8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/235078577c57400fac732c0fe8502606</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe6bd2d3a89141c7acfcdaf63a176b87</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8ae9b11d706465ab8a040388d236d30</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4b5da9a82944518b3ad7c99a2a0a3a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57f65565d6244d49afa5e169f96743b1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b70cf31ac27b4e5184b3d669c38468c5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04722bbc5191481b966db824b628fe19</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5796fcd8dbba49beb6e497d30d5fa87a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e3ab8a0bf779424b872f7b2057376f85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f09221f49d14442ab585846138cebf9a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fff4cc5127b84a81a6f79c378923a93d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5fc3a24850944c7ba0c26587f9a7c01</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/685daff8c52d43b3bb6a841f2ef6ffa1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/369a76d3115346fbbba495aa033cf95f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16a58bb7de024e7fabb1338103dc1180</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f525f56b0a534d0f9f643c52e0f92b09</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c314eda1075643d299a6f22b8b7f5de0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ab64ef16dbf41a4bfdd1729fb4c8aa1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/739d9555d2d54d879a07d563dd3afaf0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/271c6255ce9c44abbcf2fedcb10b788b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4571042a8644c729e2cda3eafcf0bd4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41c37948f9544f2bac06d9a9587146c6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ed18f4822b44afeb1a3d34dfec73c91</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e02de3ab43a340bcaab03dd98929f328</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc304a3f1419429ea826ebfc0e3c3bb7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed80e0387b184069bf545af67765406e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6cd912e5f5b94c869afb733dc3899bfc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f8f966ab2cd48cb9294d8fa39aa9beb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a2a5a96ca554ee6b99109154b1a08cd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e5082c900f14b13b9599535e5f3393c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/081ae318de9f4347936faedc33e7ed4d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44e0bf5573824d26829345aae4b2b2cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/124e5a49d29b46348c29b1693922488b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e6a6db4e27694df4a7e0a548bb813de0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46090d8b6bec40708e371a400a733777</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f7254191c5f143f99f20d16ecf5b7af6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f92e4f0df17c4e09afebb5881637fada</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de5e505e1384d4fbb882ff28bd80e2b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3636c50a03fa4ac0b0af2a0dbcf9b15a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e6fd6fcfcf64913914738fc61188a86</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2328ded5ec2d4280b4d5d09cbd214f36</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03c55e4e5d2d4ac7bc05e1187c40cc0d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/976d527a6e344859b9c4d7a985aee05e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab394595e3de463898a435ec15e32593</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c512e708d9644ab384548235875035af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14c7492211484d7b9716c4ba3b18bdfd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5a08b927a304f008c25b7411def3a93</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ed5dd862f254e79a9b160a1ddde58ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6bbbe867fa3549e89da2ceaf2c968b00</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea07b2d9a4c2438ba58203577eb642fd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be8c0de1face4e518f82d7003faee97b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e759807b3c9441b09363c968965361bd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/10d4802848374133afcf217151a4023e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7be6e249f89403f941152b029e96a31</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34eb6224c3354f3fad34eeec28847ef2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b25b496cb04a43fbb39f7f72bc937f77</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adcf13189fe14712ae8e7412187822c2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/192254743d124b3e8717d5c1478ca75d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/080a2cda455f4f0eabce739399e72499</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8622cb23ed24c71bf94fc5800915cf3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41081a2fbf014facb9afed552a52b9f9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ee7febd4ca44321985980fa8bb28034</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7af5b5424011432da52b582d17251894</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/554aa472172547968ae9e166f0a93233</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a3b6a3a89a449aa88e3e3203b4db23b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f6fb2190f49d4bd694543597428adc7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d5f76175c0449e383f8432574ddfbdf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8638dc319bc844c0b17f1de1730239b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa148c70632a4146a298089391339681</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/468aa4c0e91647cea205ea4478e828ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a26ffbffab241268cab0b67c20fe219</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba35c7cc60244e618ce5fbb2337836f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e62afc084c74590ac04d4c19ea49d10</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3532783079c84a188b36d5f45e5c33fd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f236a272c35b4fd784a6380a0310452b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c69d103af6ba4f238e8320922ea7521d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/990d7a5db4fc40229dde1cbead78a37a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e37f212fa714b3e8e0984fe3e59f6df</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f15081a871d4462b9d3c1ed2d3aeaab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2a75b0839464ac0bed5d7565793f9f3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29e51e4e4577424a838bc15de3f06bf6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/91b6b0738f6e4cf5a191a3bf78d8e3da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4030e4abda704e5ba9b3a44699d85e2b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0218423ac84412db4eacc3df38c0a6f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a7a425e71fb49d48470c3a30cb2d544</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07dea0f78a154b408d2391f68fd494c0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8157063005dd4d3b813d4364e71e1609</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d5e63beaa514b15b6c4cdec183790a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f28a76edff043c8bb60923380d34ba5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b177cba9fdaa405b922b2c4bcd137dbd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5da322f1e4ed42ef997ca7da9fed509b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52b84644c6c14220b95678ad1f22b14b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db5a9d8aae074f27a83802e21c940b01</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b09d629500ec42c5b2a261f390a87aa3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bd881a57ffb4de993fd5bde7273a91a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/964e3bbeab15406d9d52f47bf21f875f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/83f1a655ba4c43898ea260cee4fe519b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43dccba21933494d84d06464bde6fcc2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a7a16f47681469884d17a101623540f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3181b22ecd7b463ba8c4d9bb6b2539a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adaa5899214e40fb93add13b31511ec9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e15478fdb2549e7ab471ac3363b5016</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc4cb25fc6fa47cc991cb5c03fe23098</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1892461a6814f48a556f293c2775f8a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/626d5a0d3f6b4f8f8ff7c15376e22298</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e7c365c2d8147a4ac9d43d49f9f2d18</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59a76436fcda4a66938087e0ba06aeb4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d566b4ccb137402c9181a07b154b6a74</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38cd7b8a95484bc4b6e6baa72d9c09c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cd3fedc02b342e68a1c88edac9c5379</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fcd3e46753024e1aab6077b857753444</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c3ad8bb8dd7d4ee89486f90f08e93903</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9f9dfed5f724359b41c427660bb5a9b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/126e78409e4f413988d4fb345e222023</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45a716c5d76546109f1de3360e99b3ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02d780bfb1f74288bc8840828c5684cf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b30ab9ec47584c1dbb340885eabb80d0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ae166c465f846549cbaff3bc8cd5cea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/166b6cc7115f4af28cce51e6cabcf943</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0364c6207ba4a02845119c504c16498</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/01e92d085f6b48078afe676d6e3213da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d897acd401a4475fbf8563ca525ee7d9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bec1070fa664264a4b6009151d30b51</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b994bd8e932474ea4f1e4bf37316972</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7adc46ba71f443c87422a195dbf8444</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8472cb399f1840ba8a667e250c000da2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cc2ab6f19f94230a1d4b1c724142d56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d65a594c69e44b33adce90e42302dac2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1c1ae5da7724bed93193b177fc09e56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/71364385123e417dae6a52b04b6d6979</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/004dfce52a3c425da984b30ad78e84de</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47c1c59190854b088172f059e1c47b45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f64beda3149c4c6fb0ff33a2f9253de6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cb364a9ce7842e5856f8f5a39a8a172</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f37b03d20243443790cabf22587b4701</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd7ada818950453eb9aec4b7a84c1821</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/909ffd13fef1410199d4cf938994174e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cb20fe1399f40318b0b30690104dc14</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32d852125e30402695b8d3157933cd1e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2c24468bd5c45cfb402e2fd2db21772</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f41869ecf3a240f5a2a2116cf97fc40f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d56f0555f9442fc8fa0e664221da425</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be223255aa964f26a3bfb0f8824fc72c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5b0116f371140cca638d27dbf66f23e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/835a54fd4c94412e97f9e2766083668f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d06c34ef219a4323a86f55544bcd9414</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b34cdba58e84098832fe119740d7ae5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c6455d4855848d4823a18e38bd5f023</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1393bbc0b05c43579a47cdacd1414877</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d68163b197b44a79babbb4c311892ebf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54400a92a3004792b7784afb9e0eacf9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/966e4dd8c1ea471798252ddb589124ba</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64926019bb9447acb0b155f2e663431f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4291925d69774cb9bc0733c3e51afab5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caa0bb5f095e43a0940a1db869804714</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8480682b06c8430b96127a4e557a4c20</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24b5e61a477845ba8e7c019a4fc17189</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2734b4cb8379472a82737d03a6ee547d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d84da1000274e2ea5c31ad39edcfe59</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25dbee10e0b64b259188e74b13d6adde</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e19838f7c8744a89a6ac6784e3cbfc5c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a79d5d3aff0a441a903205c2575b2ab9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38b4c58021aa417e936b98b393117caa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9fe59456baa948bdb3b3e93498948b29</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f91d4daf1cbb430998e535d7e8e053f8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7e388ee5e5f48048cc6a1b20196158a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dea0b851fbc84780be496c096dcc81cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f14a50fb9def4585958d6e711630e48c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16e2931f62a94786bb381898b1ddbf88</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/214f4eb6378c4265911a2de085696338</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2949a37df0814200ae76cfc36677656f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2e739e2f26d4601a94a3510a9dd7c6e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d937171f5054fa2b12cb1ff95a661dc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc0870762a284219805dbeaf616ea490</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5487f3fdb95482d9fea8d8b2426a580</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d57ab5e54744439d9742882ca56b3099</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b90d5aca6d2346a78dcf15627ba004e7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c0903ffb81340198dde279560a2515b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b1cb4796fb040c899d2f6ee78bde4a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b49e9236d2c74450a17b5a027bb9bcd1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0cc49c4371a6490e9adcdd96b3b4b26a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a252919218564b16a9a6fe50eeed421a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce0a265ef3184e5f9a2786b5e4f168ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c2c6586e5684ff4b47b92b4bc2f07aa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad033950a8c549e98de4ee3ad669c088</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c905edd37e02415fb8a73479fa580b45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9441858ca4b4977ba52cd29bbd47766</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05d4a608bc674efbbc9478e72eb58d61</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce076037a33d4e4498da8a32e69bde0d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb92334e54b44888ad1f56d191f315fb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b21bc46f0b345a095539f77e5405866</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5e650cd7c24b27bd00f0157d2ff7e6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/769e16b41d2c48ad916216f3ccd324b9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b3d7bb0b6b504b2e92611681e91f6b68</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9130099f21aa4a79b5ecc1654a1efec4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4209fd462334f2ebe84c4cddacfeaa3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfaeae8e4ced435db2e0872e0caa63df</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64ce497ae8e94d648aa4c847a72a8894</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/827523cbdb074f31a3b104ea1f090291</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e2a8fa97794942a1929784590e373fe9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7bc95ee90e544a9bbf5f35138106daea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80e580c3d15148d89e503e99219cd483</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f999d48d6fd5488fa51765bc1ca3b01c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a98d2d138544fc5a2e040adb009aa70</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44d9812c6cda41b492b0df908350a024</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16523005c1804895a0c16cf180b529be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/721cd6e90c294bbfa6fb57cc245f10d9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/589241009b124398b307e71532ff9e9e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bacc3c205ccf42a0bf959f4ec54c15d6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21aa9895401d43eb9934257948fb8f44</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15e9a51e50f043cf92787b25a7103e97</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8114f9b333124e118558b02b7eb905e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08e7dbf301a14c6d8d3eaa398cb63e4b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a63523202364794a2c98bc6655d7b8d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d5344cf7c8741c6a30fb1a894e45a35</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a68736d3b7bd4f06a638a73bb969356e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c60d3b20458a4d5ea2749bd167af10be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d13d728b8d5c46ab8979c6ea6ff645ff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce1274b8378e4ed19810112232433528</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/12264239aa49400785737818be5f7dee</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5e9fd519b3b47a8b4147bb7729fda69</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e3e33f17b5040519243a2c2aea7f12e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed790e9c5dac498195fe5ce81d871aa5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c19ec45ab81540e78045d4be2e4f7a56</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19e323a8dced46d39c7aca233ebfdf2a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c97572f4d7b47d0a1853e3f183ef841</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/400b5708e0404ab1a3f61c8622c7edec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d395a410fc6743e0a322627cdb5edaa0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce77d4298297499ebfa5765ea5fac286</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e2a07587adba46e59a4fcfb5b4d2c3d6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/169aae0251814e00bce4aa148d2c1f0d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/437843d196b54b6e9fabf467bd2c3a2e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa0e772751c847ca96f8f4046e4227cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85d5c3c01175481498972d0e6c900ae6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e23f02d15bf4dd2abe2a40c3bfbeaca</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e0e1afc2f374a4385a9a59e205154a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d18aadf9003493da72e5a26f9ea5f18</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f64c67ccabca49db90b07d4201d2a2f7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd474780156c44b6b5371a8aa3683003</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5659380e55964fc3b8efcd40e532c2ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7593dc8864af4116919f28618b195611</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5aafca18fdb464687439584420981cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a22895866a34e2d989d83a1f33ecf18</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/83db1f85b79a441baebd67651f15b90a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40bb941e38c545929e6e409327f34159</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/968064bb43e940ea91b524600a11a0e4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9456137d54474170900d93bc1d14def5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f8d68ee7bd8465dbc202a204be2236f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce6c8169f7dd47a380b28902c1c50b03</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc6bbad5687944478204a06eba3fa4cf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/68ff6ae3ab7240a182c8224d8de809bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/779b48b5922b467cb86b29474da035db</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a12bcfb5943a4dde9dcc38ea16427216</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a450b114a2b841fa8eab78e71a32d1d0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/012d89f4d6b3453090aba086c457e45a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2944ac05f8574914a2ef291831558e09</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/374c5bc3b565466698c3d983e941261d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2befd42618a4121b404b352584a6acb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02dc0c12d9784fb184b0b8a0e2428211</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/622d46d748d64469be7c96f94ee51e71</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24678509d53d4f549cb516e7e2eae23f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb9b5dc5011040fcaf943478b8277c61</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1f9869c7d73442a8e421c1ba859b85b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89b35c824e14421d99d0cc8bf0a4b022</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47af8f976c70464786bf7e885833d75e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/749bf62800674b64954b074dc5502494</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb6ecdb239e74a23b7b0ac2884509c31</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d810896579246a49a14e45b39a3bb36</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f7216dcb8230422bafa7b19f4c7f1e46</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c8bdbfa92954567875b7b32546b665c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50bb400a9aee4431bed877cdd9ab3765</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d0899189519b49d0b84d7cbacd3a883b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5c656984d94018ad3a03394a497d2d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32b7b97ba83149bca3926888ba2b2429</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11cf80e155784caf8239e3e34acb747d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d36ed5a94b0649a29f15dae8223516d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57a43395991b43c591c207da667699c0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/637c398171754491a937337c769c5555</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec22ca0c65a2407ba77127920a9cd493</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d755eacb2c14c3e8ea133d4025c70e7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc082c106b7c4684a0ff461a071efd8b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a87cc888783f4c32b97e605cb808eca9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdeeb2fedc3b4317897d709c648f2857</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8610adc5ee7743f1ae98255a8281cb38</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ef423f261dd443b9db9047f2758b73e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4c38ff09a5149b28131f4559015c0da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02f30e840ae74c9d99a6ca10ea21daae</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a208cb8578f2463daca0737468b81e06</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3dbfa7a6ee254bf1b838eaafcc8a98b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4bed6885e2c343408062e42acb661265</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17483df91932485b941ad7bcfe5391fc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93885ec72c2249b28442c1de9f0402a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d604a33ceb50424490f3ad52a11bad1d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fed7697cd94461ea0bb25bb0aa2ad18</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/729c5b4e831b4f229b571e8e4073dc7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52500029b0b24ebaa9acb844788a6792</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7b4696edbcd45b1845b7f3925cbfa7f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36c8f1218d5746808383704fe53e2e3d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2d102fb95bb4dcfb5fb6b90fff39b64</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48b67df9af574a97b37de00055947a08</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41f80208544c451bb4ba5b1b29bddc57</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f113609f3f9b492d8d3db8e032a8de77</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41edb53691d8470dad0d5306bce7adbc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0277985d2ea04662a7bd70fec746aca7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b0eb67aa16846eba3989b29bbf05a91</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e1421ebcf494dbd9975476ad91f4c04</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4e91338e46a40b598bcc3fe2e325fd3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7edca6c31b4d4709943ff5a166dd8ef8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e980747546064a048985dd9089121f90</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b80cfb556f74eaa9e8590193f80bc8f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ce641473df84813b7dbcb1c62031b67</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1bcfb62b02e4d4cb9566138d0e312bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c2a57b1c9a34299ad98b2b633ab8e64</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e351796789884a96bea3b23ee1626576</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e8fe82f51d9452aad84aa5082aab5c3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fbee286282a45c7b804879eff33c788</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5308ff390b884247b601db0ae4c7bbf3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0fc814f7fe7e482698b34e85f3bd4c86</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c5db9013d834a72ba7af65a07f2d742</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0b3f611184348cea16b3bf7320cfe70</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b7289ac5c1e4f259040771bfbbeee06</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c579b790badf43e8a736d55384647e99</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44070d9562d64e7b95acfda651f26119</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0eddb8043a884ab9b0dae7e5e59a4f2f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa45608f76d54c8f8dbc7d1405f6a01c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b8c110ee5fc49298a84271690b8e15c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fbd6afeee9f4edd9aabd657aa2008e0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb8bbb2d04824bf7825b3ce289d6cd41</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3febf31453384d7384ff5490db8251e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe5f33f80d384a2b98643bc275f6f0cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86733093b7034bc5bdef14766dce7462</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c68f7f39ce33469e864375fd2f3af250</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c1aa91dafe745f88545eb3b34ee8f51</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/673dd29c44884fcfb656830270688675</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33ce965c58bc41e2badd3bc239d4a272</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7322a71587f144cc9ea9425cefa99e0f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f55af2992c4d4e379e4f8901490535ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28ff84a741b549e99ffbf42998305761</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e73db54cf32b42e085697ff32dfaf08c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5b7f6fe3d8748fc80665423b93bcf70</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8a6c914da3041d6888197c7cdc34ddd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ced751fda437438b997da3a9732220b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e40a0862b88746a287728940e5fa32c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14b397fe7b8c48cd936da63306923fe6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b3401090abc4f1e950bafda49ce31fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78c04b996db3444c99049ee538c32274</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18aa5108285f4144a3d095ac9e436692</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74e41eefc1e2412891ac9a7039352f86</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2b9e03cbd68466d8cd142ea4f0cf99c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fae6c244a39447582689af7ae3816e0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ae171681c60249879b0b757fef189a4f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b70a520b6fc7482292df2821a9a5b163</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d258333b3924431987af20e4184d843b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61f7693e79e1499e97c81271bb6907c7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe7bbdf3255940e89bf44ae6b07247e9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df8da4408d5448c6902a7270733d2ba3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fd6f9a5946a4b888f97c2ba823bf03a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d48e0741aa3a4311a8f20f398e797ba9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d155776035d45f8a5a9c1e262086075</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/816a926104f44a8db3db6986899fe4be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c8b5ed2f58f4835adb384cca074ba29</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/897b0416c00b4ec284e65123669b7947</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7efc4ae98db943f2a959fdc5d0f72876</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/756959415186430aaa08b0be377df62f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b785fdb31764e3a9532d18cb586a68f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0169b1cb51c540269e8c6a5487d01f44</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a074bc9c05a5486d881a92f96d0da27c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/028ae00b0ce64a1b941c43df943707af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79f9b1cadae34737ae10b11ce1cfb0a1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/583f2a0c51fe4a4db6885a0eb5bcbc16</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ec433e1dc054355994a553512a96e5b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1f7cff55686428386105199eb979974</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e97895d9168a46e0b0ba7af1c6634035</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37e4308e0b0443a2bebb8327f6cb3281</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f9feb11d43a047649d438468359c38cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11180d17c4a945f4b75683a075cf33ec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b498eb410f847bb8f043af9b6d590d3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fe4d4f0e0164471bff92f3a66946afd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b81af0ce7997499586b8cc9e05c7153a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf9ef29d8f5d481c866fd7007643ec6e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42518e71b2044b4c893f2b50be067132</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2833476599f04fec96e99174a5701d2b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e8c59a73342430da1d0a086d7191b4f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c1f8a9d236e4e988e496e7dbbd394e8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a31e0c8cbd749f396c3812d55b1029d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8dcca44f5a3e4ba69d1c0323f47bdb67</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a6aa45273ed64d6994fb8cb37e48a984</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b1afc5722fb4ec58f7a44a4092bedc1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb550a700eb84ee185f678aef2a3a6ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/044458d96e8e4d7eb5e7a7a571c22883</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf4279e0073e44a8b3823fc49d10499e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ccee67ef78a488c9087e1e9f0916e87</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57816a26f69f4c41b996ec983ecf8580</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47aae414a39646efbd32a9cb3d5dd5da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d3b4c327e154326ad7bd7b026565da2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6540b343443e44aca8b3aa2e3d3cd755</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5ac9ee021ce42b49572c880465bdae2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/263e3a042b64447bb80e2b1a6ad0f916</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da5d12d1b8a84464b0e2bb51dbd8945f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70a8b8bd234e4fa7bc3a6ee8bccf93c4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3dacf5c3b00649928d1f888b893fdf27</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3858e499bef344759d5fbd8c2b41c96c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7af04cab778e4e98a511ba1c68696718</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51b45bb2306c40dcb97810357e10c7ab</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ea70cfde5044d4c9dba76065d8967de</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c5d857fc38c401f8091a8d988f05bd1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ab8b3553a7546569a12a98674059ba3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5ee6b6acb5c420dbb64ba0b9886d313</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/31cd379fec454155b181a2d964041d6c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ae440d2c68f40d5812d7165be60bc51</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60d2eac371f244618000a481606d77b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/31e30e3271ab47cebf2ec8e1bd487cef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bdcb4451f4d84dadad313144be51d99d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40d1192f673e4d77b25847054473af54</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1eec3c782394c40939092d3b097047b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac5f44aee6cb4e0f8501683092db98a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/76ba0be7f9b948d3a79698c9584a8779</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea67bf461f6b439083a0be20bebc3228</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05c3ccdd84b7476bb2a6c3081606c473</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43230220d12b4984b2f9eef7813b003c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef33b45729ff42f2afd06d4e215eb9f7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72061607b1014a60a9cf931fd02df6dc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f02aec55202f4420b7683299ff20ab7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e3f3f1b4049463aa03b5478aa6c687c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4ddf244cb8e410c8aae9217f49de194</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46c0126dd12c4f70a521752f96171f87</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b0417bbf29b4f0ba17f29e9f88022b3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4e5d6ceeb2a44ca81e11e4b99ae9168</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3d0a617ebd541cc820ba94cd70d4294</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45d096f0c2bc4ba18c00a77c7d4d8fd1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ecb026e04a4431aa57bec43417527f9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c4e6ecb737e407a83a9ef16f54523a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e574bb89dcc43bda3696d03e0fd648b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/342db9feb87a4db7a01b43f488b28620</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15a1a9e85776451c88deed5bc84cb938</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/711c23d821c14f1c8573138c14a64c92</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28c317f8c5c74ef092e184d0bd6e1104</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92d3cf22106e43ccad52ab31d8b20625</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d8837d103c544adc9ac296736338b951</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d622cfc20804d56af73a73c4d23c38d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ef939eb5e5c450d9deedab1b951c500</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/924b79ac360f442cb1102e5c8793bb42</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5f0d640748e54dbb8a9b8542104f8ace</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e033f6a254394c17a69ecdce51c7f5a1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b22d8b845afe4571abfa99d7deea2bf9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8da375303d2748c8bb4f235b136a7505</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f808b7f3c3945e1aea27433f7c155b2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e84ba4479ed0497d84b2df55b8e506fd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98d99e182c134e519f32558778a041b8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c067f89bd98846f6bda74a0da9903e70</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af540bb2bff846d3bb41f54c6cb0d1fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9b6b48d7eb143e28749e2889ff5f12c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4c19f226cec4ff8b8e2666d869dd02f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/053cf01009c6425180102f82728d7027</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d1cbfd39eb547cdaab8c05c82436269</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d00f9e8f2764496994ab4dd4fde24d1a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11f2bc65f10047358258b76b62cfa338</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c065b6dd2e694f8796758285d29247e0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f37363b29be4d23a778c4ba3b41c34c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/76ed8fe853074a19b94eefd2796937b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/00fce6608fe64b3cabd0ae1fbe81fdbc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/066182003b054a8788ed6a88068db3ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f71932033af4555b1883cfcc9227049</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdcd402fd7b241eb951065b5a83a31a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4703e94a97e40caa44cca82dee4307e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c5c224ec4334cdebb294d44e141169d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1e4088eb3814278815ed4b347371bc8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c8efc4e24ad14357b40efa6be40ad894</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d95cbeed8eda4bf6931e0086c07f599a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1b9017033d74f37b3ada759a58ad4c9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a86cc83ee643401399daf6da376862a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19538e5e822a47b0909051f46390e3ac</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4099fd771f4a4481bd504354cbbff5d6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d61116b8eb5c43af89abdcb8c19a1181</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6082f7ff78294603a5f5bec50cd1f75f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24013dd1e7204460853442bf0bfbf385</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b400acb5c1684d01b7c05fe912b1b052</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ab360ac307746e09e4a062f1327e560</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7f973d8e8ed4d44beb09e0023a965ef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46572b7470b34e739f3868136f6fee32</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7bfa7d8dfcc94fed880411415969224b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42e8e0fa2b8544d1bbe2ff65c67eaa52</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a987adc23340418ab3eaa74ff962ea30</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5349d5887deb47dc9e9cff57d15a442a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40fd2188b83745bebb4441597a0ea42e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/486940ea093644519f3ae14f1c41af9b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df398824348e49f3ab3d52a569f790f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/575de60d1efb4f3b98132a9732e95b63</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55337d2d8d484579874eae9f1b9e2d9b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97b94e9c0b37411da1182b5554ed1e2d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/877f44816426434c9834c9d422ba35bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0fc588ff39874f078d306d032caade30</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f7e96fa55c5447c98b053cb7bb66571</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5d6aefd9a2e4bfda582b63584d47ff8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81175a1bb7c64ffd8a0e276387d9031c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/904dca9d33f141cbafd2271e7f7609d3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b066e4af7c64cb682364e5637e7d4bc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7de66c99ad3c40608036d195eb80bc98</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d7c34b7be3549edb999521858fbe27a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4a42d4201724ec88773f9f702f145ba</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc0b9f6fb90343ef97c9e8856da5310b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/304ec18534b04548ae79be8c174fd5eb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbf0c2eea0ac45f1a773174a1b1b1794</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd1dcc311d624732b419429eb94fc024</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34ff4c57ec2d46a0b77b27b7447e2d15</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b7793cf2ec24682abbf43b4a548d4d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e608302d73b4f4cba5af45d2e5d4e48</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c5a7a20ff674a8aa583007d196ebbbc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5d80b88593e04e328e358344715dbc14</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cecfab954b5645f6876eec6911679441</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a12cc6d1fc1443f69dad5aad3e390aba</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e765b4cbd6e4e83bc9ed231a8c2560e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c27fadf6ac994ef4a29de880943aaae9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a09959f69974fcda7c60edfd4efe9af</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34a96aa2993c47f885ee7ddc0ffad035</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a2325b835424ce0bc8213df39a73c33</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbe1c24b83df4bb6928d5e9b1c0f72da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c94296b3ad914c629403a4b9459174ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34d60c2dd02f441dbcab8b0974253771</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19f3b946c6c84feeb7866a91e5015d51</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/985b8653b546482ab526e5f205977a75</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9556421c174740b1911deb89c000d449</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3cf861ff78cb44d2b70130bf20b45f16</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d006daf18b614b2293f98c64bc4bee3a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37b13bd444c14d9f83a522151325c420</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0200bfc2c0240ab89075860c4b4195a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f28fe48dbdf480bae1f486e2a287886</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bd8b878d67447d5875ae9f913764146</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/58e0af5d462e4e0d975ca0c0679eb6a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a3e1e98a71e4069999c2a2a2d5466ff</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc8369a9da3c4d468e2a81350a285291</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d07aeab9a614c059670b066e902baf5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7145b1183294a788895111c5bd35540</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50fe743c7c84424fb454769fdec9fd87</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17ecd6f465e8455a9d7a0c50d5fe4eb8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf5ba7d2f078454ea0d25870f255619b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de78d942f6e645d7ab88f7fa397ec926</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51e65cdec3894bed99573e881a1ebecd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e724672d15d410cb6596a0a71927fd7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a12cf4e554d4527a57524a5610da7e0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a81d3a1d377c481aa886ffea612054b3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e638e77e47348d1b40a1f6720422834</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8745837138e74aae8337efb3c6b67452</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/915c7b4ee4e4496ab275f6390a76629b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4ba178e86514a5990172cdebcf81db5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3aa4bce654094d94afee465b903a3658</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e952c2a0a22444c8cfe3cb8ef362c7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1176d05eeca848ca8bb0fd6229d8472c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de71da7dfe44a41a90121930c7d4158</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c7a964551ff4135870698c76cf43789</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da97ee255c5a43e59803a34ea8ceb324</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d5e1a8330a943569e79a2cde1d5caec</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2bab549f25464624a8732b2dfcf18149</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/975051c37574423fb9740855f32e09b6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/340602ec4cb04db5a4047e95e225777e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff570791b93e445d9d3369e84c64d96d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb2cff14e63849479942f37cf20a6e31</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e50905355674364be399902e7d069be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59448e1eac374a848a373d95e23630c3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bb1842ed20340c3bffd4124786e76a1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8801d750c8ca448286d484f0536b980d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35e4eda0a92c4b0c8e2e916bc24995f4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f88c59b53398461abb0a2419cc726094</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1b66308971c420ab149eb181bd7cc99</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a18d5b1c06f47dba4c2fd6ad9772c66</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c4112d15d2d44ec8f695b99d7e1e5ed</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4224d9613c5948a781eb99868abed69a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ca8c07d32fff460583b8f6526f369849</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e9b2c83809b4e2591e598fcfa5cbfb4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/747912a29e174f3586242ef7cd605cbc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b24ab760691943f19eb228297c705835</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caebc70abb7b4cf1aa96d3c8f0375075</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/200d0da50e0a4f6bb488f18011e4ac60</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb6518005fc24eca9395194115e26681</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7950323d10942bbbb7b39e86c00c978</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc94a102e4334180974715267cad2410</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ceefc51883474961b10e2e1c390bb153</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48c0e0c5c37c4fe6b6f40eee1832d7c6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03b548d043654af0a9a5c5b7f96f6f16</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f56692036859489e9564f36219a818f3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c290975031634ab1bf07b4e6084577bd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/820eb36a0b51424a9f7a09a13ccd11a0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9464a8450f9b42f7acecf0c5cbb99e84</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a6fb6c7298924ff79a516e86756cebdb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2fe1cd93e2a4e16b151da39b4c3b8ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad74995a57574c55b9a8fb925813c422</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5f0c5e395bbd4d80ae6e618166a0ffa9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c35c9fb469ca4df2b3d38342292d256b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d72af9ad17324f4989eeac4ac6a0d336</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2636d8a5b5a464593b96d5cf1dfffea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c967fac09d1849dd93f12af68d94e59a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7f6bf4effa4f4d70a1890d1161f015be</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff5adb36f9964280b266c386117b4547</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/043e0c65eb5e4ce78d7102a3799f835d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b10d3d76de146feaf2ad3fe900f159d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2f95ba409944b9e91401475a68f6be4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2ae79734c7a4e07af72195b999377ca</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/753f37e828c34a88b960577d80c5b003</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2baf8c9992964f71b1b9bb5e6a5baf3f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05bd6057527d4b458f6b2abd7fbd8d72</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd7725d8f76641d49a928e48eb461442</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dca3d9d89fe44638910ec2975a6d3101</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5452cf6879674fcfa913e995bbb98ae3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ee8fc51cf9944c4af25df40115d8abb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fc86830033764b67b706c9e3cfd2d510</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9998fd476883432daf491b624ffc45c4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37e3c0214bdd47519279df6d6c78c535</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7b4b0ab81844b7ea9c7d4e9b267d547</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bb5a31d358948ea9f16f5b4520af4c6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89851664e7af4ab1a2dbb82f2094bef8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54919cb31ea145d6a01b4272748f742a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a32a845929a84c0190b5c6f48094796c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/104531e7984f49f2803a2d83e0087acf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/191daea6382745d981a5970d70b49308</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2552ac1019dd437bae75d1d3b3fb4f82</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63bb7ee1765248ea94aa266153953f3f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ee98c741b37d40d99b4f9c00a58ef8c5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38aa825abac241e9a8d68d4cc75402c6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d686efc044ee463f92ef148958804a44</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a06527d937d94728a3850ac28d9cb7c7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59ac9d1e24e14c75876658621f563bc2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65da2a9aee074236a2bf9c16b96ad5ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/335166f3ad524537969d5848876c7941</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e66ee780c9914db9ac2297e83c496475</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/201f0637a92b42a984a4a9fb9972cae1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09861b23abba42f6ab56a21c4053d9da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d09dfad0bd5c4b1398e3ae90582f3271</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/192e0a1a420b4cc9bbf22f9f5bf97b7e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1660f7ff31348a896efb217b66aa1dc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ebe912e6b1844b0bc750b8ca6e3d439</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a80264d5e35a41c8bd626bd105a5b92f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/285af0281e8e4779a3bbfa3b1447bcc4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90e97275b4c24d20b5dc15e598f7b065</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c112f0ea8d0d4dd080a2c40c0a2dae7c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c726d8cea044ec0969412997d970bc9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/397cd477bd0b4b6f9f2f453af1711c7e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/860d82edda7c448f9c4f3553ed17e687</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a21bfe6edfe44179d114045bce2769e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2950bdb9fb243389813e1728b8b576d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0de718148e14b708200c6d9dd9cc1ae</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61116c79fc62472cb4b13af10abc4b3a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da29568d3f4d42f391bd17141f7cf3f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1021334befdf4b0989a5c3484d870c77</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41b9e24b71ed46f195562ef891b873e9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af253d7cb2fd4acb8ad9bbeeaeb7cda5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/137db27e05e34609aba8f5c60f6ce2e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0bd393b4bb0452fb0a18f07112ed17b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/551c2da5d23244249fa4f14d7002facc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de7b4c8862e4b23ac8cf5fcbb6f14fa</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce2cde1de3cd4aceaa4762d8f5a698d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/844a4c9e7eaa44b3ab67f70b63270508</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/30487c8e93cb48a6a871dee61f906ed5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de3bdcefbb6a483188e1fc32ad9de0ea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8fab97120684411fb41a0dc282d313a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4ccf42c1df842b78cc5524b3d2dd101</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75a15b5b4b784b4f979e2cdd30ca9b58</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fae7505bd26a40718bcf655259d65071</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06610e81bda1452ca018844aa23df943</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a402a500518141119256053126509722</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3cb2be499ef94ea789c364e14b06c9e1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d452c5f4049844bba3cdbc4c33d47083</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9dc65003ead463eb26676c6a53f3ccb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a60d493157b46f684e99dd833926cee</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de2150ba1bd34ce79f84e7f0a03cd1b8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9f490d9059942e5ac5b2198317bb5dd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f1d8ff2d570445cb94b939c4743de21</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d2fb7f6593a45f7a0d643687896c7a3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/736134b410db4d96b9984504fc51555b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7d7af6c63bb4042abf8330620fdee4a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d0f003ba66e4fbd9821a5d100baa9da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c4f5f10bb3449db896888804acfc09</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc63d5d46a07433ebfd5929a803962f6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db79137fe50e4d5f8982058b7222ca93</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac19194f662e42838591749859533739</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/283a33ad42fe4cecbe5f5f42cbbe513c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9816e6fe8b848ecb85b5cea2bd8603c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd21697e646b400c95e73c3d86bd61e7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6be493ef04ff498a89db5233b882b4d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb8a8e4b84a148b99ce4485449765da5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0ad2a8c96b46cfacf85a57c74764f2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aeeadc3f716e4faeaf2294c48b4f504c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d73be495b1404e7eaf5b00aad9496b99</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2eb98dce5cfc439c9a51f1f725abb2f2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/903b828bb5b149fbb318ba7a18d34e4b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/224ec653479c4e9cba937af59cc14a45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db4323dabe754472b8d4462e51e414fe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9f2afd2858f4c30a74264e67e8e51fe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38d183ab133f454ab82144f866ffa102</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/553bb1faf37e4e5e874be1af740d67ef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2fe4935c8c3148f3a2fe6b719ba07668</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50ed109042dc4a63aefcc2411a0a8098</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44cb1a32bdfe4a9fb70e7bffeb472735</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0efcb12fcb0463da3dc4aa1063bb0e5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fa30040c9aa49d7926f93a122eabd98</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b08223619703400d8f5a237a66586c4f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a19969511234bf2a2fb54c5b7c09dd6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/949555b077bd468ebe07f6330d42cc08</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6bcf6ab9586141799e694c3f3e01c2c8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ac32651f8d442a589c921c47cd9ecd9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfdafb43ae4c45f496cc129edf712770</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93760958890c41d994cd9c3cc92eaaf8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6662c73b87a47699949c15889254d69</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2a362d1fbec4ed2a772206f7ecb8dce</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c0c07533fa047869987fe9e7dfec039</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7064cb7eabb4ee6bcbedf4eca1a63d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f86c7613be02401991d4f6427453d5d7</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c45490ec26c644ed8de00c17bcc3f502</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0593ab92b401404eb57208cdaea466b4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b943fd4f8c8e42e58128273c69fac7e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0dc852694f4e4785a7e1b5cc76bc38bb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b89644f953824248bcb363496d0b8a68</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cf297c0ac59459f9579d0e672220c60</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e20f28d7442b4ec2865217367b189ddd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/082b1da6201c415db75dd8aa95d73c1a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06cfcab42368448d90778e163ee6a33f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e3bcc990cff44fe99770bec260882b0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ededd13c50f458f9ea27baae9dfdfd9</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/471a413884124782a3a6df3457da19ea</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c907782c261e4073b7f68acd2e2deb9e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37fc4d68943642aaa6478a3003912f85</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7377d0d0458e4d308469552318cff405</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/905ee1b40f02418f8f228ff697e7611b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d53993cbee847a6837b98e78716ccb1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bf74d8fe3d840cd9cebaafee3d57304</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1009fb99ec04b4fa03065d5222bc1eb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/39cea04e6f684d11b41b13d4b4ed65fe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0bff11f9ada54229a7c8e11f79a93984</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1043de17a08e44b2a762147df29fbd9f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49bfc48c590a45ed986908052d5d3392</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4abc6d53778b4837ac3491725f99b27c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9293905015474b1a930675713239213b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2c804b85a9346f0b9ef39cea576a66e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7df24335a0604c66b095c8ee10d9d152</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35609f8e3a9f4132ac2819299d86a9d4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a075b4cc6844698a54b5ebd7b28efc8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/625d0982f3cf48e4a9744c69dd3eb051</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/721812c294d94edfa82950f5a72aad45</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7546ab418524e1ab2a56c87c4739b6e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ee359b8d90f4c54ae5be97930d4c70f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcab36761ed5447f8ff1dececef610fe</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a30de2236e1147d894e167c603c0e3d6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f7de2d894ba4f758962875264f557a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fde3fd2c9af34e8ba393073006c716cd</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37a3959ba7fb4818ae09af757418d701</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f5161b220124f479842817434f130dc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63f278ffd4834388aaa58eb7c11b276a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b146c71b9c784b46b1d02b8a3ccd76ad</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/443fe1da11d14b31864bf807df42c48e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7a7b267b3b8d4770837d323bf6ad507f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e761fc32494474d92df63c015164130</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e9a14eddd4a45049ddc672a0cdee093</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65a91c2427854da09299c948eda06739</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6003f1048db2421d9b2ab3ed89b1e685</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c0324ee028ee4f608dfb07becf58f042</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa367e1430a3414982a4eb6b1d36cf5c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1cd5a1db9a4b4cc39024317da6592f0d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b40db5f260c44e7a97e0800732404cd4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a6114a4f3bb4384aaa264c013fe7eb1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a09d04cb70264a66a4c60111574a24a5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/710fe6b28d374d9b915e6c30346dffef</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48627e0d399b4f7d96658430b09bcee2</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c6454062c264961830c094cc582eee3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd677f64efed4070a8cf009cea147f35</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aade66ced5e84ff1b19c4fe233a1be61</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a9fe9872a954614a6362969bb878fa8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bf83b7b746e4d559df41b0e9638e894</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5244d21d2fb147bcb2bf7aadf11b8940</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4df9205e6dae4cf3a139d4ccdd0865a4</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52f063a160a04909961146833064cdb0</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4614873001d24a258f7ea449c9a43aae</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ac4ac13e90f4993a77d31dd9216aa7b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b64b61647b5440d90c2f6475394063b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cb015061d9b490a85a05039ed5240cc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a803c773cc4e4de88bbb823f4c17b435</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c76570b639674b66ad34751a655fa9f5</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff39dfa470f34cf7ab0913c809f0cb8d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c999842aecf41d4a4f646897151b138</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15035e5ae21a42a7b434ca6e4009f554</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/133c86ebcc794dddaa7cea43033a2b94</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6a569c5d5a0423f9dfff5d684a51286</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc6db42ffc784151ae022be80602703a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed426cb808e544409cbf60882134c470</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c25d5c4d911e4146b5df51dcf944811c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b93b822a9d743c89800f7b741995114</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/517dd46192e1483d96639fdbe132ec2b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9d9440a8364f4affaea942c405cb6642</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98d1590e42d149a39efb99f5b88a8936</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0969ef63c0b6463ea72f892b63bd7a21</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4b74361c1f24ea4bda54c7fe228fe02</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25784bd9ce684393ae537492ecdb547a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cd668d13fa0427f93d8d32afacac1d1</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15132fbd68e541e5baa7c14b5780e16e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94864fd043ed41d19482aee94a779804</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6039b26634ab46d7aecea79298e760d3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6dac6fc6cc0d4ce99d0807cc24057191</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1886103af89d45f2b1567078bdfb799e</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d498a392289b42e1bc00505d62a0595d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c0977d7c7c14ae0bfd17918eab7183b</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e5b16f5811043aea72ebea56310e11a</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6905fec1b6f94bc693d18f682ce06adc</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed6eb09eda0a42fcbdd667f7d82fa79f</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4dccb3085a147dfb4bbc4c4734b5e55</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ac0d9bc9f3e4e9eb584c4a9cfa99239</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ca67c3f3caa42089038687267db89da</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fa27bdfc8404236a2463e8f2ba940cb</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/682d491ec4ea4fe6b4fc25b8aa3e79bf</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52eecf368af84e048f6e04d0fcb745a6</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5904af76b10e40afbcb7e7a20d7139e3</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caa92bb53bab460b81d9e60649741921</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4b410b494b541218a1dc156cbd22872</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/338b7a0eb5b941db9cf819f61e77ba08</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/13e3f9466f3b4ac6999d8952bfbf9847</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb45bc08d7224fa18330883b9b9d6b7c</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ae3159a9e72b47f9b9113c360bf1123d</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf182ba41adf499697b5d72756f53fd8</loc><lastmod>2024-11-11</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url></urlset> | ||
3 | \ No newline at end of file | 2 | \ No newline at end of file |
3 | +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://www.canrud.com/</loc><lastmod>2024-11-21</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://www.canrud.com/about</loc><lastmod>2024-11-21</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products</loc><lastmod>2024-11-21</lastmod><changefreq>daily</changefreq><priority>0.8</priority></url><url><loc>https://www.canrud.com/contact</loc><lastmod>2024-11-21</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products/detail/06acc5111c654eb3b2fd06b0c677cf28</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e84872cede9b4805aa0a0a6b60ed7a76</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e424e1d1ed84c5c8b2c8ecad9ddebb2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09c6ee2fd4764e63a6f65c4e0858123c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98b9a0a517f94bcaa21c9e491858ebd2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a89e241f8b014389bbcf0732df66ae94</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ac816a9f53b496783cd34ff0e3e9617</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adbbc24922224a04ad54d6c22631b042</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2163e072f1a5430dbe49edec9792b5fb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21a63eab4b934d74a056d848791d4aa8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24fdd0cbf1534caf99a61c5c4ec9a190</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2697e5e7a45549b5a00ddbfc6bdc6803</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f516a2e5afa4886bd4f71cbb4f014f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/341e8caa66b347a69cb8723fe9dfef9f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e80a2b28f2e44f5ba701be6e3492068</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ff24c3ac0c9465fbad55d6156925883</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98387d7e2a5a4cf3a8d51285c49f352e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9bb0a128f9a14408a94b7df49b78671a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7f8d4bf2b024f6aabcd8e08586aa336</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35e9376e598f432eab78ee7ce12d13ae</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f42f1045a154e8b8830269a322de6b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/366c2761f1e64d63aa66ad4364a413b9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d67cfa3b15a145c0a8531b5e891bfe83</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80ee89ffea50426d8a08cb15098dcc4f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e367a40dcdda4e17af1fd6bd521a0bf4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4e98e3960884654a408f380efe2dbc2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b43a487090544e86abc02694716b631a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/480a343f8ed24ba2be3796a687b50e9a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4e82a4fcbc49425a9015cffd9b291147</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5156cb107b154827b51410107e2657b7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cad6a3de93244869a323a6d15b9fdf80</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/570c3e72520f4b2d8f2b3c0e347725cf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/596701b0dcbe40748276600c23470707</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45217410e8db4d7f92bae04906294f37</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3130a91ac5a44804b6163f7503254d3d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c84fa44d78944d3e9ae3e06bf4e3261b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/219f499618954865a9f94f8afa59f1a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e7241f1bd064dbaaf157cd0ffaff39a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d64e8f9aeae47a08c62fe8d432e599c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d2c7cccd4347789f3f44139da8106d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f2e4b0973884cac8388c62976be04b4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa262cf4f6824f27baf7fe158d02a6cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/68ef6d2dd95741ea9a5b50e52ff1f646</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/690a6647dc6e403891b069c7d7ed77ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19f8abd7e72946928e8f5e725d753caf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aef4c0d60695484eaaaea0788bf486e5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70abe7efabd24ecc9e33b62547c346b4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b45475fec933445fa49dc70b9ad2cbbd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d19417613ae4f739bc20089f20293f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85329d7a8a6f46ba9977dddd3c90e6ce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92ef8e9a452642b0a55414976027e105</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ef7b2fc0f814c4983053574d66eea0f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8aacbcb7c254469abc6d4ba97245b97b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d99231809fa4dfab259e3efec86cd82</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5f652db0a864b35836dc0ec72b6e1a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93066e43cde14293a2d9cc302485ab6f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f3a9de818c644c8085f570697019ef5d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ddcbe7c1200a4e24a1218f44f26ed20c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e9d14dee39245c48af78540b07a2054</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ddb131b374841f8b175f6f80d3a3f53</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c52bf93b503b4c0882f9a63c878fcf37</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e94d1322d134f728008af49aad207fc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/834c4c5edacd443f9be29c8b520dd84d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a41aa97437741e5b40c690590042030</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c8f491d0f80849c4a5038ce345d86566</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec92b18b5a644b90b7ebaa689305ae9a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/989bcc5cd11d41c0b908aa804a625e78</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdde037ba56b47d1a3927f26b67e42b1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac1e4475bbea4eb786a8661b7cdea40f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4ae23d47b1b4bf9920216dfb430c782</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5881375a58d44c7099fdbefe7ff81e0e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b51ab5680e54d949bf6e5954ff10158</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d1e0beb88c54795a183ca988d9b31e4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de3516740b43418aa47e50afcfd1a1aa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6c4e08d42f146f4917c0362a48ef5a7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fc4057942ab444babba817cf9bb02d67</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9c860c090cd41e1be3823471fc882f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ee8bb4e951bd4cfaada77738bce630fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d7a3059455049889eb79422900a7a45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed651833dd794755a05c7cc5488ecba7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd2402ed35b24505a2f6d4c781cee35a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b638f093db14c7d8995a38e07d17266</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4cfad14a8824fa7acef0264e0311447</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d8a019dd4b6403db789180f9e8109ee</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f564361a878146189ea18668d916eb90</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d09d3824e2a64e41bc207e0f346a710d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/506442858ad04bb189499cf734eaa7de</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/198f57a11936417d96181bef2f1b424d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74bcacafe88b45bcb2b341dc6d082d20</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9edff2cc4123432ab4e62b8837dc3f4e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ffb70df939b34a99a186b42d0378ae73</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9787647d30d4c0c99f4beb49adc3979</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81f89a31076f4fd18e883ee190d194cd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d65df81681ad46feab5cfc99ff8f98b1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/87d2e0573ee347c599db901448ddd812</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/243450106307444cb14687fafc99ff0e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/882e9fefbd6e439ea9a888640bbc59b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cab8f478eac741b1948fb0ec169bdefe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dbd15b84f4bc4856826efb0b42cc1b1f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b91c94a62c749d687c69b9898031cdd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94dbc8bfe9ca4ac09939316e8b2531e2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/573a692988e3408c9a3e2fc39458784f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9732435264b42159ab93c19b2513e28</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bda3026a2bda415886b7cef0250ac9dd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/82e60bc3a333444bba68f1bcad86bebd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb58241c40c14055b316759cbd2183bd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1b58f95073744a088fad09436e09284</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f207449ea944a1f8a4054b6ab6eb1a7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0e96412d8b04ef5b4a6efd264c0f977</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3adbf61ade6640f1815cd8b249f310e5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09f3937d74044e8b84a98b5323fcd7a9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61a3a00d0ec94513957be40386310a7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18220ae10c9540c597ee60e15414d47e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b5eaeb792dc4a54b6ed191e435881d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d85150bb5e364ce3945ec949889df22f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b6208dd900249098c3f25d76f6c7004</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43b9a96b3f3745699e49741cd5431332</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/423188d8460045b79ca02bc53911e21c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03c1b3d7e3414190969fa5a5c628114d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb4e18c42ea249c58fd2c33c992fa911</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33f514be5a80463f8435d13fb27a8fec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2417f8cbe8a64e929f52ecc54b7f4801</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1854c2a9d4394535b1fd75181f23fe7c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf13202e494a4900ac8ae54c1e15886f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd73857206374f908d0419767a4087e6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4caca389a7e4990995c11d450242359</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e9b8cf6081746d7a19d305ff0716a3a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86edeca16424427cadf9ef73d8ea1781</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a5369533b334b93b150534844a85924</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed6e68c3d91a45f393e4caab9b48017d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2854725c62347b087d9c37390a7908a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a59aea4e13e4e549a16cca11a0ca3f7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc89b9347e5b41f2844a6c5bf4a9bfdf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c66960a340b546bd9c3ed86e86de5d77</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1cee57c1608f4267aa892be39cb69952</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd78007fab27487cbbd223b5734aac21</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc6cf238bda84b5eb984572d473ff9f5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c556b86f5d8a4ae4ae8c0f162ec6e9e1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a82034a97a14018b129f2b4e32b2f9a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be68c71a37a74e2eaee270707e7e8853</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ec47c927c324ee6b64c4419612fa9af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a88dde549cec4328bb2c8becfba24d13</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27815c5f1cf242c5a6aa38da87135aea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b695051331341b3bf82ed39724df353</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26c2438d1bef4ecaa98bd5dfa58c8f54</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/67320a4a82054ea49fc7e5eea8eb7f5b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af489525b1994864bd5170742f450409</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c899b444e9564a849897f7e10e680482</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1eef20db89134883863bed00b1b8b1bf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65682a687d6f4e5c9be9d7a6c0e537ba</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab04191266654f658af8394da2fbfea7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ddad72d1522463c94df79e433f03507</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/348ba51b5bb54a15809f2bf598fa3f2a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/62fc1a7764814408a14d5abd74074359</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de986a537fd54ae6a4ad549cc5536a2f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2688369140147cf972267be8dd9c09b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/20a32f14345847c2b584972fb0825c77</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51e378ab73814225a19ccd51f33e81e8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d387cd9a19a433787c835259cab88b1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7461f6c8f1d94cdf99cc5cf8112bd35a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/969943c90e414f5292613e1256b2e8c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf48e8eac279473cb879c351d543ec05</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ca94453cd9f4b6e92659c47c31ed284</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e00efbe470b45508f575923f97eeb38</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb25e4bc85ac4b18abbb7398f430809f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e8f1e32d801464aaccd895b17ecb3a8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f211924730c407389d7fd9f2c62ea4c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5d3855c1194473eb4ebf14eabe37fe2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc2e62fc3ae944409404007abd8e6fb8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1102361d4ee34a9b8deccaf408d1651b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a18bddaa0f841c0825161911fb71a1a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85d50687f6ff4ef89ee4d919c74497d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ce01f99c9684cecb8cbefe20034da65</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa53c9122fce4ff29aef0dfa2217f736</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/896aaff113fa4d9f87f69108a4961bed</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b50f443189714d79b8bf905f4de555c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a957efaa15fe4b04a85e8390636c91b3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bebde05f00b347aca58d9f4debe9d822</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29c4579dde1e4350b158d06aaed44f38</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2c1bfa35fba42aeb1a750552e7d9d08</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f960c975be24548b9c1590d82c245da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f742c972cf64fe1a56c8048b80fd57b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08fb06e27a5341d58321741993c21072</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a43b256a74774e7e86577fb4e04d1951</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7eb73b43915a4992b580582fb3c92bfc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd871308d8624d04b8d86fbb4a0672bf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51294f4ab9ff4675a8c85c42e30014aa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de0d80c57349492aa3492cb889aff4e5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92b86871011e4bd4b8fdce0909cdfcdb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fec799b2a6940fd9c17fef64f2b85ca</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9cdcf563e5b4b54afff35cdad42c1af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8105fb71d10d4adbb0c41e775c4651e6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28c6bcd34caf485f97a6d11e16448a41</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b324838eba24a26bdfb67b07df94597</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14c53ff26f614b0f8814eb0d86375427</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7ae40217bb24c809950c00a9a97378d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7f412eb07331465abab6360bd77cd908</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9a66bca6b8449cea4563df023bec50f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bba6722fcb31463abd54bbc79c911dd6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03091e526b714979ad2a67b497ed92fb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c0d4204cefa42beaabbd8fe2d0bbea6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26ba6f0ef82f4239a584c0f81780843d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dcd15213692749df86f9bcd327f23ce9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d178dc245a5641a880628e03072ce341</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0bcfc443daeb4dcebf1df0a54c26b1b2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be8229be1e7e4292b5b169aaabe2ea44</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92dfaa07a923499bab390fefdbb8e4cd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/919a3018bdc44ca0b711bbe86fdd102a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cfb654a4c87d4fc0a1fe3a014245252e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2256157cfe445e698d9807742f10ccc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86e07d94ec9d4756bcfeda97bfe9ee55</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c141c4be122483f83348f46bad7e591</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f429b35b489a452481e0ca5301b1ef2a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a888204bdf9e46e0ab1ad98947238096</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e706db42b13d4732a70b2c16b02ee27b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab692efa8d80427ca3180f6bd5ba1014</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/95289d17cb6046afa9328767a36a777d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a8000924e594fddaf6a22c9bb0d4bda</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7dbab396e2aa49c5a21759330118f023</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b8f1c381226464a96916f9deebfc82f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33d07af7872846098ed1abcb4f8039f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd15ede92a774888b9b1cadaf3b40c4d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/133c090b6904415495d71a7cd3c59e21</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d5c23dd250a4ad99b9fb907e0602c85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6edfe7d3cf24d6baf4b23dd56d10eb6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cda86eea0434ee480b296393c9e39f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6663e4cb001d48a5a5fbbf5bf89aec08</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3196bfe6e04b4945ab6381255f984c74</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc9cbc33ec3c4f1c9de0788aa9ab7fe0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d01a0a01123644ae8ddb0aebeb4618c8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c62f8b0b63004ad3b1c88942617fbc64</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5352bf95b504d1cb03306a89c4d6cfd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81ddeb6f48d54abeb52c3438dd6e586c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a2ffe03988645da8994cde50a883923</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f3be7ac087cf49dd99de9b1cf60493f1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdb2a46bd4b4434ebe16e52b02b6f2a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1c53e58da9546f3b8fea589f4ddd7f1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/313bedb8f97a45f082afddabd611f4b5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1b8ced3498b4c5f964132e1e64129b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fce8a8890914374828cfc61007ddd75</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1800be2ace504ecc9e259751d0668801</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e85a00705884addbe94e2ebc4188290</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e49313994d994068a06b324ff4e3ee2e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc5bab31f3e44c569a79b034179f2b2c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06ee6155fa98437b8459dbdd44bf03ee</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9d0f2dfd400a49aab8c7c170eaba2635</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/081026e1174b48c0ad333162d5864539</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/669b3178874644db88cfbea18a3c8b2e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0bd3c3623e4f1d8ec7f2b314b74dd8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/274ab70adae844c89d60444d8a250318</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c9c3800d8724f9bbc4029d55e5ddf7e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d45871e7027e494f8a0d5d57aa99d45e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9cdde0b7ffb14aa3822d44c379a4bc68</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b94461937fcb4c2994443e3c3f69126d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8fab0b0a8ed477b926d0dfccaea7201</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/609fc979ff614b38b01cf0b8262c9354</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4ec6d78f9c0408886750e7183d4c3c2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9af2f1e03cf2403ca482471fc4bdb8c0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0eb26ff17c2e4cb182d3c047a5967094</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cdf0e878e6849f29042df32151a0fe8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6be2b0307e344c6eb00d580e41b6d6b9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f4384112b8644898121778943eb1c7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d7901abc027470bb4203a766978e370</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fac437bdc784b4aa443da33d6aa49db</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66b0f2f513bc463cb546a42fc328f1ba</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8d6b1e033db4afa9db0cdc52abad582</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a3aa20cf4144c3286816acac8fcc252</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b6ebf85f06c4e128a9e197b87c225c4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7cbee4eb23249288661a2f496b49755</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fef495da55904aaf84d58cc9ee5d96a1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4588fadb8474b7da378a56913562102</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a702ffa7a568493b9d2be08904ee5dbf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5cda75153e94d78b668573de0721582</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/26ca87bd078448e5be4f27b76079efe0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/22664edb0daf422e99de4667b1556cf6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d78f1dc776d4ff888c2af1e4629e435</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79f217778a05433d88d5ea7c9bb4c991</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e6232b32dc2d40e5aa2cfa77e6aad533</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f58c2869d5e84858ba823798d9d4c05e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea99ab7ee3f2420ab0a52ab053d4265b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3471ea51753e4dce88c3b0eaa3332c45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b590900e7bb4b0799e8fe193f587ed2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3fc8c3d05c4c47bd8703668fbdbdebac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e6ce5e58479403d93b00031fbc4fe3b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7464247609d949ab91f363123e2b2749</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21d704ad039e4d689e01081ad04bfbf6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfaaac5f5b0845dfa53b7feba67d2e50</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a21ca25c5f004443b04a24d8b557c22a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9177c1ffdaa24d8db00cff43233c8dab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3fb79ab08e0a4c0fa58839c465dab6bc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59d8c571bbb2417fb7f2ff830ca217a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/398d5852afd84e048a21cd8b9f5e8549</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98ebf7f87db548ada4c1bfade0ad432c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e939686d8b6434d89035f6b27a0e199</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a96614473ab482a96feca1648dbcfff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db559c4f61a4fbe9e3a61c474597a78</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adaa9fe5f9ee458f986d50184f6ee31d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5663ca67d954b679f4ec59096d9fb2f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e35c2c4252d49d0ba423d268755fd7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd8ce83fc62f4a998d801bd8cb8f20bc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d72a468baa24a7db0164f6c40284ce9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1e864d64c734c78bc6604ef79544220</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50d5de86a2f64cac9982c2a3200833d5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e77f33b796a94688ac3e6d0656a2c8c2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6e6b3844bfa44e3b6da39efd2b56f02</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78e3eaf48062415b94f22a3de61154bd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/850aecfba1234cdbac5e6fdc297a1d30</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c4cb53a407d42b8ad904c41d34c5218</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8815f5815e4046ebbf466e059e9d5064</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d4601328c2c48fa9ff3a0eefd94424c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a032d598cd046eeac1eccc515fc3fcb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03438e31f28848d49cb59a03c4c1832b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a684495afbd74f449e1bb19bc5d8baff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/299f8a88cbeb4b4d8ca9393e0d55cc1b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ddc77b7e713f46efb357205a780806cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e3341de6ec54bbf9ff814166a6e5a76</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fd0989dbdb243d3845e3b7be09dc88f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89f48cc0cf2c4fd78534d8c7eb5061da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/299c87b81b264dc0ac18c4b9937294a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90393493359347188c07e66e6ff992fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d622bfe604be4010aa24b021dd87d1c2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ae079f7c867411083b0d8b859f21a8f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21cb7d90375c46a09391f6efc4e4878d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1130758649a44a7b8bc56956b241dda</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2be9e15b099f48ad8d2ec6d7ded52def</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4485b04645f94836989623d4b1b7d522</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27c1f9c2ff5d43acbcf85cf890b8bd00</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a129db49f783431f8a05b7f5a64ea655</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b271a2524e554e2cbbffe444d77594ee</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5b6c734c66a4bd2b0fbb270205e35d2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c308d116fc64658b01efcf6d3838bd4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/569dd0f0ab084e5faa9df8a3014d196c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51db661cf15a440ba06c3ec78627ebdf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7aa4dc6b605d4e60b60313fd20fadab0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ff29cf0acaa4462852d64b3a9489cd1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ec452155c3f430f9d04e1ea6a2f2d3e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66962effc7b64d82ad6a2485d6fc99fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b796076bc30a4365b8fce52692a873a2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65e0d748c6654b0c88f3562b22cf5b1e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90d1488120ba48cc9a652f950e5c159a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46574d7bcbd7415484a01f5f7308e578</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d86e9f4031d4c8cb586829099f53d94</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/107ec73f62cc49b88e1bf47a37a525f0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/890a23cb626a4b55ad7f46716628f1b5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8779afc345ec4beb93da3818e3949309</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/542087bc610045a787112fa706df99d8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c3c13064e6d443f6afe423747c8f27f2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d3ffd79799994476b5401f2016a4e8f2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63ed389cfee84b3686f78b2cb2c15d9b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e16d636abd443b5a747369957399a41</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e83843645c574ab2971b01c0a67e60dd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/923903c67daa4fe09f300cbac5f088c7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48f8337424414ad0b0a99fb7a7da6c60</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c35407ccc5d9425cb34600184b1fc0d6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/56ac5194c0314335bf02d6fc7f611c67</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d52f757bf594229a428b5bbf1efb26f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3628ea36ad04c5591e23dca4d2e390c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5cc35b11f0b4008846d18bb95348eed</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c663c9562a04350853933a9a0f43c36</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17548ce8bc8a48d3816882bb6f4022de</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aaddd6a0c14f4ec79a6d9d6ed6fc35d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72c9b7b34a7e48f2867d4aa5a30f2630</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c090573cdf9b47a8b5eedfa97826b83f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54dc5c63fc894febb478f89572c760c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bea1d6693a0e4624aaeab48e5ee8620d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06e20e58871140488a68e37d4b4b1d95</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfbe07d5f39c4e5db1da576a68d57842</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4690f3f7adc04d09abf9dfc02d92b0ce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6946a37c20bf47379fcc042b4ab9ffa8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/afd1c9ba23774c16b43ba8757a65d390</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8791b4e790d64a2d8515c86cdd987342</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/edbce9663b2e4ad6a3306b668e658219</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79b6b202ae0d4d05a961281b5eabd6a9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f26d991d87f94a83bd34f450c54e1324</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60efd9ca515d4d11a55595db2947b9b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a29596e6b4c4cb7b72638b4a560f452</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c227f417c254667b0a1afafa359cd2a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7fa5414d3564bb59298e2d82300b8f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f1e88fbde9f47d198f70609451b5616</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86a05e1d8c1442fca067acba1842f626</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03d62e552c104333894cf54ce072676b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5091f04f81724753bcd7d86b454353a9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15b39e808e4b417683c74e8b117788ce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1be84da645f846edaee4229aca580e3a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6b3195501eb4e7b85285618f4cd61b7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab360906a50944dcb6c1ebaed9e8b8d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/177a81dd7f964c108e3084b72e95f495</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/321dba0a3f484ea39a7fa5f18586bd7e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba69c74187494aa7922f335ec91ee49d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2b07cd00c6245e4b39829658f908903</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cda171bca2ef4439b17e9bdffb04bdb6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b69b04f0f917427c824a578b2372cbce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5f33c46327b445ebf9ad34b14ac053d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0037fb79cea64b07a2e3195476c201f3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2959134e6db247ad842cddeb0aa7b051</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e61c9df199254fb4bc5acff6e890bd40</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d6546d1bab24c3aace41ce006ebf85b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ba8d74a4a2444429eec1043b319ff47</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba9634763ed54b7e9dba1e14f8c7ca3d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9c86a18a9db46509af8643771153994</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d51a3463d14484a04f53a9529b350e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e316025683e437caf7ff85fbc3bb8fb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/710394a50cbe4eddb73a18eb385aa375</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf5a7c106b6f40099620e927f006f383</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e008b2c7f85435f903416a4c124a7eb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db1462e1ae04fb693ac298e22d2f79a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f473d313e94b4e0f8ccfce908fa5a725</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48e265d73bd845da8836c41de61cf98c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1188d23c7841497cb67a37b1610dfc32</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/921863bf30074c5791f9d46164af778e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b517a0c15e7c407c82351fa293fb7020</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90c1cb85fd8b4462b746e963df894d72</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4948d095d6ed40c38132b27dd1642289</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0edfbd32f4d849e7ad91bb930542da92</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5614596f0cd04b078e0e4b6d418aa7b1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e775681f406472f850525210ac86afb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f889b2b1226440ba126b78586e829a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ca944fdfb3547b7a3056a9ec128c770</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e1c0b09de1e456fb7a334ea191f4d11</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8a28ae3007e4cda90f6e949008aa295</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/255241448e9b455baa423551dfa5267b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c42bd2eace74a309937bb7ad9b56ae5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2814c5d3c474501a27eef381dbe7ea8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50a3104a610441959d075f7fce02a63e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a1e1143ac614588b2000cd4cae290cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b402728264f0465a9970061c2817257a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c4dc8d766a744fc81343812fa04f7d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/428f576cf5d84ffd88491541d06c82f2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/489efa16ced54234b73c0530f879fc85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1b84c346dac145efb53f13999419bebf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2efe3a4ffe174ca094a6d9331c2cbcdc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07dc5723a1564f0997017313cd9fa2f3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdef9438716448aa98527ee4ee92370a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/671a3bcffadd450d859594de1831e053</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9f682898b4f45f2bcb0f72a10f97407</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a68c7a89eb3f43dca8dff0414f91734e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/445bae7bdb294cbd9831460c6098a6f5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/586b1c8d21424f45ab202d13f4d2f03b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b332707566ac492a9b7e0c6548a0bd0c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/445926c87646498d9be3f4d97bbfb874</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ff5d91519de45fd8e99b49d77f5a0ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e549b92c0b0e4f97b09a43b31bf53233</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70181bae88854c448709d2bd94ddfc8b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f96b12d22e67431e97b5afa2544f7dcd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49533b89951e4028b8a6b5f4a13b16d3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5e4307982954c8999401ec8edd596b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7eb00991a73414190ae517f096ce75b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42f1450b5c1e41d6a4be1f28c3208630</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5046dc1426349fcbf9db98cda19156c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a5a4551634e45bab5a3c8c220792e3d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09eaf454da684a05bb286662f70d4441</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41ff244e86424866960fc8412d04681d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/249d52d9e48542378f60d3124e943f85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f62f3f42d472468ba661d30ff75e1fd3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36518772aabc42288a37495ac64df1f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1b2b055a53004f6f8dd85f5afcf96fe0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93cd0870aab442bc96117ab2144afbf4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3da375f17e394885b31519b45fc5da38</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/512790dc3463450083a0ef4cb4a16cfa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c350291d39c6445680ee31f36af530b2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c240013e3ff442aa8d8a77992b2a9b12</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d7a9437838d4e718d0087277763f2e7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f22f12fcf48462c99d491e1134279d4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86d3d558981e4066ae591d28d43eaa58</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06e3c15c2a2b4c27a0bf49db10e69739</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1308275c155346c4bb22f05ffe4e60e4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05e16bd19b4e46078f83a31a306eaef7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0350683df93b46a58177d252dc0e727f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bba3ceae70b34a498ee28f935dbfbea5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd3f8762b3d1415b8c7e718e5341915e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/640e3a436f7d4836a9d3f7743a557197</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7487db083434a7783d8ff105a0893e7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55eaf2aa3bff4897a18fce0b095ee5c6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07509a4b36ce4578bfe0092234fa19ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd544d73f13641b99436c41fb26be628</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6c3642685d04da7b4ffb9250dabd0d2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0d04352b50841daaddbe0d115491eac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70df8533138b4332b53a1328453860ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18345b3800f14909821781c77f149b4b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed9c7f2a74074b1d9b5e951a5415c710</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd00081aa2b34662a9508d8bc62e3177</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/22457c2aea7f4580bb210888edd5c207</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f73af62afd647a197f9a5065fa56472</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09f72470324b43108ae7e7447b4c2ad3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92c78aad117f4b569dda0a1b9a29d6c5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33de543233134c0a82da1dbe22224734</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/517efc57703646c597eb932e9f020e06</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0694fa15f3824e5d96ceda45826af0ec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55535820fcbc42918944caa78faa2eb2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a70e80044380456c83025dc0711a7873</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94a70fab8eaf4d1d90f15ab7ca71add6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c87128e82864c39a20708668189c81c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0cb186ab9c546049033954389acbff7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f61f3cb3478547f9b95c94d9e1d20ff5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8743ce5cdb404cc39deb6be4fe690ad5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1562f2315c3c429cb9e307f082c73530</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5eb7011c86b8477386bda45bfd529128</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d14fbf76d3294de0a6aa016d6072fca8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90d5d634d47546adb3ec0391716e198a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18e1a55cacd44f1293c812c8228b6a46</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a5d13312137404db501c22a0f781af9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a65d3b2d5084d24b10540fe9edae280</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0808ec3820a94b3fbda64fcefc8f61f9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86ee9c2122b34f8c87d1d17ffca98a8a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c438701351b140a4bd90dad5ce866b33</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4756d6618df145368e7b20e384fa64cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfb5407179b94e7da386fed8a267d688</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52acbf4769a84dd5835f35d69f32ba7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eef20a80dbac40e1a615fcdc137f424e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2eca3bc6b46c4d259029b8f707c61525</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c6c6394e9142808af9e2d9d18d20f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f79c8311da6c419fabcd4af63f1a8b54</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/88cbd872a7d144f88cdcba95fe1710f1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5a8d806a7ec486fad54f14ad48cd449</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bca080b6ca654b40b372219832454a80</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a509c5aa5284696ab5c113a4e28f42b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f191d2c6fe145dbb9296c29291be780</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2121e6af0ade46538cfe9679bd1e9236</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51cb86cbcaa3414d9b9009feea187869</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9307f918fc1a4a8d82927851d07faafe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bd8acc3fa76c41dbb4019a09a4d5ca1f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3030eaa46d8343b59fe20e42a8a91adb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce8621d25863475a9caa934fab1f88e6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8102ff599d204fffa490401052834f04</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d06890408c7e45d987dd28ffde903b30</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e5cc13734f04273a6c3b4defaf1b5d8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7613de0f904a414b9e2e4b6dea647feb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d254ae37d2442ac97414961734271f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e63c1a33627543fa902b8ecc6195f7d0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e768104ef9f4a599e89d1647ac185ce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7edc50c651164f9982f42712e2b37cc5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46c3fe2aaf304eaea76f9e0e0d07d36f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e8295264cb14e128fe0a8688b6f8792</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c56bf4e7b60744858042c0821f1504ec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9df2600b4bea431c81221f159ea96b68</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/003c64e949a843e2a3f2f53c84541a50</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/173243702cc14d58a6a8897afbaf05ea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3ba5900daaa4cf1b76cc3fcd67a26d2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c312e1ed55bd43eda607489acdef9fc9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a6d42a05c58415aac32f31b0f194be4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0b8862ef5ffa4ef39e622aec1d6e4af0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45a83c2277dc4a258d04ac249bdde9d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d680404c4a074fe482db77a00760b876</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60f933f9b47a4c83bce3643f15124755</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3483193ff8f9417182d4e98ddbdee949</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fe3e937ceb449cc92985a48e1b39433</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47c5b715d79847c69f3bb24f32596073</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5553e81b67c245e49c152ac460df1c7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5265195f9f77427f9925c1803dc1850f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/00ba0cb2604f44bab609ed6147293087</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9db1bcfa1f2c4a47838e8a7830fcb274</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ee58ca220704f43be2d390aaf40eda7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03d9a245af784278b0feff62b286f4c5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e6ed5c271a74084bb5c7dd726b44fb2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c1479f4b55945038425c3bc085c532a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6255be7b621844c8813b4997ef41cb92</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65449b893d284a2c8374d5f38bf3870c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33bc95b689ad46828332fd831e479e56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c05bc03fccb4cdeb7506406312cc8ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdb7b9543b9545059e70c8dbb64e564d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c72f7f973cb4f5e97f47ed36dfec8c8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adc02e8d0c0a431ea20bdaad93746059</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ba6aeefd8c0491cb498a3c2fc3ffcc6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5f42191c54041a9b4cbb2a2af324336</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7df5a23e790f4e62bc9b1809d11da9e9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dded1fdb568b44e5a19be64946b81c96</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9173158992345e3877615e5c3dc1d9c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21c7bf68625e48128b650aac8d93a73d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b11391d0cc3d47309cca8c09d46f3aef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa777618f6794bfbb6e51cfa26f902f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ccc4075b6e848f6a74c61ef7db36189</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/668c051d7cfc4ae6bb2aac444bc9b1be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2acd9b97b24245eb9739d5b6939e28f0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32778e4812fe485091d573e9cac50cb8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5916fd55a2c146cc8acd7165c2091194</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb8bfdd96cf94ded8233f51215e67e7c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97f98e1fe8414a5c8728d6e6c97f50b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d2a5da4fa164029bf40e772c2c87505</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fec12df70ee43f6969bd685772ac17d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/656882fc082649b4a12fb9b1431ad0ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14f505332d494b31a998bc8f3a183a84</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c7845ea8eeb417e919d88966f80802c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2377e3acb52147c78610569ee462ab9a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b01e9df7be64c23a340f07314835581</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/20e124066a404467855e2bfc4d62830e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc0966dddc3e437e807c21bbf15e281e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/298c360adcb4423a809d1b9a54212a38</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a7a90b5258945cd85c72f7062c684ff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54a4761aec0a40fbb01fd006ccbd6aaf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c35540a39054f539d0c628af78e3ec9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a33e89faa91e41e68c23e39281564a11</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbc5349b04ab49789c989b945bf128e5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0c991b7b4794a48b837124d7919f0b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c7602f5fd044e3bb4139833ef2db111</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21dc54145d2a4a9495a88ad103fa0716</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24df7857ab304777937ca8e444e7c04c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb6a932deb4f4efdbf3c995ce87c977d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0474d206084764818b48dbd8cc3186</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccd3bd974a2a4b5ab882dca3eb0c7943</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44841434bbb34e5a8b161320ad2994f1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ea3fe744f7b4eb4b9516f0cfcc5d2a1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25550efac5034660a639c7225bdbbe44</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/344ed0354f9d4b39bf615b92a0654abb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02bdd93c13e64d83bed11693e3bd8cac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41485a1fdf52495e850f07da5130cdbe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/757be3d085a54278a2117903854606f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/632985dac0d4495cb721ce9c4aef6a1d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfc08783a68a497387b4a75c2d7fe3db</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ffe965e1e344b74a65ae10995620c5b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e22a6873b7bf4dce97877f9d6b7e19a0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16e6fd4a7ad148adb2b5fdebe59cb112</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f454b6d0c2104843b33f5c14513ceb64</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e42067963724e74b7a60b56d23ccfbe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5fdac83aae349cf9554060f7f92495c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d726fe851d7b44c5b9729b797e4d0754</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0672cedff1ef431daff56a1954b612d5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fae7619ff7f4d39b90e6a716b512897</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0220f615e6c84ca98d0598c4e6512a4d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8db71d41b25c47cdaaffe5426e57755c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/99cab6c019634d44a1936e752b7527fc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45de508ca7094626b5df5d5a2359d86c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/844b3958033f45739c0e2ba3d83585df</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c924da23f96f42ad98b648c08e173cc1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16b24fa1e78d4a6e88bd90f5c0ad9d5c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/56eb74d64dfd4f19a218b23473a29e8a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33d0e9bba1fb4dc4a6eeb32b924059ed</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/105761c6726e4c8fa125d4a42657013b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7a6f6554a8d64734b5161643749458bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59a3bcbe2715447a9d8b14edf810b92c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4c632e53eb6489f879e8c35a10f2184</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f157184cb2a4ceeb5164936397872c1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40a419ea0e964462817c2368aa06868a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5471563cb04b82a8fb7d5c9f136b6c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4414e40ae0d4eaa9997364ac7f692c0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/13b555e002134be2ac66b616d0339f60</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/782a9214e20b48789d3870b103f84f74</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0f8b60d2f154ce492bb8eff25c03999</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/767e4f84bb584f57878dfb599ef2dc40</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02a6ac49a1aa4d549da9f11bc63db5a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/317024cbc31347558ecfb0a6cf7ef543</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36df5c66ebdf46a69067a9bd5c7ad81f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36dc20c4c4ae4bdc87aa16333a928a5d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e269f4875ba46a2a9269ac60df30202</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b731059142c4252a9a3cabda997da87</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15a6450796a94218b034c2c2cff7838e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/786f294ff8334edd95272b8b43878460</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/287541735771412d9091e5708f201985</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e31744436124483198e29e70f2aa91d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c8c03d00a1f417691d8287ddf254a63</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a57e0b6f79b34586bfaff695b885aa66</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f08d4f09e1ce470cbc008a0770595cd3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55c43bf4afc2437f8116c152ad02ad2f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/703baebddb87428084907d522ea5b216</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a51e140a573414faaa52d64b921036c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/66db411bbefa45fabac81bb2acf0bf0c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0f9aef9b627f44bd8dbef467e7afdcd9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79cc3fad3d4945669c37701639414d06</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa1e85c0fde14d9ea502c40496598f72</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e562b8f1d6854a84b3c4491b85fe1932</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ad54b0d2dc34cb1896e3a628dfe8751</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e927043dc534e5597e49fcb95fab4b8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f23120af52844aebc0644a22a8ae3b9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d398096f888c4d7dbfd4ca7ee7de4aa6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b551e74cc484366a22e647464f2be9f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d708e472ca2042d9840c28644a3b535c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/99e89f47efba42d3a71eb80254f163af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43eacb2d32384a71a84c24f33be582dd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/27c0991befbe4b049b44a9e8ead7483a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97987d2d52d44d8091c058b8646065f9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1803cbab3fa484b9aff47e9ff35c5b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49c83ecdc516496f9aeea771914cecfa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8529e1bcf29f4e098c3a378efd06d488</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43f1d1439715449a9bc695bd5bfd8c93</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a448b82f38c4ef98f984cae9fe517b2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e36e26215a484b81a9ce0f63de1f87be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dee4a5f32cf743b5ad5f9217e26daa8f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59251f13fdae4398b8174ccee3d876a8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9582c9ca3e8f4d5abad30c07c4410959</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aac2d8a4633e43da8bfff5ddc8134585</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c120e3f7dd7e431a90a6d3b2408ad11c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4698fa2164c94bfd8dc7ac0df7115980</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4786deba492743c6bfb5f6a3c068d607</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9811d1f8ef0f427bb43694e9b414923e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08a4dc84731a42b68ac3021e808dcb02</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a39cdff8ed94533840df19f21d5f662</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4480a7e09b84c97a3027bbef0be226c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04e7ef3c5c054911a47f09fe9f151454</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29c3a8c4371d47829c3f7e062a139b88</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75bb710a87fc4f579cef6d3412938842</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b47a6afe320449a8fb7b955164320af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e25c60ad3f54ded990be8279d73006b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d05c6d204ecf4003b99619783597be03</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14d17b17de41477f9e4cea55fc02a950</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6558c2f6aad4a1ab82de94d285aa704</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dcfc3450cebf4a07a97113707636a8ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70c21f784dd8471cabc50a752c9582da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f0b30853de2451590f948ca9c521fc3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/816c117755d94e2ea5b0a532d02e8d60</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fb55447093a479b9cc842b6a15df6b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1f44fc742c44457866b480884391c76</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb093fa08b8d46bd859d8b38b0f4ea32</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74049da7c39c45dbb7e52941a42d97ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad2df7132261484e9f69da31ac111f6a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/272632926d0142a699e9c6fce527e725</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c37fc291cf434475aeaa55ecaa004346</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b01ef1734b046a880c83a42502011e1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72e2106ed48f451a9d66f97ab7aeb239</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/611163bb8fa24029876233b57bfcadf8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/882c32b9f7694ca7b5573cf492695e96</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bfaa79cc89f437888c9f206cda645d8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/87ff854f7d00442fa08b9c399fb987a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/10a44d3a78e64ce2bde0104f34dbfa5a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bd50ae4b15349f5bb3eefd8c2a58b9e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ebfaee983bab40df84dd238f21c4fb0f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9cd3c0a52f374b90bddd6276d0ed4a07</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d27d5d7426748a298b2440fe4cd88f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f13f45d7495244c79442e6c39d39e226</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec8055d0a0b74c8d99b4167076db9057</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b99079c69edf4338b6a7b1ec08a23df3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d79ff94615c44d3bb70a23d6a54f1b56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/619777603669453c9a08b6d7d4f375fb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/368b7660a1e544e2bc831593cf5e10da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bf0cad3f3c649618de840332b15792a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c095c569717943c0af016d2c9d426109</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e711574e822e44829c9a15d226c0cc86</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd6b02eb7bd2412ea7ed96767ca01aa7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c329208666794e23864e439161658716</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b978d0a60494c16b562003b302a2e5e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/700cd022ef154c5f8658f4a885a6affa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b610b179156a4dd5af2fd2f77ad494a9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41f0200a141440a3bb82a12ebf1f9b39</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c87baf53ed2448eca7deeae9a282f1e1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df0fcc793d404e439085cf0334286f40</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b1f11d5880742458437ae60217c8709</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b3796865d924c9b8693ad7310858514</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff5f5abbd69b4187a128eb1f988acd61</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e27946fb8a64147b07e299ea46c3681</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/503129530e2442c29fc0301073c7c5d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46dfbcaa67c245209ea0692bb46aa1c7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df593cae621f474c83a94d3e35b32a0e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fad98834857b4f19a9cd9a6cdd088681</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a277e03954649a79facfa012f0f79f0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/589ee535579b4ea3a79bf3734f8c0ff9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a64738297b184857b579864c7d5e6338</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a865a3f25ea42fb9a8e4f35d3f6652e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e4c64133a6840358461e00d685f1a04</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/abe97b810c514099ae282c9892dc39a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb9bf65b9a6a4b2ba20a60606b0de344</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cc8d41b5ac745aebbd4d4e5f9db00dc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccbddf90d9324c05b1598dde7e9f7336</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eeb2f38cd9f944178fc98cfdaa22310a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f2d1486912d40ddb5f3881fe8a252fe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2854ae7a479e4861b0766010d9785a97</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78c784aaaf5c492c9882b5c8b45a21f5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/acc65910582342a9a1e8df8adc10fbe1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ccca3147a0d64b118b9790ab51ed190f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/246b300449cc400eb03f380e1638bf7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bdd156c83e114efb8f88787b09cf3e97</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8dde0c69e1eb4721bfbb3d14144a6812</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/838ab396b53d4e9fb7c8bc458e3c6b5a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b9793a6f548b4729a113dc519092fb2b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/720e812a99fa487b83238e818e5e53ca</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e31a121f75a1454b90ce248368c838ff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cc1b6ba19d9488b9b484edb457cb198</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c9dcedddf2d4fbe94c414d10ed0236a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4bfc7dde49874f3a8baf984b2838a633</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/269b630793ae4b7ca8a962935ee7277d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac8a98aecaa84930a6175e1e5cc47f3f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08f489f70af8439999775892db58a06d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e56e769cca649fcaa7665ab4bd85d35</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90380babb27348b4b3bd60d6f2d834af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d85e8f4b14f844d2b2ed1e7a99d1f919</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c8d435896574f5799b06cde11b46600</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c62246bcabaf4ad19be99a29708dd901</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1535055d258840f5ba4a82491ad69f85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0c548e35014a43bcd3493fd3946827</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/497e5a98a7be4a1e981bfd1a619028bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb7bb674a2ba4518adff29663c3ff4ce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b0bacfd274944f6865f3cd14a392f0d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/957175a70aea4375b18c64db32518e31</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5692a02ac3dd493db38bf7414dcf4990</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ba3bbcd90f443249630aa6cee4095b4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74f93f2c3a784364be6dd33d9022659a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b7e8962580ca4459af2ff0a7ecfb36d0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4ea5a693bb741a09d0c268067c88c85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18e5241bd3b3430b8a963b9022204600</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93891989e62845a281e42bf057065c7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/88f745f08c3c4249a1980d115686bcd9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04ed0c64f3e44fa997d6a78ff7ccf895</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e9dc2d1943748948754e8ff4f9d2eff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8860ab6178514aa6830079627bbed8e8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a6247fe074c4bf1ab50a4597cf83674</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a3c7ad7b1fb4640a338a33d7e29f96d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0c43802d06d44c798e12c5d69333114</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/289b4a8c6ead418e9a08d40b9088a066</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/402f19a047354489a8519e0ba03b8b46</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/230b8ccdf4f048ac9533384d8b307e9b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cf6387c91ac4567a4fb663cefa4e41d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42f328b448f64883b88e0308219d8e46</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7a6af9b50ab45399eec246b8a4add76</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b3ff56e4118a4c0b8158281924dac8f0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3b1359e50684624ad98b7d53657a789</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d799f890c3d450d84e1d45e274d1273</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/444c3c99f9054fb098ddb53212a3aa98</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed592f2f22534e97adbd2466ad5de8d3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d6f476bc29b4bbb93011f36e8db7418</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ec351759071447f8df949d3c1c6b620</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce2db3d791c7428b924561d65e95ec21</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2373d56fdad42dd9affa18b323c4bc6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/242f413a71a542b389ddea58c0a76f70</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f775faa34de4401facdc0c44ffc76b18</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/69d0f6d67e334c6ca79575f4a778cf66</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/452da03c9333443a87251aa95e9e6f62</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/67ab8cd70b304b849823d359ea430e9d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/914fd25450a84bdfadc9d9b2a60f2b88</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c638d6a1dbb4421a6b0714c9c1d6882</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea24f5a059e94af7bd47b439f800b3e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8fcd500ee894ec8911ba6cf1ad2120f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef16fedc52ef45a28dd5bd9497c694f7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d8f3cf34de8f4793904a3c9a6c9685f7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/129558bdd478443e9529841df5282dd8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c494406b24549aaa01bfd1fd569b4be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af7abeaa667b459fb58558bc561c02d8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aaa01fd1e9d848a2b22699407c1a47d9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d601e3875b814c8cb1046ddfa38e41ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ece018e4a4a14b999d6834e942783be1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80a776fc481f4da78ff2646f2dab7e05</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/165c1362577a46c4bc3bf1ff99b60363</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/326224dcabc344caa79ef87e0bda6ea0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2e5b954db3847d7a646453c04599251</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef747f30a2f14f3dab3d95b6421bb027</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/588d005206734a33a39eddb6f9166776</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c0304eefe824579a5837fcef84e3a3f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e922b8c12cb4a9e9ab40d0ae6521116</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b7ac005b90a9419caf80f625e8b51ae4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7c1ec50c36140fbab6e468e24cbf55f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba1874dc89924d32a17ade096b9d4e35</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e0d4fae911f945a2b13799c5c5b5ddf9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a02f2c457be4d95bcf9546d073977b4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d13c2747d3044203acdf9cae190c674f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55ed7e184861432f8325d89bcabbc103</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/772fda9c01574890af701dcd2556452a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74755c16bbac4dab9b2c9eed6555773d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db89ba17ebd44472b99a18ef1f800a50</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f01984174c4c4b369d34ab71e190ce7a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4ed70b0616e48eb8a62f1fb84db2a23</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ff9ad0d92664bdea2c74f073d45b697</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/23780eeef10646d28a6c8955d3df3608</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e90fe2e6abb64e0684efa37ee6246548</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9eddab8e01824dcb847b4a353fee709d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75cc1e67f06d4c049b5dcab1a3c44512</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/175ee55f41cf4e698bb67ca7ace0b64c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b41be4d528dc43039f1c04bb5463304b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ed0c19abc614d6da2af5cd5d29f7c56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f90a41815264709926d5ea09a5436c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/53d0a6292a90446d8681e6f59f9d1121</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cd36f4a4a3b4807999c88a9a1b1b202</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57da4ae5b3094417bd2832e864649476</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d852e1187fb42f8b9e3ba3c398fa794</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9ab95bb830f64626a1b1595d03715c6a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2ac61b1e4a741f5b779b3a7344b9692</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e64f8567f37d4c98bbb0021010c075e6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab117cd1675e4795908731be7191df0a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74d7d67037964242a3889114b4def405</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da6c1ad45d1c4900a4af8256a721955b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b877f005b1074627a2e1a1645412cb8a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7508669a87dd4201a507f3887f7e10eb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9d68fa00c1d4c39a2ed3cf1a8830b50</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/039aa489e0dc438aa58f97f03746c451</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eec3c55e541e4bdeb5d098a7f7fa1922</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f16804c2c82345be9a21125c82fa3ddf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5d2bf13ae11442a9b2a9a7dc980451f8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5200a9b323064957ac4ff4afd6c4d72e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e927be51bd7a45aa8d5c8f0ae49c8550</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/39d52887aa2e49078413e5d1562494a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b65c28fab0c422ead9ef3a0400d926d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92f5e87ea25b494199e93a705175a390</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcfed4922c3748d4891483644e797516</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b425e0315f24bc1ae045d77e618c36d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43605928f7ec474ca03f736744e2b501</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c8a76500274452b3b8bac9b23162d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad6a85c02f614a37acf03c799a23df65</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd8167f15edd47968df245488e6ce9ef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a45c60f7b724f2f89ab1c0b2d63e921</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50331d0c4a0e4ee6bed3bad95cbc734f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16da7780cbdb45eaa514dfc37baa40bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a932abca0d948199e01c747ec3a0621</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05e821feeb984696b157202b451bd11f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f40b3a295e742439d24f5141c71628d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c85a22c93f4c473b992b6c4603ccf50b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64f9f3844e0f4e25a8ee845394fda500</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4fe65817bbda41be812980f3d3eae631</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9d797f61cbc4a71a7f7418b50022bfd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e9bbf3d19674e789272f80ed01b775c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05f216f8fed84c599e2f5370167a47d8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c5762f2522741728ce428b86ec0f9db</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d35e7a795da45e5bc7a4734f318d5b9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d5ee8e3ed554e6db42e215491054399</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad45b50c80c84f659a4d2ce9f46cb305</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcdf00f6fbf144f08dccdd293b23e360</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dde2bbff9a23488bb8dd68241b826998</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7225e25f27ab48429ac4afbf42fce339</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36394b3e87ec48998d26cd6c73981f5a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f29bcf7039144a37aca5f1444843a5eb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0f39ee62a854dfd85edfaa28e3df0e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f866d76f3a5c4aedafa6b417ffceab51</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f411059fa6d044a69a95bcd49567b8bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e42ec1222934150846de2df9b4dc826</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0c1fe51a51344d4bfa0bd08887fbe7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1cdc9d2373c4a3ebbf7e655f029caa9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed74687ae2e44fbfa83e4d6d91d6f8e8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/58562eb11df54b01b01dfc1fe7b8038d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a5c515e5c6245efbc73cba75e466fec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/607363ab5cb9442a9c44573a412b1a3c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/045f0f121c4049e2b99b70d976baf10a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a46ec74c201b463ea7ee7c3821bfb632</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a20918f4e4b54ca682a6e72bcdd7d482</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d363989990c94bb499f57679135b2ea8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/235078577c57400fac732c0fe8502606</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe6bd2d3a89141c7acfcdaf63a176b87</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8ae9b11d706465ab8a040388d236d30</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4b5da9a82944518b3ad7c99a2a0a3a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57f65565d6244d49afa5e169f96743b1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b70cf31ac27b4e5184b3d669c38468c5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/04722bbc5191481b966db824b628fe19</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5796fcd8dbba49beb6e497d30d5fa87a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e3ab8a0bf779424b872f7b2057376f85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f09221f49d14442ab585846138cebf9a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fff4cc5127b84a81a6f79c378923a93d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5fc3a24850944c7ba0c26587f9a7c01</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/685daff8c52d43b3bb6a841f2ef6ffa1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/369a76d3115346fbbba495aa033cf95f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16a58bb7de024e7fabb1338103dc1180</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f525f56b0a534d0f9f643c52e0f92b09</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c314eda1075643d299a6f22b8b7f5de0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ab64ef16dbf41a4bfdd1729fb4c8aa1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/739d9555d2d54d879a07d563dd3afaf0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/271c6255ce9c44abbcf2fedcb10b788b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4571042a8644c729e2cda3eafcf0bd4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41c37948f9544f2bac06d9a9587146c6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ed18f4822b44afeb1a3d34dfec73c91</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e02de3ab43a340bcaab03dd98929f328</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc304a3f1419429ea826ebfc0e3c3bb7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed80e0387b184069bf545af67765406e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6cd912e5f5b94c869afb733dc3899bfc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4f8f966ab2cd48cb9294d8fa39aa9beb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a2a5a96ca554ee6b99109154b1a08cd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e5082c900f14b13b9599535e5f3393c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/081ae318de9f4347936faedc33e7ed4d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44e0bf5573824d26829345aae4b2b2cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/124e5a49d29b46348c29b1693922488b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e6a6db4e27694df4a7e0a548bb813de0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46090d8b6bec40708e371a400a733777</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f7254191c5f143f99f20d16ecf5b7af6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f92e4f0df17c4e09afebb5881637fada</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de5e505e1384d4fbb882ff28bd80e2b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3636c50a03fa4ac0b0af2a0dbcf9b15a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e6fd6fcfcf64913914738fc61188a86</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2328ded5ec2d4280b4d5d09cbd214f36</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03c55e4e5d2d4ac7bc05e1187c40cc0d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/976d527a6e344859b9c4d7a985aee05e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ab394595e3de463898a435ec15e32593</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c512e708d9644ab384548235875035af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14c7492211484d7b9716c4ba3b18bdfd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5a08b927a304f008c25b7411def3a93</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ed5dd862f254e79a9b160a1ddde58ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6bbbe867fa3549e89da2ceaf2c968b00</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea07b2d9a4c2438ba58203577eb642fd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be8c0de1face4e518f82d7003faee97b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e759807b3c9441b09363c968965361bd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/10d4802848374133afcf217151a4023e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7be6e249f89403f941152b029e96a31</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34eb6224c3354f3fad34eeec28847ef2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b25b496cb04a43fbb39f7f72bc937f77</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adcf13189fe14712ae8e7412187822c2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/192254743d124b3e8717d5c1478ca75d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/080a2cda455f4f0eabce739399e72499</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a8622cb23ed24c71bf94fc5800915cf3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41081a2fbf014facb9afed552a52b9f9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ee7febd4ca44321985980fa8bb28034</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7af5b5424011432da52b582d17251894</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/554aa472172547968ae9e166f0a93233</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a3b6a3a89a449aa88e3e3203b4db23b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f6fb2190f49d4bd694543597428adc7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d5f76175c0449e383f8432574ddfbdf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8638dc319bc844c0b17f1de1730239b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa148c70632a4146a298089391339681</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/468aa4c0e91647cea205ea4478e828ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9a26ffbffab241268cab0b67c20fe219</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ba35c7cc60244e618ce5fbb2337836f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e62afc084c74590ac04d4c19ea49d10</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3532783079c84a188b36d5f45e5c33fd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f236a272c35b4fd784a6380a0310452b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c69d103af6ba4f238e8320922ea7521d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/990d7a5db4fc40229dde1cbead78a37a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5e37f212fa714b3e8e0984fe3e59f6df</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f15081a871d4462b9d3c1ed2d3aeaab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2a75b0839464ac0bed5d7565793f9f3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/29e51e4e4577424a838bc15de3f06bf6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/91b6b0738f6e4cf5a191a3bf78d8e3da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4030e4abda704e5ba9b3a44699d85e2b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0218423ac84412db4eacc3df38c0a6f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a7a425e71fb49d48470c3a30cb2d544</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/07dea0f78a154b408d2391f68fd494c0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8157063005dd4d3b813d4364e71e1609</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d5e63beaa514b15b6c4cdec183790a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f28a76edff043c8bb60923380d34ba5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b177cba9fdaa405b922b2c4bcd137dbd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5da322f1e4ed42ef997ca7da9fed509b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52b84644c6c14220b95678ad1f22b14b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db5a9d8aae074f27a83802e21c940b01</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b09d629500ec42c5b2a261f390a87aa3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8bd881a57ffb4de993fd5bde7273a91a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/964e3bbeab15406d9d52f47bf21f875f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/83f1a655ba4c43898ea260cee4fe519b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43dccba21933494d84d06464bde6fcc2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3a7a16f47681469884d17a101623540f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3181b22ecd7b463ba8c4d9bb6b2539a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/adaa5899214e40fb93add13b31511ec9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e15478fdb2549e7ab471ac3363b5016</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc4cb25fc6fa47cc991cb5c03fe23098</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1892461a6814f48a556f293c2775f8a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/626d5a0d3f6b4f8f8ff7c15376e22298</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1e7c365c2d8147a4ac9d43d49f9f2d18</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59a76436fcda4a66938087e0ba06aeb4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d566b4ccb137402c9181a07b154b6a74</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38cd7b8a95484bc4b6e6baa72d9c09c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cd3fedc02b342e68a1c88edac9c5379</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fcd3e46753024e1aab6077b857753444</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c3ad8bb8dd7d4ee89486f90f08e93903</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9f9dfed5f724359b41c427660bb5a9b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/126e78409e4f413988d4fb345e222023</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45a716c5d76546109f1de3360e99b3ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02d780bfb1f74288bc8840828c5684cf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b30ab9ec47584c1dbb340885eabb80d0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ae166c465f846549cbaff3bc8cd5cea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/166b6cc7115f4af28cce51e6cabcf943</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0364c6207ba4a02845119c504c16498</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/01e92d085f6b48078afe676d6e3213da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d897acd401a4475fbf8563ca525ee7d9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bec1070fa664264a4b6009151d30b51</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7b994bd8e932474ea4f1e4bf37316972</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7adc46ba71f443c87422a195dbf8444</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8472cb399f1840ba8a667e250c000da2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2cc2ab6f19f94230a1d4b1c724142d56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d65a594c69e44b33adce90e42302dac2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1c1ae5da7724bed93193b177fc09e56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/71364385123e417dae6a52b04b6d6979</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/004dfce52a3c425da984b30ad78e84de</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47c1c59190854b088172f059e1c47b45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f64beda3149c4c6fb0ff33a2f9253de6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cb364a9ce7842e5856f8f5a39a8a172</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f37b03d20243443790cabf22587b4701</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd7ada818950453eb9aec4b7a84c1821</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/909ffd13fef1410199d4cf938994174e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cb20fe1399f40318b0b30690104dc14</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32d852125e30402695b8d3157933cd1e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2c24468bd5c45cfb402e2fd2db21772</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f41869ecf3a240f5a2a2116cf97fc40f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d56f0555f9442fc8fa0e664221da425</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/be223255aa964f26a3bfb0f8824fc72c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e5b0116f371140cca638d27dbf66f23e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/835a54fd4c94412e97f9e2766083668f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d06c34ef219a4323a86f55544bcd9414</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b34cdba58e84098832fe119740d7ae5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c6455d4855848d4823a18e38bd5f023</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1393bbc0b05c43579a47cdacd1414877</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d68163b197b44a79babbb4c311892ebf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54400a92a3004792b7784afb9e0eacf9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/966e4dd8c1ea471798252ddb589124ba</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64926019bb9447acb0b155f2e663431f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4291925d69774cb9bc0733c3e51afab5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caa0bb5f095e43a0940a1db869804714</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8480682b06c8430b96127a4e557a4c20</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24b5e61a477845ba8e7c019a4fc17189</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2734b4cb8379472a82737d03a6ee547d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7d84da1000274e2ea5c31ad39edcfe59</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25dbee10e0b64b259188e74b13d6adde</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e19838f7c8744a89a6ac6784e3cbfc5c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a79d5d3aff0a441a903205c2575b2ab9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38b4c58021aa417e936b98b393117caa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9fe59456baa948bdb3b3e93498948b29</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f91d4daf1cbb430998e535d7e8e053f8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7e388ee5e5f48048cc6a1b20196158a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dea0b851fbc84780be496c096dcc81cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f14a50fb9def4585958d6e711630e48c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16e2931f62a94786bb381898b1ddbf88</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/214f4eb6378c4265911a2de085696338</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2949a37df0814200ae76cfc36677656f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2e739e2f26d4601a94a3510a9dd7c6e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6d937171f5054fa2b12cb1ff95a661dc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc0870762a284219805dbeaf616ea490</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5487f3fdb95482d9fea8d8b2426a580</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d57ab5e54744439d9742882ca56b3099</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b90d5aca6d2346a78dcf15627ba004e7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c0903ffb81340198dde279560a2515b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9b1cb4796fb040c899d2f6ee78bde4a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b49e9236d2c74450a17b5a027bb9bcd1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0cc49c4371a6490e9adcdd96b3b4b26a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a252919218564b16a9a6fe50eeed421a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce0a265ef3184e5f9a2786b5e4f168ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c2c6586e5684ff4b47b92b4bc2f07aa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad033950a8c549e98de4ee3ad669c088</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c905edd37e02415fb8a73479fa580b45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9441858ca4b4977ba52cd29bbd47766</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05d4a608bc674efbbc9478e72eb58d61</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce076037a33d4e4498da8a32e69bde0d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb92334e54b44888ad1f56d191f315fb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b21bc46f0b345a095539f77e5405866</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5e650cd7c24b27bd00f0157d2ff7e6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/769e16b41d2c48ad916216f3ccd324b9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b3d7bb0b6b504b2e92611681e91f6b68</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9130099f21aa4a79b5ecc1654a1efec4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4209fd462334f2ebe84c4cddacfeaa3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dfaeae8e4ced435db2e0872e0caa63df</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/64ce497ae8e94d648aa4c847a72a8894</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/827523cbdb074f31a3b104ea1f090291</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e2a8fa97794942a1929784590e373fe9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7bc95ee90e544a9bbf5f35138106daea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/80e580c3d15148d89e503e99219cd483</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f999d48d6fd5488fa51765bc1ca3b01c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a98d2d138544fc5a2e040adb009aa70</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44d9812c6cda41b492b0df908350a024</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/16523005c1804895a0c16cf180b529be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/721cd6e90c294bbfa6fb57cc245f10d9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/589241009b124398b307e71532ff9e9e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bacc3c205ccf42a0bf959f4ec54c15d6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/21aa9895401d43eb9934257948fb8f44</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15e9a51e50f043cf92787b25a7103e97</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8114f9b333124e118558b02b7eb905e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/08e7dbf301a14c6d8d3eaa398cb63e4b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a63523202364794a2c98bc6655d7b8d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d5344cf7c8741c6a30fb1a894e45a35</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a68736d3b7bd4f06a638a73bb969356e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c60d3b20458a4d5ea2749bd167af10be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d13d728b8d5c46ab8979c6ea6ff645ff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce1274b8378e4ed19810112232433528</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/12264239aa49400785737818be5f7dee</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d5e9fd519b3b47a8b4147bb7729fda69</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e3e33f17b5040519243a2c2aea7f12e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed790e9c5dac498195fe5ce81d871aa5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c19ec45ab81540e78045d4be2e4f7a56</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19e323a8dced46d39c7aca233ebfdf2a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1c97572f4d7b47d0a1853e3f183ef841</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/400b5708e0404ab1a3f61c8622c7edec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d395a410fc6743e0a322627cdb5edaa0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce77d4298297499ebfa5765ea5fac286</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e2a07587adba46e59a4fcfb5b4d2c3d6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/169aae0251814e00bce4aa148d2c1f0d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/437843d196b54b6e9fabf467bd2c3a2e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa0e772751c847ca96f8f4046e4227cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/85d5c3c01175481498972d0e6c900ae6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e23f02d15bf4dd2abe2a40c3bfbeaca</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e0e1afc2f374a4385a9a59e205154a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d18aadf9003493da72e5a26f9ea5f18</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f64c67ccabca49db90b07d4201d2a2f7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fd474780156c44b6b5371a8aa3683003</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5659380e55964fc3b8efcd40e532c2ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7593dc8864af4116919f28618b195611</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5aafca18fdb464687439584420981cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a22895866a34e2d989d83a1f33ecf18</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/83db1f85b79a441baebd67651f15b90a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40bb941e38c545929e6e409327f34159</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/968064bb43e940ea91b524600a11a0e4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9456137d54474170900d93bc1d14def5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9f8d68ee7bd8465dbc202a204be2236f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce6c8169f7dd47a380b28902c1c50b03</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc6bbad5687944478204a06eba3fa4cf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/68ff6ae3ab7240a182c8224d8de809bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/779b48b5922b467cb86b29474da035db</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a12bcfb5943a4dde9dcc38ea16427216</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a450b114a2b841fa8eab78e71a32d1d0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/012d89f4d6b3453090aba086c457e45a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/374c5bc3b565466698c3d983e941261d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2befd42618a4121b404b352584a6acb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02dc0c12d9784fb184b0b8a0e2428211</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/622d46d748d64469be7c96f94ee51e71</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24678509d53d4f549cb516e7e2eae23f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb9b5dc5011040fcaf943478b8277c61</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1f9869c7d73442a8e421c1ba859b85b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89b35c824e14421d99d0cc8bf0a4b022</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47af8f976c70464786bf7e885833d75e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/749bf62800674b64954b074dc5502494</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bb6ecdb239e74a23b7b0ac2884509c31</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4d810896579246a49a14e45b39a3bb36</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f7216dcb8230422bafa7b19f4c7f1e46</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c8bdbfa92954567875b7b32546b665c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50bb400a9aee4431bed877cdd9ab3765</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d0899189519b49d0b84d7cbacd3a883b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa5c656984d94018ad3a03394a497d2d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/32b7b97ba83149bca3926888ba2b2429</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11cf80e155784caf8239e3e34acb747d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d36ed5a94b0649a29f15dae8223516d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57a43395991b43c591c207da667699c0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/637c398171754491a937337c769c5555</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ec22ca0c65a2407ba77127920a9cd493</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d755eacb2c14c3e8ea133d4025c70e7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dc082c106b7c4684a0ff461a071efd8b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a87cc888783f4c32b97e605cb808eca9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fdeeb2fedc3b4317897d709c648f2857</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8610adc5ee7743f1ae98255a8281cb38</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ef423f261dd443b9db9047f2758b73e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4c38ff09a5149b28131f4559015c0da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/02f30e840ae74c9d99a6ca10ea21daae</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a208cb8578f2463daca0737468b81e06</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3dbfa7a6ee254bf1b838eaafcc8a98b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4bed6885e2c343408062e42acb661265</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17483df91932485b941ad7bcfe5391fc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93885ec72c2249b28442c1de9f0402a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d604a33ceb50424490f3ad52a11bad1d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fed7697cd94461ea0bb25bb0aa2ad18</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/729c5b4e831b4f229b571e8e4073dc7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52500029b0b24ebaa9acb844788a6792</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7b4696edbcd45b1845b7f3925cbfa7f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/36c8f1218d5746808383704fe53e2e3d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2d102fb95bb4dcfb5fb6b90fff39b64</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48b67df9af574a97b37de00055947a08</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41f80208544c451bb4ba5b1b29bddc57</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f113609f3f9b492d8d3db8e032a8de77</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41edb53691d8470dad0d5306bce7adbc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0277985d2ea04662a7bd70fec746aca7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b0eb67aa16846eba3989b29bbf05a91</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e1421ebcf494dbd9975476ad91f4c04</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4e91338e46a40b598bcc3fe2e325fd3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7edca6c31b4d4709943ff5a166dd8ef8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e980747546064a048985dd9089121f90</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b80cfb556f74eaa9e8590193f80bc8f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ce641473df84813b7dbcb1c62031b67</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1bcfb62b02e4d4cb9566138d0e312bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c2a57b1c9a34299ad98b2b633ab8e64</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e351796789884a96bea3b23ee1626576</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e8fe82f51d9452aad84aa5082aab5c3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fbee286282a45c7b804879eff33c788</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5308ff390b884247b601db0ae4c7bbf3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0fc814f7fe7e482698b34e85f3bd4c86</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5c5db9013d834a72ba7af65a07f2d742</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0b3f611184348cea16b3bf7320cfe70</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b7289ac5c1e4f259040771bfbbeee06</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c579b790badf43e8a736d55384647e99</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44070d9562d64e7b95acfda651f26119</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0eddb8043a884ab9b0dae7e5e59a4f2f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aa45608f76d54c8f8dbc7d1405f6a01c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b8c110ee5fc49298a84271690b8e15c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fbd6afeee9f4edd9aabd657aa2008e0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb8bbb2d04824bf7825b3ce289d6cd41</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3febf31453384d7384ff5490db8251e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe5f33f80d384a2b98643bc275f6f0cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/86733093b7034bc5bdef14766dce7462</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c68f7f39ce33469e864375fd2f3af250</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c1aa91dafe745f88545eb3b34ee8f51</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/673dd29c44884fcfb656830270688675</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/33ce965c58bc41e2badd3bc239d4a272</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7322a71587f144cc9ea9425cefa99e0f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f55af2992c4d4e379e4f8901490535ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28ff84a741b549e99ffbf42998305761</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e73db54cf32b42e085697ff32dfaf08c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a5b7f6fe3d8748fc80665423b93bcf70</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f8a6c914da3041d6888197c7cdc34ddd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ced751fda437438b997da3a9732220b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e40a0862b88746a287728940e5fa32c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/14b397fe7b8c48cd936da63306923fe6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b3401090abc4f1e950bafda49ce31fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/78c04b996db3444c99049ee538c32274</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/18aa5108285f4144a3d095ac9e436692</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/74e41eefc1e2412891ac9a7039352f86</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2b9e03cbd68466d8cd142ea4f0cf99c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fae6c244a39447582689af7ae3816e0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ae171681c60249879b0b757fef189a4f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b70a520b6fc7482292df2821a9a5b163</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d258333b3924431987af20e4184d843b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61f7693e79e1499e97c81271bb6907c7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fe7bbdf3255940e89bf44ae6b07247e9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df8da4408d5448c6902a7270733d2ba3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1fd6f9a5946a4b888f97c2ba823bf03a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d48e0741aa3a4311a8f20f398e797ba9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d155776035d45f8a5a9c1e262086075</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/816a926104f44a8db3db6986899fe4be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c8b5ed2f58f4835adb384cca074ba29</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/897b0416c00b4ec284e65123669b7947</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7efc4ae98db943f2a959fdc5d0f72876</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/756959415186430aaa08b0be377df62f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b785fdb31764e3a9532d18cb586a68f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0169b1cb51c540269e8c6a5487d01f44</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a074bc9c05a5486d881a92f96d0da27c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/028ae00b0ce64a1b941c43df943707af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/79f9b1cadae34737ae10b11ce1cfb0a1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/583f2a0c51fe4a4db6885a0eb5bcbc16</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ec433e1dc054355994a553512a96e5b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1f7cff55686428386105199eb979974</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e97895d9168a46e0b0ba7af1c6634035</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37e4308e0b0443a2bebb8327f6cb3281</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f9feb11d43a047649d438468359c38cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11180d17c4a945f4b75683a075cf33ec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b498eb410f847bb8f043af9b6d590d3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6fe4d4f0e0164471bff92f3a66946afd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b81af0ce7997499586b8cc9e05c7153a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf9ef29d8f5d481c866fd7007643ec6e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42518e71b2044b4c893f2b50be067132</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2833476599f04fec96e99174a5701d2b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e8c59a73342430da1d0a086d7191b4f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c1f8a9d236e4e988e496e7dbbd394e8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a31e0c8cbd749f396c3812d55b1029d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8dcca44f5a3e4ba69d1c0323f47bdb67</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a6aa45273ed64d6994fb8cb37e48a984</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b1afc5722fb4ec58f7a44a4092bedc1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb550a700eb84ee185f678aef2a3a6ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/044458d96e8e4d7eb5e7a7a571c22883</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bf4279e0073e44a8b3823fc49d10499e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ccee67ef78a488c9087e1e9f0916e87</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/57816a26f69f4c41b996ec983ecf8580</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/47aae414a39646efbd32a9cb3d5dd5da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d3b4c327e154326ad7bd7b026565da2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6540b343443e44aca8b3aa2e3d3cd755</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c5ac9ee021ce42b49572c880465bdae2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/263e3a042b64447bb80e2b1a6ad0f916</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da5d12d1b8a84464b0e2bb51dbd8945f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/70a8b8bd234e4fa7bc3a6ee8bccf93c4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3dacf5c3b00649928d1f888b893fdf27</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3858e499bef344759d5fbd8c2b41c96c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7af04cab778e4e98a511ba1c68696718</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51b45bb2306c40dcb97810357e10c7ab</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ea70cfde5044d4c9dba76065d8967de</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c5d857fc38c401f8091a8d988f05bd1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ab8b3553a7546569a12a98674059ba3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b5ee6b6acb5c420dbb64ba0b9886d313</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/31cd379fec454155b181a2d964041d6c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ae440d2c68f40d5812d7165be60bc51</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/60d2eac371f244618000a481606d77b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/31e30e3271ab47cebf2ec8e1bd487cef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bdcb4451f4d84dadad313144be51d99d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40d1192f673e4d77b25847054473af54</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f1eec3c782394c40939092d3b097047b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac5f44aee6cb4e0f8501683092db98a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/76ba0be7f9b948d3a79698c9584a8779</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ea67bf461f6b439083a0be20bebc3228</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05c3ccdd84b7476bb2a6c3081606c473</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/43230220d12b4984b2f9eef7813b003c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ef33b45729ff42f2afd06d4e215eb9f7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/72061607b1014a60a9cf931fd02df6dc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f02aec55202f4420b7683299ff20ab7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e3f3f1b4049463aa03b5478aa6c687c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4ddf244cb8e410c8aae9217f49de194</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46c0126dd12c4f70a521752f96171f87</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5b0417bbf29b4f0ba17f29e9f88022b3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4e5d6ceeb2a44ca81e11e4b99ae9168</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a3d0a617ebd541cc820ba94cd70d4294</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/45d096f0c2bc4ba18c00a77c7d4d8fd1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3ecb026e04a4431aa57bec43417527f9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2c4e6ecb737e407a83a9ef16f54523a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e574bb89dcc43bda3696d03e0fd648b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/342db9feb87a4db7a01b43f488b28620</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15a1a9e85776451c88deed5bc84cb938</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/711c23d821c14f1c8573138c14a64c92</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/28c317f8c5c74ef092e184d0bd6e1104</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/92d3cf22106e43ccad52ab31d8b20625</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d8837d103c544adc9ac296736338b951</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d622cfc20804d56af73a73c4d23c38d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ef939eb5e5c450d9deedab1b951c500</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/924b79ac360f442cb1102e5c8793bb42</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5f0d640748e54dbb8a9b8542104f8ace</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e033f6a254394c17a69ecdce51c7f5a1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b22d8b845afe4571abfa99d7deea2bf9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8da375303d2748c8bb4f235b136a7505</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f808b7f3c3945e1aea27433f7c155b2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e84ba4479ed0497d84b2df55b8e506fd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98d99e182c134e519f32558778a041b8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c067f89bd98846f6bda74a0da9903e70</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af540bb2bff846d3bb41f54c6cb0d1fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9b6b48d7eb143e28749e2889ff5f12c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4c19f226cec4ff8b8e2666d869dd02f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/053cf01009c6425180102f82728d7027</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2d1cbfd39eb547cdaab8c05c82436269</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d00f9e8f2764496994ab4dd4fde24d1a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/11f2bc65f10047358258b76b62cfa338</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c065b6dd2e694f8796758285d29247e0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f37363b29be4d23a778c4ba3b41c34c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/76ed8fe853074a19b94eefd2796937b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/00fce6608fe64b3cabd0ae1fbe81fdbc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/066182003b054a8788ed6a88068db3ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2f71932033af4555b1883cfcc9227049</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cdcd402fd7b241eb951065b5a83a31a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e4703e94a97e40caa44cca82dee4307e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c5c224ec4334cdebb294d44e141169d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c1e4088eb3814278815ed4b347371bc8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c8efc4e24ad14357b40efa6be40ad894</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d95cbeed8eda4bf6931e0086c07f599a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d1b9017033d74f37b3ada759a58ad4c9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a86cc83ee643401399daf6da376862a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19538e5e822a47b0909051f46390e3ac</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4099fd771f4a4481bd504354cbbff5d6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d61116b8eb5c43af89abdcb8c19a1181</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6082f7ff78294603a5f5bec50cd1f75f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/24013dd1e7204460853442bf0bfbf385</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b400acb5c1684d01b7c05fe912b1b052</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ab360ac307746e09e4a062f1327e560</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7f973d8e8ed4d44beb09e0023a965ef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/46572b7470b34e739f3868136f6fee32</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7bfa7d8dfcc94fed880411415969224b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/42e8e0fa2b8544d1bbe2ff65c67eaa52</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a987adc23340418ab3eaa74ff962ea30</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5349d5887deb47dc9e9cff57d15a442a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/40fd2188b83745bebb4441597a0ea42e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/486940ea093644519f3ae14f1c41af9b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/df398824348e49f3ab3d52a569f790f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/575de60d1efb4f3b98132a9732e95b63</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/55337d2d8d484579874eae9f1b9e2d9b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/97b94e9c0b37411da1182b5554ed1e2d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/877f44816426434c9834c9d422ba35bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0fc588ff39874f078d306d032caade30</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f7e96fa55c5447c98b053cb7bb66571</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f5d6aefd9a2e4bfda582b63584d47ff8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/81175a1bb7c64ffd8a0e276387d9031c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/904dca9d33f141cbafd2271e7f7609d3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6b066e4af7c64cb682364e5637e7d4bc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7de66c99ad3c40608036d195eb80bc98</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1d7c34b7be3549edb999521858fbe27a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d4a42d4201724ec88773f9f702f145ba</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc0b9f6fb90343ef97c9e8856da5310b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/304ec18534b04548ae79be8c174fd5eb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbf0c2eea0ac45f1a773174a1b1b1794</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dd1dcc311d624732b419429eb94fc024</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34ff4c57ec2d46a0b77b27b7447e2d15</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2b7793cf2ec24682abbf43b4a548d4d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2e608302d73b4f4cba5af45d2e5d4e48</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8c5a7a20ff674a8aa583007d196ebbbc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5d80b88593e04e328e358344715dbc14</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cecfab954b5645f6876eec6911679441</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a12cc6d1fc1443f69dad5aad3e390aba</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0e765b4cbd6e4e83bc9ed231a8c2560e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c27fadf6ac994ef4a29de880943aaae9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a09959f69974fcda7c60edfd4efe9af</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34a96aa2993c47f885ee7ddc0ffad035</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0a2325b835424ce0bc8213df39a73c33</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cbe1c24b83df4bb6928d5e9b1c0f72da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c94296b3ad914c629403a4b9459174ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/34d60c2dd02f441dbcab8b0974253771</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/19f3b946c6c84feeb7866a91e5015d51</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/985b8653b546482ab526e5f205977a75</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9556421c174740b1911deb89c000d449</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3cf861ff78cb44d2b70130bf20b45f16</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d006daf18b614b2293f98c64bc4bee3a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37b13bd444c14d9f83a522151325c420</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0200bfc2c0240ab89075860c4b4195a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3f28fe48dbdf480bae1f486e2a287886</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bd8b878d67447d5875ae9f913764146</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/58e0af5d462e4e0d975ca0c0679eb6a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1a3e1e98a71e4069999c2a2a2d5466ff</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc8369a9da3c4d468e2a81350a285291</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3d07aeab9a614c059670b066e902baf5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7145b1183294a788895111c5bd35540</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50fe743c7c84424fb454769fdec9fd87</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/17ecd6f465e8455a9d7a0c50d5fe4eb8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf5ba7d2f078454ea0d25870f255619b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de78d942f6e645d7ab88f7fa397ec926</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/51e65cdec3894bed99573e881a1ebecd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e724672d15d410cb6596a0a71927fd7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a12cf4e554d4527a57524a5610da7e0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a81d3a1d377c481aa886ffea612054b3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e638e77e47348d1b40a1f6720422834</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8745837138e74aae8337efb3c6b67452</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/915c7b4ee4e4496ab275f6390a76629b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4ba178e86514a5990172cdebcf81db5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3aa4bce654094d94afee465b903a3658</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e952c2a0a22444c8cfe3cb8ef362c7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1176d05eeca848ca8bb0fd6229d8472c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de71da7dfe44a41a90121930c7d4158</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0c7a964551ff4135870698c76cf43789</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da97ee255c5a43e59803a34ea8ceb324</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d5e1a8330a943569e79a2cde1d5caec</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2bab549f25464624a8732b2dfcf18149</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/975051c37574423fb9740855f32e09b6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/340602ec4cb04db5a4047e95e225777e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff570791b93e445d9d3369e84c64d96d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb2cff14e63849479942f37cf20a6e31</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3e50905355674364be399902e7d069be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59448e1eac374a848a373d95e23630c3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bb1842ed20340c3bffd4124786e76a1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8801d750c8ca448286d484f0536b980d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35e4eda0a92c4b0c8e2e916bc24995f4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f88c59b53398461abb0a2419cc726094</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b1b66308971c420ab149eb181bd7cc99</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a18d5b1c06f47dba4c2fd6ad9772c66</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7c4112d15d2d44ec8f695b99d7e1e5ed</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4224d9613c5948a781eb99868abed69a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ca8c07d32fff460583b8f6526f369849</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8e9b2c83809b4e2591e598fcfa5cbfb4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/747912a29e174f3586242ef7cd605cbc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b24ab760691943f19eb228297c705835</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caebc70abb7b4cf1aa96d3c8f0375075</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/200d0da50e0a4f6bb488f18011e4ac60</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/eb6518005fc24eca9395194115e26681</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7950323d10942bbbb7b39e86c00c978</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc94a102e4334180974715267cad2410</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ceefc51883474961b10e2e1c390bb153</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48c0e0c5c37c4fe6b6f40eee1832d7c6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/03b548d043654af0a9a5c5b7f96f6f16</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f56692036859489e9564f36219a818f3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c290975031634ab1bf07b4e6084577bd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/820eb36a0b51424a9f7a09a13ccd11a0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9464a8450f9b42f7acecf0c5cbb99e84</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a6fb6c7298924ff79a516e86756cebdb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a2fe1cd93e2a4e16b151da39b4c3b8ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ad74995a57574c55b9a8fb925813c422</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5f0c5e395bbd4d80ae6e618166a0ffa9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c35c9fb469ca4df2b3d38342292d256b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d72af9ad17324f4989eeac4ac6a0d336</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2636d8a5b5a464593b96d5cf1dfffea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c967fac09d1849dd93f12af68d94e59a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7f6bf4effa4f4d70a1890d1161f015be</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff5adb36f9964280b266c386117b4547</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/043e0c65eb5e4ce78d7102a3799f835d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3b10d3d76de146feaf2ad3fe900f159d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2f95ba409944b9e91401475a68f6be4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b2ae79734c7a4e07af72195b999377ca</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/753f37e828c34a88b960577d80c5b003</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2baf8c9992964f71b1b9bb5e6a5baf3f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/05bd6057527d4b458f6b2abd7fbd8d72</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd7725d8f76641d49a928e48eb461442</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/dca3d9d89fe44638910ec2975a6d3101</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5452cf6879674fcfa913e995bbb98ae3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6ee8fc51cf9944c4af25df40115d8abb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fc86830033764b67b706c9e3cfd2d510</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9998fd476883432daf491b624ffc45c4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37e3c0214bdd47519279df6d6c78c535</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c7b4b0ab81844b7ea9c7d4e9b267d547</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bb5a31d358948ea9f16f5b4520af4c6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/89851664e7af4ab1a2dbb82f2094bef8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/54919cb31ea145d6a01b4272748f742a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a32a845929a84c0190b5c6f48094796c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/104531e7984f49f2803a2d83e0087acf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/191daea6382745d981a5970d70b49308</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2552ac1019dd437bae75d1d3b3fb4f82</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63bb7ee1765248ea94aa266153953f3f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ee98c741b37d40d99b4f9c00a58ef8c5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38aa825abac241e9a8d68d4cc75402c6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d686efc044ee463f92ef148958804a44</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a06527d937d94728a3850ac28d9cb7c7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/59ac9d1e24e14c75876658621f563bc2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65da2a9aee074236a2bf9c16b96ad5ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/335166f3ad524537969d5848876c7941</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e66ee780c9914db9ac2297e83c496475</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/201f0637a92b42a984a4a9fb9972cae1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/09861b23abba42f6ab56a21c4053d9da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d09dfad0bd5c4b1398e3ae90582f3271</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/192e0a1a420b4cc9bbf22f9f5bf97b7e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1660f7ff31348a896efb217b66aa1dc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8ebe912e6b1844b0bc750b8ca6e3d439</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a80264d5e35a41c8bd626bd105a5b92f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/285af0281e8e4779a3bbfa3b1447bcc4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/90e97275b4c24d20b5dc15e598f7b065</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c112f0ea8d0d4dd080a2c40c0a2dae7c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3c726d8cea044ec0969412997d970bc9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/397cd477bd0b4b6f9f2f453af1711c7e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/860d82edda7c448f9c4f3553ed17e687</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6a21bfe6edfe44179d114045bce2769e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c2950bdb9fb243389813e1728b8b576d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b0de718148e14b708200c6d9dd9cc1ae</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/61116c79fc62472cb4b13af10abc4b3a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/da29568d3f4d42f391bd17141f7cf3f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1021334befdf4b0989a5c3484d870c77</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/41b9e24b71ed46f195562ef891b873e9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/af253d7cb2fd4acb8ad9bbeeaeb7cda5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/137db27e05e34609aba8f5c60f6ce2e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a0bd393b4bb0452fb0a18f07112ed17b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/551c2da5d23244249fa4f14d7002facc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1de7b4c8862e4b23ac8cf5fcbb6f14fa</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ce2cde1de3cd4aceaa4762d8f5a698d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/844a4c9e7eaa44b3ab67f70b63270508</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/30487c8e93cb48a6a871dee61f906ed5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de3bdcefbb6a483188e1fc32ad9de0ea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8fab97120684411fb41a0dc282d313a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c4ccf42c1df842b78cc5524b3d2dd101</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/75a15b5b4b784b4f979e2cdd30ca9b58</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fae7505bd26a40718bcf655259d65071</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06610e81bda1452ca018844aa23df943</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a402a500518141119256053126509722</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3cb2be499ef94ea789c364e14b06c9e1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d452c5f4049844bba3cdbc4c33d47083</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a9dc65003ead463eb26676c6a53f3ccb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5a60d493157b46f684e99dd833926cee</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/de2150ba1bd34ce79f84e7f0a03cd1b8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e9f490d9059942e5ac5b2198317bb5dd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6f1d8ff2d570445cb94b939c4743de21</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8d2fb7f6593a45f7a0d643687896c7a3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/736134b410db4d96b9984504fc51555b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a7d7af6c63bb4042abf8330620fdee4a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d0f003ba66e4fbd9821a5d100baa9da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9c4f5f10bb3449db896888804acfc09</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cc63d5d46a07433ebfd5929a803962f6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db79137fe50e4d5f8982058b7222ca93</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ac19194f662e42838591749859533739</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/283a33ad42fe4cecbe5f5f42cbbe513c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d9816e6fe8b848ecb85b5cea2bd8603c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd21697e646b400c95e73c3d86bd61e7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6be493ef04ff498a89db5233b882b4d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cb8a8e4b84a148b99ce4485449765da5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e0ad2a8c96b46cfacf85a57c74764f2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aeeadc3f716e4faeaf2294c48b4f504c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d73be495b1404e7eaf5b00aad9496b99</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2eb98dce5cfc439c9a51f1f725abb2f2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/903b828bb5b149fbb318ba7a18d34e4b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/224ec653479c4e9cba937af59cc14a45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/db4323dabe754472b8d4462e51e414fe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c9f2afd2858f4c30a74264e67e8e51fe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/38d183ab133f454ab82144f866ffa102</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/553bb1faf37e4e5e874be1af740d67ef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2fe4935c8c3148f3a2fe6b719ba07668</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/50ed109042dc4a63aefcc2411a0a8098</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f0efcb12fcb0463da3dc4aa1063bb0e5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fa30040c9aa49d7926f93a122eabd98</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b08223619703400d8f5a237a66586c4f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a19969511234bf2a2fb54c5b7c09dd6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/949555b077bd468ebe07f6330d42cc08</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6bcf6ab9586141799e694c3f3e01c2c8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5ac32651f8d442a589c921c47cd9ecd9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bfdafb43ae4c45f496cc129edf712770</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/93760958890c41d994cd9c3cc92eaaf8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d6662c73b87a47699949c15889254d69</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f2a362d1fbec4ed2a772206f7ecb8dce</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6c0c07533fa047869987fe9e7dfec039</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e7064cb7eabb4ee6bcbedf4eca1a63d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f86c7613be02401991d4f6427453d5d7</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c45490ec26c644ed8de00c17bcc3f502</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0593ab92b401404eb57208cdaea466b4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b943fd4f8c8e42e58128273c69fac7e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0dc852694f4e4785a7e1b5cc76bc38bb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b89644f953824248bcb363496d0b8a68</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8cf297c0ac59459f9579d0e672220c60</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/e20f28d7442b4ec2865217367b189ddd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/082b1da6201c415db75dd8aa95d73c1a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/06cfcab42368448d90778e163ee6a33f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e3bcc990cff44fe99770bec260882b0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4ededd13c50f458f9ea27baae9dfdfd9</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/471a413884124782a3a6df3457da19ea</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c907782c261e4073b7f68acd2e2deb9e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37fc4d68943642aaa6478a3003912f85</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7377d0d0458e4d308469552318cff405</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/905ee1b40f02418f8f228ff697e7611b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0d53993cbee847a6837b98e78716ccb1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bf74d8fe3d840cd9cebaafee3d57304</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a1009fb99ec04b4fa03065d5222bc1eb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/39cea04e6f684d11b41b13d4b4ed65fe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0bff11f9ada54229a7c8e11f79a93984</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1043de17a08e44b2a762147df29fbd9f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/49bfc48c590a45ed986908052d5d3392</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4abc6d53778b4837ac3491725f99b27c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9293905015474b1a930675713239213b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d2c804b85a9346f0b9ef39cea576a66e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7df24335a0604c66b095c8ee10d9d152</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/35609f8e3a9f4132ac2819299d86a9d4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4a075b4cc6844698a54b5ebd7b28efc8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/625d0982f3cf48e4a9744c69dd3eb051</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/721812c294d94edfa82950f5a72aad45</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d7546ab418524e1ab2a56c87c4739b6e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1ee359b8d90f4c54ae5be97930d4c70f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bcab36761ed5447f8ff1dececef610fe</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a30de2236e1147d894e167c603c0e3d6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1f7de2d894ba4f758962875264f557a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fde3fd2c9af34e8ba393073006c716cd</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/37a3959ba7fb4818ae09af757418d701</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8f5161b220124f479842817434f130dc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/63f278ffd4834388aaa58eb7c11b276a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b146c71b9c784b46b1d02b8a3ccd76ad</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/443fe1da11d14b31864bf807df42c48e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7a7b267b3b8d4770837d323bf6ad507f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9e761fc32494474d92df63c015164130</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7e9a14eddd4a45049ddc672a0cdee093</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/65a91c2427854da09299c948eda06739</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6003f1048db2421d9b2ab3ed89b1e685</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c0324ee028ee4f608dfb07becf58f042</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fa367e1430a3414982a4eb6b1d36cf5c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1cd5a1db9a4b4cc39024317da6592f0d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b40db5f260c44e7a97e0800732404cd4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8a6114a4f3bb4384aaa264c013fe7eb1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a09d04cb70264a66a4c60111574a24a5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/710fe6b28d374d9b915e6c30346dffef</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/48627e0d399b4f7d96658430b09bcee2</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9c6454062c264961830c094cc582eee3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cd677f64efed4070a8cf009cea147f35</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/aade66ced5e84ff1b19c4fe233a1be61</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2a9fe9872a954614a6362969bb878fa8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5bf83b7b746e4d559df41b0e9638e894</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5244d21d2fb147bcb2bf7aadf11b8940</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4df9205e6dae4cf3a139d4ccdd0865a4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52f063a160a04909961146833064cdb0</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4614873001d24a258f7ea449c9a43aae</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7ac4ac13e90f4993a77d31dd9216aa7b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/8b64b61647b5440d90c2f6475394063b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7cb015061d9b490a85a05039ed5240cc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a803c773cc4e4de88bbb823f4c17b435</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c76570b639674b66ad34751a655fa9f5</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ff39dfa470f34cf7ab0913c809f0cb8d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c999842aecf41d4a4f646897151b138</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15035e5ae21a42a7b434ca6e4009f554</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/133c86ebcc794dddaa7cea43033a2b94</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b6a569c5d5a0423f9dfff5d684a51286</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/bc6db42ffc784151ae022be80602703a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed426cb808e544409cbf60882134c470</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/c25d5c4d911e4146b5df51dcf944811c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4b93b822a9d743c89800f7b741995114</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/517dd46192e1483d96639fdbe132ec2b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/9d9440a8364f4affaea942c405cb6642</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/98d1590e42d149a39efb99f5b88a8936</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0969ef63c0b6463ea72f892b63bd7a21</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/b4b74361c1f24ea4bda54c7fe228fe02</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/25784bd9ce684393ae537492ecdb547a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5cd668d13fa0427f93d8d32afacac1d1</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/15132fbd68e541e5baa7c14b5780e16e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/94864fd043ed41d19482aee94a779804</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6039b26634ab46d7aecea79298e760d3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6dac6fc6cc0d4ce99d0807cc24057191</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/1886103af89d45f2b1567078bdfb799e</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/d498a392289b42e1bc00505d62a0595d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/4c0977d7c7c14ae0bfd17918eab7183b</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6e5b16f5811043aea72ebea56310e11a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/6905fec1b6f94bc693d18f682ce06adc</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ed6eb09eda0a42fcbdd667f7d82fa79f</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/f4dccb3085a147dfb4bbc4c4734b5e55</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/2ac0d9bc9f3e4e9eb584c4a9cfa99239</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/0ca67c3f3caa42089038687267db89da</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/7fa27bdfc8404236a2463e8f2ba940cb</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/682d491ec4ea4fe6b4fc25b8aa3e79bf</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/52eecf368af84e048f6e04d0fcb745a6</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/5904af76b10e40afbcb7e7a20d7139e3</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/caa92bb53bab460b81d9e60649741921</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/a4b410b494b541218a1dc156cbd22872</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/338b7a0eb5b941db9cf819f61e77ba08</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/13e3f9466f3b4ac6999d8952bfbf9847</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/fb45bc08d7224fa18330883b9b9d6b7c</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/ae3159a9e72b47f9b9113c360bf1123d</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/cf182ba41adf499697b5d72756f53fd8</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/3bf1b87d8f134de9a7bbdefb08cf432a</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products/detail/44f8122e8b534262af1af9358f44c1c4</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Not specified&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Battery accessories&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-ion batteries&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Capacitors&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Sodium-ion batteries&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Lithium-sulfur batteries&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Potassium/magnesium/aluminum/zinc batteries&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Air/fuel/solar&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Analytical electrodes&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Battery accessories</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Cathode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Anode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Separator</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Electrolyte</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Conductive agent</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Adhesive</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Current collector</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Analytical electrode</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Metal disk</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Energy materials,Complete battery accessories&function=Battery electrode sheet</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Glass materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Plastic materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Metal materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Ceramic materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Paper film materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Chemical materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Tetrafluoro materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Safety protection</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Office supplies</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Tools</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Laboratory consumables,Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Zero-dimensional carbon materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,One-dimensional carbon materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Two-dimensional carbon materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Three-dimensional carbon materials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Inorganic nanomaterials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Organic nanomaterials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Metal nanomaterials</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Low-dimensional materials,Others</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Equipment,Not specified</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Equipment,Equipment</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Equipment,Accessories & fixtures</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url><loc>https://www.canrud.com/products?categories=Equipment,Fuel cell manufacturing and testing equipment</loc><lastmod>2024-11-21</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url></urlset> | ||
4 | \ No newline at end of file | 4 | \ No newline at end of file |
stores/category.ts
1 | -import { ref } from 'vue' | ||
2 | -import { defineStore } from 'pinia' | ||
3 | -import type { Category, CategoryRootType } from '../type' | 1 | +import { ref } from "vue"; |
2 | +import { defineStore } from "pinia"; | ||
3 | +import type { Category, CategoryRootType } from "../type"; | ||
4 | 4 | ||
5 | -export const useCategoryStore = defineStore('category', () => { | ||
6 | - const list = ref<CategoryRootType[]>([]) | ||
7 | - const selectedCategory = ref('') // 选中的一级类别 | ||
8 | - const selectedSubCategory = ref('') // 选中的二级类别 | ||
9 | - const selectedFuncCategory = ref('') | ||
10 | - const categoryVisible = ref(true) | ||
11 | - let resetFuncValue = '' | ||
12 | - let resetCategoryValue = '' | 5 | +export const useCategoryStore = defineStore("category", () => { |
6 | + const list = ref<CategoryRootType[]>([]); | ||
7 | + const selectedCategory = ref(""); // 选中的一级类别 | ||
8 | + const selectedSubCategory = ref(""); // 选中的二级类别 | ||
9 | + const selectedFuncCategory = ref(""); | ||
10 | + const categoryVisible = ref(true); | ||
11 | + let resetFuncValue = ""; | ||
12 | + let resetCategoryValue = ""; | ||
13 | 13 | ||
14 | const getList = async () => { | 14 | const getList = async () => { |
15 | - const config = useRuntimeConfig() | 15 | + const config = useRuntimeConfig(); |
16 | // 在SSR中,数据仅在服务器端获取并传递到客户端。 | 16 | // 在SSR中,数据仅在服务器端获取并传递到客户端。 |
17 | - const { data } = await useAsyncData('category', () => $fetch('/shop/product/category', { | ||
18 | - method: 'GET', | ||
19 | - }), { | ||
20 | - server: true // 仅在服务器端获取数据 | ||
21 | - }) | 17 | + const { data } = await useAsyncData( |
18 | + "category", | ||
19 | + () => | ||
20 | + $fetch("/shop/product/category", { | ||
21 | + method: "GET", | ||
22 | + }), | ||
23 | + { | ||
24 | + server: true, // 仅在服务器端获取数据 | ||
25 | + } | ||
26 | + ); | ||
22 | 27 | ||
23 | - const rootList = data.value.data.rootCategoryList | ||
24 | - list.value = rootList || [] | ||
25 | - resetCategoryValue = selectedCategory.value = rootList[0].categoryDisplayName | ||
26 | - selectedSubCategory.value = rootList[0].list[0].id | ||
27 | - resetFuncValue = selectedFuncCategory.value = rootList[0].productFunctions[0].id | ||
28 | - } | 28 | + const rootList = data.value.data.rootCategoryList; |
29 | + list.value = rootList || []; | ||
30 | + resetCategoryValue = selectedCategory.value = | ||
31 | + rootList[0].categoryDisplayName; | ||
32 | + selectedSubCategory.value = rootList[0].list[0].id; | ||
33 | + resetFuncValue = selectedFuncCategory.value = | ||
34 | + rootList[0].productFunctions[0].id; | ||
35 | + }; | ||
29 | 36 | ||
30 | const updateCategory = (value: string) => { | 37 | const updateCategory = (value: string) => { |
31 | - selectedCategory.value = value | ||
32 | - updateFuncCategory(value === resetCategoryValue ? resetFuncValue : '') | ||
33 | - } | 38 | + selectedCategory.value = value; |
39 | + updateFuncCategory(value === resetCategoryValue ? resetFuncValue : ""); | ||
40 | + }; | ||
34 | 41 | ||
35 | const updateSubCategory = (value: string) => { | 42 | const updateSubCategory = (value: string) => { |
36 | - selectedSubCategory.value = value | ||
37 | - } | 43 | + selectedSubCategory.value = value; |
44 | + }; | ||
38 | 45 | ||
39 | const updateFuncCategory = (value?: string) => { | 46 | const updateFuncCategory = (value?: string) => { |
40 | - selectedFuncCategory.value = value || '' | ||
41 | - } | 47 | + selectedFuncCategory.value = value || ""; |
48 | + }; | ||
42 | 49 | ||
43 | const updateDisplay = (visible: boolean) => { | 50 | const updateDisplay = (visible: boolean) => { |
44 | - categoryVisible.value = visible | ||
45 | - } | ||
46 | - | 51 | + categoryVisible.value = visible; |
52 | + }; | ||
47 | return { | 53 | return { |
48 | list, | 54 | list, |
49 | selectedCategory, | 55 | selectedCategory, |
@@ -55,6 +61,6 @@ export const useCategoryStore = defineStore('category', () => { | @@ -55,6 +61,6 @@ export const useCategoryStore = defineStore('category', () => { | ||
55 | updateCategory, | 61 | updateCategory, |
56 | updateSubCategory, | 62 | updateSubCategory, |
57 | updateFuncCategory, | 63 | updateFuncCategory, |
58 | - updateDisplay | ||
59 | - } | ||
60 | -}) | 64 | + updateDisplay, |
65 | + }; | ||
66 | +}); |
stores/product_list.ts
@@ -32,7 +32,7 @@ export const useProductListStore = defineStore("productList", () => { | @@ -32,7 +32,7 @@ export const useProductListStore = defineStore("productList", () => { | ||
32 | imgList: JSON.parse( | 32 | imgList: JSON.parse( |
33 | record.productimageliststore as unknown as string | 33 | record.productimageliststore as unknown as string |
34 | ).map((item: ProductImage) => ({ | 34 | ).map((item: ProductImage) => ({ |
35 | - url: `/api/show/image?fileKey=${item.fileKey}&psize=p512`, | 35 | + url: `/api/show/image?fileKey=${item.fileKey}&psize=p256`, |
36 | })), | 36 | })), |
37 | })) || []; | 37 | })) || []; |
38 | total.value = data.value?.data?.total || 0; | 38 | total.value = data.value?.data?.total || 0; |
stores/route_query.ts
0 → 100644
1 | +import { ref } from "vue"; | ||
2 | +import { defineStore } from "pinia"; | ||
3 | + | ||
4 | +export const useRouteQuery = defineStore("routeQuery", () => { | ||
5 | + const categories = ref(); | ||
6 | + const selectedFunction = ref(); | ||
7 | + | ||
8 | + const updateCategories = (value: string) => { | ||
9 | + categories.value = value; | ||
10 | + }; | ||
11 | + | ||
12 | + const updateFunction = (value: string | null) => { | ||
13 | + selectedFunction.value = value; | ||
14 | + }; | ||
15 | + | ||
16 | + return { | ||
17 | + categories, | ||
18 | + selectedFunction, | ||
19 | + updateCategories, | ||
20 | + updateFunction, | ||
21 | + }; | ||
22 | +}); |