哈哈哈哈哈操欧洲电影,久草网在线,亚洲久久熟女熟妇视频,麻豆精品色,久久福利在线视频,日韩中文字幕的,淫乱毛视频一区,亚洲成人一二三,中文人妻日韩精品电影

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

基于PCB 板的邊倒圓角實(shí)現(xiàn)方案解析

PCB線路板打樣 ? 來(lái)源:博客園 ? 作者:pcbren ? 2021-03-02 14:11 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

當(dāng) PCB 外形是直角時(shí), 通常工程制作外形 (鑼帶) 時(shí), 會(huì)將直角或尖角的地方倒成圓角, 主要是為了防止板邊容易劃傷板且容易扎傷人

所以當(dāng)客戶沒(méi)有特殊要求時(shí), PCB 外形是直角一般會(huì)默認(rèn)倒角 0.5mm 圓角(如下圖所示)

一。 PCB 板邊倒圓角點(diǎn)分析

原 PCB 外形 如下圖圖示: 看了這個(gè) PCB 外形, 產(chǎn)生有 2 個(gè)問(wèn)題點(diǎn)。

1. 外形中哪些點(diǎn)需倒圓角?

2. 如何怎么倒圓角?

1. 外形中哪些點(diǎn)需倒圓角?

看下圖: PCB 外形倒圓角的點(diǎn), 剛好就是我們凸包需求出的點(diǎn), 接下來(lái)我們將玩轉(zhuǎn)凸包了, 只要求出凸包, 那么就可以實(shí)現(xiàn) PCB 板邊倒圓角啦。

求凸包的算法: 我們可以借鑒算法導(dǎo)論中的查找凸包的算法(加以改進(jìn)得到新的求凸包方法, 詳見(jiàn)[方法一] 與[方法二] )

2. 如何怎么倒圓角?

在下面有說(shuō)明倒角方法。

二。 求凸點(diǎn)

方法一求凸點(diǎn):[采用多輪遍歷, 一遍一遍將凹點(diǎn)踢除, 剩于的即是凸點(diǎn)]

方法一求凸點(diǎn): 代碼

/// 《summary》

/// 求最大多邊形最大凸包 1 [采用多輪遍歷將凹點(diǎn)踢除, 剩于的即是凸點(diǎn)]

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon1(List《gSur_Point》 gSur_Point_list)

{

add addCOM = new add();

bool isOK = true;

List《gSur_Point》 PointList = new List《gSur_Point》();

var isCCW = s_isCCW(gSur_Point_list);

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

if (gSur_Point_list[IndexPre].type_point》 0) continue;

if (gSur_Point_list[IndexCurrent].type_point》 0) continue;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

PointList.Add(gSur_Point_list[IndexCurrent]);

else

isOK = false;

}

List《gSur_Point》 Point2List = new List《gSur_Point》(PointList);

while (!isOK)

{

isOK = true;

PointList.Clear();

PointList.AddRange(Point2List);

Point2List.Clear();

sum = PointList.Count() - 1;

n = PointList.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

var multiVal = multi(PointList[IndexPre].p, PointList[IndexCurrent].p, PointList[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

Point2List.Add(PointList[IndexCurrent]);

else

isOK = false;

}

}

return Point2List;

}

方法二求凸包:[采用一邊遍歷找出凸點(diǎn)并加入隊(duì)列, 并同時(shí)將隊(duì)列中的凸點(diǎn)隊(duì)列中找出凹點(diǎn)踢除]

方法二求凸包代碼:

/// 《summary》

/// 求最大多邊形最大凸包 2 [采用一邊遍歷找出凸點(diǎn)并加入隊(duì)列, 并同時(shí)將隊(duì)列中的凸點(diǎn)隊(duì)列中找出凹點(diǎn)踢除]

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon2(List《gSur_Point》 gSur_Point_list)

{

Stack《gSur_Point》 StackPoint = new Stack《gSur_Point》();

var isCCW = s_isCCW(gSur_Point_list);

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

if (gSur_Point_list[IndexPre].type_point》 0) continue;

if (gSur_Point_list[IndexCurrent].type_point》 0) continue;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

{

L1:

if (StackPoint.Count》 1)

{

var Top1Point = StackPoint.Pop();

var Top2Point = StackPoint.Peek();

multiVal = multi(Top2Point.p, Top1Point.p, gSur_Point_list[IndexCurrent].p);

if ((isCCW && multiVal》 0) || (!isCCW && multiVal 《0))

StackPoint.Push(Top1Point);

else

goto L1;

}

StackPoint.Push(gSur_Point_list[IndexCurrent]);

}

}

