1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
use polars::lazy::dsl::concat_list;
use polars::prelude::*;
use pregel_rs::pregel::Column;
use pregel_rs::pregel::Column::{Custom, Dst, Id};
use wikidata_rs::dtype::DataType;

/// The above code is defining a trait named `Validate` with a single method
/// `validate`. This trait can be implemented by any type that wants to provide
/// validation functionality. The `validate` method takes in a parameter `prev` of
/// type `Expr` and returns an `Expr`. The implementation of this method will
/// perform some validation on the input `self` and return a modified `Expr` based
/// on the validation result. The `pub(crate)` keyword specifies that this trait is
/// only accessible within the current crate.
pub(crate) trait Validate {
    fn validate(self, prev: Expr) -> Expr;
}

/// The above code is defining an enum called `Shape` in Rust. It has five variants:
/// `TripleConstraint`, `ShapeReference`, `ShapeComposite`, `ShapeLiteral`, and
/// `Cardinality`. Each variant can hold different types of data. `TripleConstraint`
/// holds a `TripleConstraint` struct, `ShapeReference` holds a reference to another
/// `Shape` object, `ShapeComposite` holds a `ShapeComposite` struct, `ShapeLiteral`
/// holds a `ShapeLiteral` struct, and `Cardinality` holds a reference to a
/// `Cardinality` object. The `#[derive]
#[derive(Clone, Debug, PartialEq)]
pub enum Shape {
    TripleConstraint(TripleConstraint),
    ShapeReference(Box<ShapeReference>),
    ShapeComposite(ShapeComposite),
    ShapeLiteral(ShapeLiteral),
    Cardinality(Box<Cardinality>),
}

/// The above code is defining an enumeration type `Bound` in Rust. The `Bound` type
/// has two variants: `Inclusive` and `Exclusive`, each of which takes a single `u8`
/// value as an argument. The `#[derive(Clone, Debug, PartialEq)]` attribute is used
/// to automatically generate implementations of the `Clone`, `Debug`, and
/// `PartialEq` traits for the `Bound` type.
#[derive(Clone, Debug, PartialEq)]
pub enum Bound {
    Inclusive(u8),
    Exclusive(u8),
}

/// The above code is implementing a method `get_label` for the `Shape` struct. This
/// method returns the label of the shape, which is determined by matching the type
/// of the shape and returning the label of the corresponding shape variant. If the
/// shape is of type `Cardinality`, the label of the underlying shape is returned.
impl Shape {
    /// This function returns the label of a given shape.
    ///
    /// Returns:
    ///
    /// The function `get_label` returns an unsigned 8-bit integer, which represents the
    /// label of a shape. The label is obtained by matching the shape with one of the
    /// five possible variants of the `Shape` enum, and then returning the label of the
    /// corresponding shape. If the shape is a `Cardinality` shape, the function
    /// recursively calls `get_label` on the inner shape to obtain its
    pub fn get_label(&self) -> u8 {
        match self {
            Shape::TripleConstraint(shape) => shape.label,
            Shape::ShapeReference(shape) => shape.label,
            Shape::ShapeComposite(shape) => shape.label,
            Shape::ShapeLiteral(shape) => shape.label,
            Shape::Cardinality(shape) => shape.shape.get_label(),
        }
    }
}

/// The `TripleConstraint` struct represents a constraint on a triple with a label,
/// property ID, and destination ID.
///
/// Properties:
///
/// * `label`: The label is a u8 type property that represents a label associated
/// with the triple constraint.
/// * `property_id`: `property_id` is a field in the `TripleConstraint` struct that
/// represents the identifier of the property that the constraint is applied to. It
/// is of type `u32`, which means it can hold an unsigned 32-bit integer value. This
/// field is used to specify the property that the constraint
/// * `dst`: `dst` stands for "destination" and is of type `u32`. It likely
/// represents the ID of the node that the triple constraint is pointing to.
#[derive(Clone, Debug, PartialEq)]
pub struct TripleConstraint {
    label: u8,
    property_id: u32,
    dst: u32,
}

/// The `ShapeReference` struct contains a label, property ID, and a reference to a
/// `Shape` object.
///
/// Properties:
///
/// * `label`: The label is a u8 (unsigned 8-bit integer) that represents a unique
/// identifier for the ShapeReference object.
/// * `property_id`: `property_id` is a `u32` (unsigned 32-bit integer) that
/// represents the unique identifier of a property associated with the
/// `ShapeReference`. This identifier can be used to retrieve additional information
/// about the property from a database or other data source.
/// * `reference`: `reference` is a field of type `Shape` that is contained within
/// the `ShapeReference` struct. It is likely a reference to another instance of the
/// `Shape` struct.
#[derive(Clone, Debug, PartialEq)]
pub struct ShapeReference {
    label: u8,
    property_id: u32,
    reference: Shape,
}