return StackPoint.Reverse().ToList();

}

方法三求凸包:[按算法導(dǎo)論 Graham 掃描法 各節(jié)點(diǎn)按方位角 + 距離 逆時(shí)針排序 依次檢查, 當(dāng)不屬凸點(diǎn)于則彈出]

方法三求凸包代碼

/// 《summary》

/// 求最大多邊形最大凸包 5 [按算法導(dǎo)論 Graham 掃描法 各節(jié)點(diǎn)按方位角 + 距離 逆時(shí)針排序 依次檢查, 當(dāng)不屬凸點(diǎn)于則彈出]

/// 由于把各點(diǎn)的排列順序重新排序了, 只支持折線節(jié)點(diǎn)(當(dāng)存在弧節(jié)點(diǎn)時(shí)會(huì)出異常 !?。。?/p>

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public List《gSur_Point》 s_convex_polyon3(List《gSur_Point》 gSur_Point_list)

{

var LeftBottomPoint = gSur_Point_list.OrderBy(tt =》 tt.p.y).ThenBy(tt =》 tt.p.x).FirstOrDefault();

gSur_Point_list.RemoveAt(gSur_Point_list.Count - 1);

gSur_Point_list.ForEach(tt =》

{

tt.Value = p2p_di(LeftBottomPoint.p, tt.p);

tt.Angle = p_ang(LeftBottomPoint.p, tt.p);

}

);

gSur_Point_list = gSur_Point_list.OrderBy(tt =》 tt.Angle).ThenBy(tt =》 tt.Value).ToList();

gSur_Point_list.Add(gSur_Point_list[0]);

Stack《gSur_Point》 StackPoint = new Stack《gSur_Point》();

var isCCW = true;

int sum = gSur_Point_list.Count() - 1;

int n = gSur_Point_list.Count();

for (int i = 0; i 《n; i++)

{

int IndexPre = (i - 1) % sum;

if (IndexPre == -1) IndexPre = sum - 1;

int IndexCurrent = i % sum;

int IndexNext = (i + 1) % sum;

var multiVal = multi(gSur_Point_list[IndexPre].p, gSur_Point_list[IndexCurrent].p, gSur_Point_list[IndexNext].p);

if (isCCW && multiVal》 0)

{

L1:

if (StackPoint.Count》 1)

{

var Top1Point = StackPoint.Pop();

var Top2Point = StackPoint.Peek();

multiVal = multi(Top2Point.p, Top1Point.p, gSur_Point_list[IndexCurrent].p);

if (isCCW && multiVal》 0)

StackPoint.Push(Top1Point);

else

goto L1;

}

StackPoint.Push(gSur_Point_list[IndexCurrent]);

}

}

return StackPoint.Reverse().ToList();

}

公共方法與數(shù)據(jù)結(jié)構(gòu)

/// 《summary》

/// Surface 坐標(biāo)泛型集類 1

/// 《/summary》

public class gSur_Point

{

public gSur_Point()

{ }

public gSur_Point(double x_val, double y_val, byte type_point_)

{

this.p.x = x_val;

this.p.y = y_val;

this.type_point = type_point_;

}

public gSur_Point(gPoint p, byte type_point_)

{

this.p = p;

this.type_point = type_point_;

}

public gPoint p;

/// 《summary》

/// 0 為折點(diǎn) 1 為順時(shí)針 2 為逆時(shí)針

/// 《/summary》

public byte type_point { get; set; } = 0;

/// 《summary》

/// 值

/// 《/summary》

public double Value { get; set; } = 0;

/// 《summary》

/// 角度

/// 《/summary》

public double Angle { get; set; } = 0;

/// 《summary》

/// 標(biāo)記

/// 《/summary》

public bool isFalg { get; set; }

}

/// 《summary》

/// 點(diǎn) 數(shù)據(jù)類型 (XY)

/// 《/summary》

public struct gPoint

{

public gPoint(gPoint p_)

{

this.x = p_.x;

this.y = p_.y;

}

public gPoint(double x_val, double y_val)

{

this.x = x_val;

this.y = y_val;

}

public double x;

public double y;

public static gPoint operator +(gPoint p1, gPoint p2)

{

p1.x += p2.x;

p1.y += p2.y;

return p1;

}

public static gPoint operator -(gPoint p1, gPoint p2)

{

p1.x -= p2.x;

p1.y -= p2.y;

return p1;

}

public static gPoint operator +(gPoint p1, double val)

{

p1.x += val;

p1.y += val;

return p1;

}

public static bool operator ==(gPoint p1, gPoint p2)

{

return (p1.x == p2.x && p1.y == p2.y);

}

public static bool operator !=(gPoint p1, gPoint p2)

{

return !(p1.x == p2.x && p1.y == p2.y);

}

}