/// The `ShapeComposite` struct represents a composite shape made up of multiple
/// `Shape` objects, with a label assigned to it.
///
/// Properties:
///
/// * `label`: The `label` property is a `u8` value that represents a label or
/// identifier for the `ShapeComposite` object.
/// * `shapes`: `shapes` is a vector of `Shape` objects that are part of the
/// `ShapeComposite`. It can hold any number of `Shape` objects and allows for easy
/// manipulation of the composite as a whole.
#[derive(Clone, Debug, PartialEq)]
pub struct ShapeComposite {
    label: u8,
    shapes: Vec<Shape>,
}

/// The `ShapeLiteral` struct represents a shape with a label, property ID, and data
/// type.
///
/// Properties:
///
/// * `label`: The `label` property is a u8 (unsigned 8-bit integer) that represents
/// a label or identifier for the shape.
/// * `property_id`: `property_id` is a field of type `u32` in the `ShapeLiteral`
/// struct. It is likely used to identify a specific property of the shape
/// represented by the `ShapeLiteral`.
/// * `dtype`: `dtype` is a property of the `ShapeLiteral` struct that represents
/// the data type of the shape. It is of type `DataType`, which is likely an enum
/// that defines the possible data types that the shape can have.
#[derive(Clone, Debug, PartialEq)]
pub struct ShapeLiteral {
    label: u8,
    property_id: u32,
    dtype: DataType,
}

/// The `Cardinality` type represents the shape and bounds of a set or sequence.
///
/// Properties:
///
/// * `shape`: The `shape` property is a `Shape` enum that represents the shape of
/// the cardinality. It could be one of the following:
/// * `min`: `min` is a property of the `Cardinality` struct that represents the
/// minimum number of elements allowed in the associated `Shape`. It is of type
/// `Bound`, which is likely an enum that can represent either a specific integer
/// value or an unbounded value (e.g. `Bound::Finite
/// * `max`: `max` is a property of the `Cardinality` struct that represents the
/// maximum number of elements that can be contained within the shape defined by the
/// `shape` property. It is of type `Bound`, which is an enum that can either be
/// `Finite(usize)` to represent a specific number
#[derive(Clone, Debug, PartialEq)]
pub struct Cardinality {
    shape: Shape,
    min: Bound,
    max: Bound,
}

/// The above code is implementing a new function for the `TripleConstraint` struct
/// in Rust. The function takes in three parameters: `label` of type `u8`,
/// `property_id` of type `u32`, and `dst` of type `u32`. It creates a new instance
/// of the `TripleConstraint` struct with the given parameters and returns it.
impl TripleConstraint {
    /// This is a constructor function that creates a new instance of a struct with
    /// three fields: label, property_id, and dst.
    ///
    /// Arguments:
    ///
    /// * `label`: The label parameter is of type u8 and represents a label associated
    /// with the object being created. It could be used to identify or categorize the
    /// object in some way.
    /// * `property_id`: property_id is a 32-bit unsigned integer that represents the ID
    /// of a property. It is used as a parameter in the constructor of a struct or class
    /// to initialize the property_id field of the object being created.
    /// * `dst`: `dst` is a parameter of type `u32` which represents the destination
    /// node ID of a directed edge in a graph. This parameter is used in the `new`
    /// function to create a new instance of a struct that represents a directed edge in
    /// a graph.
    ///
    /// Returns:
    ///
    /// The `new` function is returning an instance of the struct that it belongs to.
    /// The struct is not specified in the code snippet provided, so it is not possible
    /// to determine the exact type being returned.
    pub fn new(label: u8, property_id: u32, dst: u32) -> Self {
        Self {
            label,
            property_id,
            dst,
        }
    }
}

/// The above code is implementing a conversion from a `TripleConstraint` struct to
/// a `Shape` enum using the `From` trait. It creates a new `Shape` enum variant
/// called `TripleConstraint` and assigns the value of the `TripleConstraint` struct
/// to it. This allows for easier conversion between the two types in Rust code.
impl From<TripleConstraint> for Shape {
    fn from(value: TripleConstraint) -> Self {
        Shape::TripleConstraint(value)
    }
}

/// The above code is implementing the `validate` function for the
/// `TripleConstraint` struct, which is a part of a larger Rust program. The
/// `validate` function takes in a `prev` expression and returns an expression that
/// represents the validation of the `TripleConstraint`.
impl Validate for TripleConstraint {
    /// This function validates an expression by checking if a certain condition is met
    /// and returning a value based on the result.
    ///
    /// Arguments:
    ///
    /// * `prev`: `prev` is an `Expr` object representing the previous expression in a
    /// chain of expressions. It is used in the `otherwise` clause of the `when`
    /// expression to return the previous expression if none of the conditions in the
    /// `when` expression are met.
    ///
    /// Returns:
    ///
    /// The `validate` function is returning an `Expr` object. The value of this
    /// expression depends on the result of the `when` function. If the condition
    /// specified in the `when` function is true, then the `then` function will return a
    /// `lit` expression with the value of `self.label`. Otherwise, the `otherwise`
    /// function will return the `prev` expression.
    fn validate(self, prev: Expr) -> Expr {
        when(
            Column::edge(Dst)
                .eq(lit(self.dst))
                .and(Column::edge(Custom("property_id")).eq(lit(self.property_id))),
        )
        .then(lit(self.label))
        .otherwise(prev)
    }
}

/// The above code is implementing a method for a struct called `ShapeReference`.
/// The `new` method takes in a `label` of type `u8`, a `property_id` of type `u32`,
/// and a `dst` of type `Shape`, and returns a new instance of `ShapeReference` with
/// those values. The `get_reference` method takes in `self` and returns the
/// `reference` field of the `ShapeReference` instance.
impl ShapeReference {
    /// This is a constructor function that creates a new instance of a struct with a
    /// label, property ID, and reference to a shape.
    ///
    /// Arguments:
    ///
    /// * `label`: The label is a u8 value that represents the type of the property. For
    /// example, a label of 0 could represent a string property, while a label of 1
    /// could represent a numeric property.
    /// * `property_id`: The `property_id` parameter is a 32-bit unsigned integer that
    /// represents the ID of a property associated with a shape. It is used as a unique
    /// identifier for the property.
    /// * `dst`: `dst` is a parameter of type `Shape` which represents the destination
    /// shape of a relationship. It is used in the context of creating a new
    /// relationship instance with the given `label`, `property_id`, and `dst`.
    ///
    /// Returns:
    ///
    /// The `new` function is returning an instance of the `Self` struct, which contains
    /// the `label`, `property_id`, and `reference` fields.
    pub fn new(label: u8, property_id: u32, dst: Shape) -> Self {
        Self {
            label,
            property_id,
            reference: dst,
        }
    }

    /// This Rust function returns a Shape reference.
    ///
    /// Returns:
    ///
    /// A `Shape` object is being returned.
    pub fn get_reference(self) -> Shape {
        self.reference
    }
}

/// The above code is implementing the `From` trait for the `ShapeReference` struct,
/// which allows creating a `Shape` enum variant `ShapeReference` from a
/// `ShapeReference` struct. The `ShapeReference` struct is wrapped in a `Box` and
/// then converted to the `Shape` enum variant `ShapeReference`.
impl From<ShapeReference> for Shape {
    fn from(value: ShapeReference) -> Self {
        Shape::ShapeReference(Box::from(value))
    }
}

/// The above code is implementing the `validate` function for the `ShapeReference`
/// struct, which is a part of a larger codebase. The `validate` function takes in a
/// previous expression `prev` and returns an expression.
impl Validate for ShapeReference {
    /// This function validates an expression based on certain conditions and returns a
    /// new expression.
    ///
    /// Arguments:
    ///
    /// * `prev`: `prev` is an `Expr` object representing the previous value of a
    /// property. It is used in the `otherwise` clause of a `when` expression to return
    /// the previous value if the conditions in the `when` clause are not met.
    ///
    /// Returns:
    ///
    /// The `validate` function is returning an `Expr` object. The value of this
    /// expression depends on the result of the `when` function. If the condition
    /// specified in the `when` function is true, then the `then` function will return a
    /// `lit` expression with the value of `self.label`. Otherwise, the `otherwise`
    /// function will return the `prev` parameter that was passed
    fn validate(self, prev: Expr) -> Expr {
        when(
            Column::dst(Custom("labels"))
                .arr()
                .contains(lit(self.reference.get_label()))
                .and(Column::edge(Custom("property_id")).eq(lit(self.property_id))),
        )
        .then(lit(self.label))
        .otherwise(prev)
    }
}