/// 《summary》

/// 求叉積 判斷[點(diǎn) P 與線 L] 位置關(guān)系[小于 0] 在右邊 [大于 0] 在左邊 [等于 0] 共線

/// 《/summary》

/// 《param name=“ps”》《/param》

/// 《param name=“pe”》《/param》

/// 《param name=“p”》《/param》

/// 《returns》[小于 0] 在右邊 [大于 0] 在左邊 [等于 0] 共線《/returns》

public double multi(gPoint ps, gPoint pe, gPoint p)

{

return ((ps.x - p.x) * (pe.y - p.y) - (pe.x - p.x) * (ps.y - p.y));

}

/// 《summary》

/// 檢測(cè) Surface 是否逆時(shí)針

/// 《/summary》

/// 《param name=“gSur_Point_list”》《/param》

/// 《returns》《/returns》

public bool s_isCCW(List《gSur_Point》 gSur_Point_list)

{

double d = 0;

int n = gSur_Point_list.Count() - 1;

for (int i = 0; i 《n; i++)

{

if (gSur_Point_list.type_point》 0) continue;

int NextI = i + 1 + (gSur_Point_list[i + 1].type_point》 0 ? 1 : 0);

d += -0.5 * (gSur_Point_list[NextI].p.y + gSur_Point_list.p.y) * (gSur_Point_list[NextI].p.x - gSur_Point_list.p.x);

}

return d》 0;

}

/// 《summary》

/// 返回兩點(diǎn)之間歐氏距離

/// 《/summary》

/// 《param name=“p1”》《/param》

/// 《param name=“p2”》《/param》

/// 《returns》《/returns》

public double p2p_di(gPoint p1, gPoint p2)

{

return Math.Sqrt((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y));

}

/// 《summary》

/// 求方位角

/// 《/summary》

/// 《param name=“ps”》《/param》

/// 《param name=“pe”》《/param》

/// 《returns》《/returns》

public double p_ang(gPoint ps, gPoint pe)

{

double a_ang = Math.Atan((pe.y - ps.y) / (pe.x - ps.x)) / Math.PI * 180;

// 象限角 轉(zhuǎn)方位角 計(jì)算所屬象限 并求得方位角

if (pe.x》= ps.x && pe.y》= ps.y) //↗ 第一象限

{

return a_ang;

}

else if (?。╬e.x》= ps.x) && pe.y》= ps.y) // ↖ 第二象限

{

return a_ang + 180;

}

else if (?。╬e.x》= ps.x) && ?。╬e.y》= ps.y)) //↙ 第三象限

{

return a_ang + 180;

}

else if (pe.x》= ps.x && !(pe.y》= ps.y)) // ↘ 第四象限

{

return a_ang + 360;

}

else

{

return a_ang;

}

}

View Code

三。 板邊凸點(diǎn)倒圓角方法

方法一。 也最簡(jiǎn)單的倒角方法, 我們將 PCB 板邊凸點(diǎn)找出來(lái)后, 可以直接借助 genesis 倒角功能就可以實(shí)現(xiàn)了

當(dāng)然但偶爾會(huì)報(bào)錯(cuò)的, 且當(dāng) N 個(gè)小線段組成的尖角倒角會(huì)出錯(cuò)(要實(shí)現(xiàn)完美效果只有自己寫倒角算法啦)

方法二: 自己寫倒角算法, 這個(gè)算法和加內(nèi)角孔算法類似 (這里只是介紹簡(jiǎn)單的倒角) 考慮特殊的需要擴(kuò)展

四。 凸點(diǎn)加倒圓角實(shí)現(xiàn)效果

編輯:hfy

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • pcb
    pcb
    +關(guān)注

    關(guān)注

    4417

    文章

    23964

    瀏覽量

    426148
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評(píng)論

    相關(guān)推薦
    熱點(diǎn)推薦

    步進(jìn)電機(jī)控制方案中驅(qū)動(dòng)的核心作用與技術(shù)解析

    指令,通過(guò)能量轉(zhuǎn)換、信號(hào)放大、閉環(huán)調(diào)節(jié)與安全保護(hù),實(shí)現(xiàn)對(duì)步進(jìn)電機(jī)的精準(zhǔn)驅(qū)動(dòng)。本文從步進(jìn)電機(jī)控制的底層邏輯出發(fā),系統(tǒng)拆解驅(qū)動(dòng)在指令解析、功率驅(qū)動(dòng)、運(yùn)行優(yōu)化、安全防護(hù)四大維度的核心作用,結(jié)合典型硬件架構(gòu)與工程案例,揭示驅(qū)動(dòng)
    發(fā)表于 04-10 15:34 ?265次閱讀

    SiLM2648-AQ智能高開(kāi)關(guān):重新定義汽車電源的eFuse保護(hù)方案

    熔斷(eFuse)解決方案,有效解決了傳統(tǒng)方案過(guò)流保護(hù)不精準(zhǔn)、故障診斷滯后等痛點(diǎn)。特性SiLM2648-AQ 圍繞智能保護(hù)與精準(zhǔn)控制設(shè)計(jì),具備以下卓越特性: 高精度可編程電流檢測(cè):通過(guò)外部高分流
    發(fā)表于 03-20 08:20

    12V3A隔離電源方案LP3798ESM+LP10R060SD(36W充電器適配器電源方案

    Input Voltage: 90Vac~264Vac-47~63Hz; Output Voltage: 12V3A; Ambient temperature: 40C;PCB尺寸
    發(fā)表于 03-02 17:28

    2025年PCB內(nèi)置板載天線技術(shù)特點(diǎn)及應(yīng)用方案解析

    隨著無(wú)線通信技術(shù)的迅猛發(fā)展,PCB天線(Printed Circuit Board Antenna,印刷電路天線)憑借其小型化、成本低、易于批量生產(chǎn)和良好的性能,在物聯(lián)網(wǎng)(IoT)、智能硬件、5G
    的頭像 發(fā)表于 02-01 10:48 ?741次閱讀

    pcb最少幾塊?

    BOM配單、SMT貼裝及元器件采銷等環(huán)節(jié),詳細(xì)解析行業(yè)規(guī)范與操作實(shí)踐,并介紹一站式智造服務(wù)平臺(tái)——拍明芯城(www.iczoom.com)的服務(wù)優(yōu)勢(shì)。 一、PCB的最小數(shù)量要求 PCB
    的頭像 發(fā)表于 12-26 17:57 ?390次閱讀
    <b class='flag-5'>pcb</b>打<b class='flag-5'>板</b>最少幾塊?

    主板到IO連接線核心技術(shù)與方案解析

    一、主板到IO連接線核心技術(shù)與雙品電子FFCSP方案解析1.1核心定義與主要功能主板到IO連接線(又稱對(duì)
    的頭像 發(fā)表于 12-24 17:53 ?497次閱讀
    主板到IO<b class='flag-5'>板</b>連接線核心技術(shù)與<b class='flag-5'>方案</b><b class='flag-5'>解析</b>

    SCH1600 PCB 設(shè)計(jì)解析:助力快速原型開(kāi)發(fā)

    SCH1600 PCB 設(shè)計(jì)解析:助力快速原型開(kāi)發(fā) 在電子設(shè)計(jì)領(lǐng)域,快速原型開(kāi)發(fā)是產(chǎn)品迭代和創(chuàng)新的關(guān)鍵環(huán)節(jié)。今天,我們就來(lái)深入了解一下 Murata 的 SCH1600 Chip Carrier
    的頭像 發(fā)表于 12-16 16:35 ?436次閱讀

    SCH1600 PCB規(guī)格與設(shè)計(jì)解析

    SCH1600 PCB規(guī)格與設(shè)計(jì)解析 在電子設(shè)計(jì)領(lǐng)域,快速原型開(kāi)發(fā)是推動(dòng)創(chuàng)新的關(guān)鍵環(huán)節(jié)。今天我們要探討的SCH1600 Chip Carrier PCB,就是一款專為實(shí)現(xiàn)快速原型開(kāi)發(fā)而
    的頭像 發(fā)表于 12-16 15:50 ?618次閱讀

    SycoTec自動(dòng)換刀主軸:PCB加工的精度與效率革新方案

    ,推出專為PCB加工場(chǎng)景打造的自動(dòng)換刀主軸系列,以“高轉(zhuǎn)速、高精度、高穩(wěn)定性”為核心,為PCB加工提供了革命性解決方案,成為電子制造企業(yè)的優(yōu)選裝備。
    的頭像 發(fā)表于 12-16 09:32 ?398次閱讀
    SycoTec自動(dòng)換刀主軸:<b class='flag-5'>PCB</b>分<b class='flag-5'>板</b>加工的精度與效率革新<b class='flag-5'>方案</b>

    PCB打樣避坑指南:PCB打樣全流程解析

    及分析: ? PCB打樣注意事項(xiàng) 一、前期準(zhǔn)備:確保原始數(shù)據(jù)精準(zhǔn)解析 實(shí)物完整性檢查 原始PCB需完整無(wú)損,殘缺或損傷可能導(dǎo)致逆向工程
    的頭像 發(fā)表于 11-04 09:23 ?1175次閱讀
    <b class='flag-5'>PCB</b>抄<b class='flag-5'>板</b>打樣避坑指南:<b class='flag-5'>PCB</b>抄<b class='flag-5'>板</b>打樣全流程<b class='flag-5'>解析</b>

    PCB線路激光打碼機(jī):賦能電子制造的高效標(biāo)識(shí)解決方案

    在電子制造行業(yè)飛速發(fā)展的浪潮中,PCB(PrintedCircuitBoard,印制電路)作為電子產(chǎn)品的“骨架”,其生產(chǎn)質(zhì)量與追溯管理至關(guān)重要。而PCB線路激光打碼機(jī),作為
    的頭像 發(fā)表于 09-22 10:35 ?1404次閱讀
    <b class='flag-5'>PCB</b>線路<b class='flag-5'>板</b>激光打碼機(jī):賦能電子制造的高效標(biāo)識(shí)解決<b class='flag-5'>方案</b>

    PCB全流程解析:從拆解到測(cè)試,技術(shù)要點(diǎn)全揭秘!

    一站式PCBA加工廠家今天為大家講講PCB的完整流程是什么?PCB的完整流程與技術(shù)要點(diǎn)。PCB
    的頭像 發(fā)表于 07-26 16:22 ?2031次閱讀

    PCBA加工必知!工藝預(yù)留的原因、方式與重要性全解析

    一站式PCBA加工廠家今天為大家講講PCBA加工中為什么要預(yù)留工藝?預(yù)留工藝的方式及重要性。在PCBA加工過(guò)程中,預(yù)留工藝是一個(gè)至關(guān)重要的環(huán)節(jié)。許多客戶在設(shè)計(jì)電路時(shí)可能會(huì)忽略這
    的頭像 發(fā)表于 06-24 09:15 ?941次閱讀

    芯片內(nèi)嵌式PCB封裝技術(shù)方案解析&amp;quot;七部曲&amp;quot; | 第二曲:市場(chǎng)主流玩家與技術(shù)方案解讀

    以下完整內(nèi)容發(fā)表在「SysPro電力電子技術(shù)」知識(shí)星球-《芯片內(nèi)嵌式PCB封裝技術(shù)方案全面解析的七部曲》系列文章-SysPro原創(chuàng)文章,僅用于SysPro內(nèi)部使用-本篇為節(jié)選,完整內(nèi)容會(huì)在知識(shí)星球
    的頭像 發(fā)表于 06-13 06:48 ?2987次閱讀
    芯片內(nèi)嵌式<b class='flag-5'>PCB</b>封裝技術(shù)<b class='flag-5'>方案</b><b class='flag-5'>解析</b>&amp;quot;七部曲&amp;quot; | 第二曲:市場(chǎng)主流玩家與技術(shù)<b class='flag-5'>方案</b>解讀

    一文讀懂:?jiǎn)螌印⒍鄬?、特殊材質(zhì) PCB 加工方式全解析

    一站式PCBA加工廠家今天為大家講講單層、多層及特殊材質(zhì)PCB的加工方式有哪些?單層、多層及特殊材質(zhì)PCB加工方式。在電子產(chǎn)品制造過(guò)程中,PCB
    的頭像 發(fā)表于 05-06 08:59 ?1147次閱讀
    佛冈县| 江口县| 兴宁市| 齐齐哈尔市| 海城市| 河北区| 漳浦县| 通化县| 井冈山市| 磐安县| 大方县| 织金县| 梓潼县| 宜兰县| 萨嘎县| 拉萨市| 获嘉县| 合川市| 宜城市| 抚顺市| 大姚县| 宁波市| 瑞丽市| 武平县| 安塞县| 兰溪市| 华坪县| 西峡县| 绥滨县| 行唐县| 连江县| 绥德县| 西乡县| 兴隆县| 兴安县| 乌审旗| 渝中区| 浮山县| 蓝山县| 申扎县| 疏附县|