/// This is an implementation of the `ShapeComposite` struct, which defines two
/// methods: `new` and `get_shapes`.
impl ShapeComposite {
    /// This is a constructor function that creates a new instance of a struct with a
    /// label and a vector of shapes.
    ///
    /// Arguments:
    ///
    /// * `label`: The `label` parameter is of type `u8` and represents a label or
    /// identifier for the group of shapes.
    /// * `shapes`: `shapes` is a vector of `Shape` objects. It is a parameter of the
    /// `new` function and is used to initialize the `shapes` field of the struct. The
    /// `shapes` field is a vector that holds all the shapes that belong to the object.
    ///
    /// Returns:
    ///
    /// The `new` function is returning an instance of the struct that it is defined in.
    /// The struct has two fields: `label` of type `u8` and `shapes` of type
    /// `Vec<Shape>`. The `Self` keyword refers to the struct itself, so the function is
    /// returning an instance of that struct with the specified `label` and `shapes`.
    pub fn new(label: u8, shapes: Vec<Shape>) -> Self {
        Self { label, shapes }
    }

    /// This function returns a vector of shapes.
    ///
    /// Returns:
    ///
    /// A vector of `Shape` objects is being returned. The `get_shapes` function is a
    /// method of some struct or class that has a field called `shapes`, which is a
    /// collection of `Shape` objects. The `to_vec` method is called on this collection
    /// to create a new vector containing the same `Shape` objects. This new vector is
    /// then returned by the function.
    pub fn get_shapes(&self) -> Vec<Shape> {
        self.shapes.to_vec()
    }
}

/// This is an implementation of the `From` trait for the `ShapeComposite` struct.
/// The `From` trait is a Rust language feature that allows for automatic conversion
/// between types. In this case, it allows a `ShapeComposite` object to be converted
/// into a `Shape` enum variant.
impl From<ShapeComposite> for Shape {
    fn from(value: ShapeComposite) -> Self {
        Shape::ShapeComposite(value)
    }
}

/// This is an implementation of the `Validate` trait for the `ShapeComposite`
/// struct. The `Validate` trait defines a method `validate` that takes an `Expr`
/// argument and returns an `Expr`. The purpose of this trait is to provide a way to
/// validate whether a given `Expr` satisfies certain conditions.
impl Validate for ShapeComposite {
    /// This function validates an expression by checking if all the labels in its
    /// shapes are present in a specific column and concatenating it with a previous
    /// expression if possible.
    ///
    /// Arguments:
    ///
    /// * `prev`: `prev` is an `Expr` object representing the previous expression in a
    /// chain of expressions. It is used in the `otherwise` method call at the end of
    /// the `validate` function to return the previous expression if the `when`
    /// condition is not satisfied.
    ///
    /// Returns:
    ///
    /// The `validate` function is returning an `Expr` object. The returned value is the
    /// result of a chained method call on a `when` expression. The `when` expression
    /// checks if all the labels of the shapes in `self.shapes` are in the
    /// `Column::msg(None)` list. If the condition is true, it concatenates `self.label`
    /// and `prev` using the `
    fn validate(self, prev: Expr) -> Expr {
        when(self.shapes.iter().fold(lit(true), |acc, shape| {
            acc.and(lit(shape.get_label()).is_in(Column::msg(None)))
        }))
        .then(match concat_list([lit(self.label), prev.to_owned()]) {
            Ok(concat) => concat,
            Err(_) => prev.to_owned(),
        })
        .otherwise(prev)
    }
}

/// This is an implementation of a constructor function for the `ShapeLiteral`
/// struct. The `new` function takes three arguments: `label`, `property_id`, and
/// `dtype`, and returns a new instance of the `ShapeLiteral` struct with those
/// values. The `label` parameter is of type `u8` and represents the label of the
/// shape. The `property_id` parameter is of type `u32` and represents the ID of the
/// property that the shape is associated with. The `dtype` parameter is of type
/// `DataType` and represents the data type of the shape. The `Self` keyword refers
/// to the `ShapeLiteral` struct itself.
impl ShapeLiteral {
    pub fn new(label: u8, property_id: u32, dtype: DataType) -> Self {
        Self {
            label,
            property_id,
            dtype,
        }
    }
}

/// This is an implementation of the `Validate` trait for the `ShapeLiteral` struct.
/// The `Validate` trait defines a method `validate` that takes an `Expr` argument
/// and returns an `Expr`. The purpose of this trait is to provide a way to validate
/// whether a given `Expr` satisfies certain conditions.
impl Validate for ShapeLiteral {
    /// The function validates an expression based on certain conditions and returns a
    /// new expression or the previous one.
    ///
    /// Arguments:
    ///
    /// * `prev`: `prev` is an `Expr` object representing the previous expression in a
    /// chain of expressions. It is used in the `otherwise` clause of the `when`
    /// expression to return the previous expression if none of the conditions in the
    /// `when` expression are met.
    ///
    /// Returns:
    ///
    /// The `validate` function returns an `Expr` object. The value returned depends on
    /// the result of the `when` expression. If the condition specified in the `when`
    /// expression is true, then `self.label` is returned. Otherwise, `prev` is
    /// returned.
    fn validate(self, prev: Expr) -> Expr {
        when(
            Column::edge(Custom("dtype"))
                .eq(self.dtype)
                .and(Column::edge(Dst).eq(Column::src(Id)))
                .and(Column::edge(Custom("property_id")).eq(lit(self.property_id))),
        )
        .then(self.label)
        .otherwise(prev)
    }
}

/// This is an implementation of the `From` trait for the `ShapeLiteral` struct,
/// which allows a `ShapeLiteral` object to be converted into a `Shape` enum
/// variant. The `From` trait is a Rust language feature that allows for automatic
/// conversion between types.
impl From<ShapeLiteral> for Shape {
    fn from(value: ShapeLiteral) -> Self {
        Shape::ShapeLiteral(value)
    }
}

/// This is an implementation of the `Cardinality` struct. It defines two methods:
/// `new` and `get_shape`.
impl Cardinality {
    /// This is a constructor function that creates a new instance of a struct with a
    /// given shape, minimum bound, and maximum bound.
    ///
    /// Arguments:
    ///
    /// * `shape`: The shape parameter is of type Shape and represents the geometric
    /// shape of an object. It could be a circle, rectangle, triangle, or any other
    /// shape that can be defined mathematically.
    /// * `min`: `min` is a parameter of type `Bound` that represents the minimum bounds
    /// of the shape. It is used in the constructor of a struct to create a new instance
    /// of the struct with the specified shape and minimum and maximum bounds.
    /// * `max`: `max` is a parameter of type `Bound` that represents the maximum bounds
    /// of the shape. It is used in the `new` function to create a new instance of the
    /// `Self` struct.
    ///
    /// Returns:
    ///
    /// The `new` function is returning an instance of the struct that it is defined in.
    /// The type of the returned value is `Self`, which in this case refers to the
    /// struct that the `new` function is defined in.
    pub fn new(shape: Shape, min: Bound, max: Bound) -> Self {
        Self { shape, min, max }
    }

    /// This Rust function returns the shape of an object.
    ///
    /// Returns:
    ///
    /// A `Shape` object is being returned.
    pub fn get_shape(self) -> Shape {
        self.shape
    }
}

/// This is an implementation of the `Validate` trait for the `Cardinality` struct.
/// The `Validate` trait defines a method `validate` that takes an `Expr` argument
/// and returns an `Expr`. The purpose of this trait is to provide a way to validate
/// whether a given `Expr` satisfies certain conditions.
impl Validate for Cardinality {
    /// The function validates an expression based on the minimum and maximum bounds of
    /// a column's label count.
    ///
    /// Arguments:
    ///
    /// * `prev`: `prev` is an `Expr` parameter representing the previous expression
    /// that was validated. It is used in the `otherwise` clause of the `when`
    /// expression to return the previous expression if the validation fails.
    ///
    /// Returns:
    ///
    /// The `validate` function is returning an `Expr` object.
    fn validate(self, prev: Expr) -> Expr {
        let count = Column::msg(None)
            .arr()
            .eval(col("").eq(lit(self.shape.get_label())).cumsum(false), true)
            .arr()
            .first();

        when(
            match self.min {
                Bound::Inclusive(min) => count.to_owned().gt_eq(lit(min)),
                Bound::Exclusive(min) => count.to_owned().gt(lit(min)),
            }
            .and(match self.max {
                Bound::Inclusive(max) => count.lt_eq(lit(max)),
                Bound::Exclusive(max) => count.lt(lit(max)),
            }),
        )
        .then(
            match concat_list([lit(self.get_shape().get_label()), prev.to_owned()]) {
                Ok(concat) => concat,
                Err(_) => prev.to_owned(),
            },
        )
        .otherwise(prev)
    }
}

/// This implementation allows a `Cardinality` struct to be converted into a `Shape`
/// enum variant using the `From` trait. It creates a new `Shape::Cardinality`
/// variant with the `Cardinality` struct wrapped in a `Box`. This allows for more
/// flexibility in working with `Shape` objects, as a `Cardinality` can be treated
/// as a `Shape` in certain contexts.
impl From<Cardinality> for Shape {
    fn from(value: Cardinality) -> Self {
        Shape::Cardinality(Box::from(value))
    }
}