├── .gitignore ├── Bin ├── Files │ └── Clientes │ │ └── 00000000000000 │ │ └── BD │ │ └── DADOS.FDB ├── NiceAdmin(1) │ └── NiceAdmin │ │ ├── Readme.txt │ │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ ├── apple-touch-icon.png │ │ │ ├── card.jpg │ │ │ ├── favicon.png │ │ │ ├── logo.png │ │ │ ├── messages-1.jpg │ │ │ ├── messages-2.jpg │ │ │ ├── messages-3.jpg │ │ │ ├── news-1.jpg │ │ │ ├── news-2.jpg │ │ │ ├── news-3.jpg │ │ │ ├── news-4.jpg │ │ │ ├── news-5.jpg │ │ │ ├── not-found.svg │ │ │ ├── product-1.jpg │ │ │ ├── product-2.jpg │ │ │ ├── product-3.jpg │ │ │ ├── product-4.jpg │ │ │ ├── product-5.jpg │ │ │ ├── profile-img.jpg │ │ │ ├── slides-1.jpg │ │ │ ├── slides-2.jpg │ │ │ └── slides-3.jpg │ │ ├── js │ │ │ └── main.js │ │ ├── scss │ │ │ └── Readme.txt │ │ └── vendor │ │ │ ├── apexcharts │ │ │ ├── apexcharts.min.js │ │ │ └── locales │ │ │ │ ├── ar.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── en.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── fa.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── he.json │ │ │ │ ├── hi.json │ │ │ │ ├── hr.json │ │ │ │ ├── hu.json │ │ │ │ ├── hy.json │ │ │ │ ├── id.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ka.json │ │ │ │ ├── ko.json │ │ │ │ ├── lt.json │ │ │ │ ├── lv.json │ │ │ │ ├── nb.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-br.json │ │ │ │ ├── pt.json │ │ │ │ ├── rs.json │ │ │ │ ├── ru.json │ │ │ │ ├── se.json │ │ │ │ ├── sk.json │ │ │ │ ├── sl.json │ │ │ │ ├── sq.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── ua.json │ │ │ │ ├── zh-cn.json │ │ │ │ └── zh-tw.json │ │ │ ├── bootstrap-icons │ │ │ ├── bootstrap-icons.css │ │ │ ├── bootstrap-icons.json │ │ │ ├── fonts │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ └── bootstrap-icons.woff2 │ │ │ └── index.html │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── boxicons │ │ │ ├── css │ │ │ │ ├── animations.css │ │ │ │ ├── boxicons.css │ │ │ │ ├── boxicons.min.css │ │ │ │ └── transformations.css │ │ │ └── fonts │ │ │ │ ├── boxicons.eot │ │ │ │ ├── boxicons.svg │ │ │ │ ├── boxicons.ttf │ │ │ │ ├── boxicons.woff │ │ │ │ └── boxicons.woff2 │ │ │ ├── chart.js │ │ │ ├── chart.esm.js │ │ │ ├── chart.js │ │ │ ├── chart.min.js │ │ │ ├── chart.mjs │ │ │ ├── chunks │ │ │ │ ├── helpers.segment.js │ │ │ │ └── helpers.segment.mjs │ │ │ ├── docs │ │ │ │ ├── 404.html │ │ │ │ ├── api │ │ │ │ │ ├── classes │ │ │ │ │ │ ├── Animation.html │ │ │ │ │ │ ├── Animations.html │ │ │ │ │ │ ├── Animator.html │ │ │ │ │ │ ├── BasePlatform.html │ │ │ │ │ │ ├── BasicPlatform.html │ │ │ │ │ │ ├── Chart.html │ │ │ │ │ │ ├── DatasetController.html │ │ │ │ │ │ ├── DomPlatform.html │ │ │ │ │ │ └── Scale.html │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── DecimationAlgorithm.html │ │ │ │ │ │ └── UpdateModeEnum.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── ActiveDataPoint.html │ │ │ │ │ │ ├── ActiveElement.html │ │ │ │ │ │ ├── AnimationEvent.html │ │ │ │ │ │ ├── ArcBorderRadius.html │ │ │ │ │ │ ├── ArcElement.html │ │ │ │ │ │ ├── ArcHoverOptions.html │ │ │ │ │ │ ├── ArcOptions.html │ │ │ │ │ │ ├── ArcProps.html │ │ │ │ │ │ ├── BarControllerChartOptions.html │ │ │ │ │ │ ├── BarControllerDatasetOptions.html │ │ │ │ │ │ ├── BarElement.html │ │ │ │ │ │ ├── BarHoverOptions.html │ │ │ │ │ │ ├── BarOptions.html │ │ │ │ │ │ ├── BarProps.html │ │ │ │ │ │ ├── BorderRadius.html │ │ │ │ │ │ ├── BubbleControllerDatasetOptions.html │ │ │ │ │ │ ├── BubbleDataPoint.html │ │ │ │ │ │ ├── CartesianScaleOptions.html │ │ │ │ │ │ ├── CartesianScaleTypeRegistry.html │ │ │ │ │ │ ├── ChartArea.html │ │ │ │ │ │ ├── ChartComponent.html │ │ │ │ │ │ ├── ChartConfiguration.html │ │ │ │ │ │ ├── ChartConfigurationCustomTypesPerDataset.html │ │ │ │ │ │ ├── ChartData.html │ │ │ │ │ │ ├── ChartDataCustomTypesPerDataset.html │ │ │ │ │ │ ├── ChartDatasetProperties.html │ │ │ │ │ │ ├── ChartDatasetPropertiesCustomTypesPerDataset.html │ │ │ │ │ │ ├── ChartEvent.html │ │ │ │ │ │ ├── ChartTypeRegistry.html │ │ │ │ │ │ ├── CommonElementOptions.html │ │ │ │ │ │ ├── CommonHoverOptions.html │ │ │ │ │ │ ├── ComplexFillTarget.html │ │ │ │ │ │ ├── ControllerDatasetOptions.html │ │ │ │ │ │ ├── CoreChartOptions.html │ │ │ │ │ │ ├── CoreInteractionOptions.html │ │ │ │ │ │ ├── CoreScaleOptions.html │ │ │ │ │ │ ├── DatasetControllerChartComponent.html │ │ │ │ │ │ ├── DateAdapter.html │ │ │ │ │ │ ├── Defaults.html │ │ │ │ │ │ ├── DoughnutAnimationOptions.html │ │ │ │ │ │ ├── DoughnutController.html │ │ │ │ │ │ ├── DoughnutControllerChartOptions.html │ │ │ │ │ │ ├── DoughnutControllerDatasetOptions.html │ │ │ │ │ │ ├── DoughnutMetaExtensions.html │ │ │ │ │ │ ├── Element.html │ │ │ │ │ │ ├── ElementOptionsByType.html │ │ │ │ │ │ ├── ExtendedPlugin.html │ │ │ │ │ │ ├── FillerControllerDatasetOptions.html │ │ │ │ │ │ ├── FillerOptions.html │ │ │ │ │ │ ├── FontSpec.html │ │ │ │ │ │ ├── GridLineOptions.html │ │ │ │ │ │ ├── InteractionItem.html │ │ │ │ │ │ ├── InteractionModeMap.html │ │ │ │ │ │ ├── InteractionOptions.html │ │ │ │ │ │ ├── LayoutItem.html │ │ │ │ │ │ ├── LegendElement.html │ │ │ │ │ │ ├── LegendItem.html │ │ │ │ │ │ ├── LegendOptions.html │ │ │ │ │ │ ├── LineControllerChartOptions.html │ │ │ │ │ │ ├── LineControllerDatasetOptions.html │ │ │ │ │ │ ├── LineElement.html │ │ │ │ │ │ ├── LineHoverOptions.html │ │ │ │ │ │ ├── LineOptions.html │ │ │ │ │ │ ├── LineProps.html │ │ │ │ │ │ ├── ParsingOptions.html │ │ │ │ │ │ ├── Plugin.html │ │ │ │ │ │ ├── PluginChartOptions.html │ │ │ │ │ │ ├── PluginOptionsByType.html │ │ │ │ │ │ ├── Point.html │ │ │ │ │ │ ├── PointElement.html │ │ │ │ │ │ ├── PointHoverOptions.html │ │ │ │ │ │ ├── PointOptions.html │ │ │ │ │ │ ├── PointPrefixedHoverOptions.html │ │ │ │ │ │ ├── PointPrefixedOptions.html │ │ │ │ │ │ ├── PointProps.html │ │ │ │ │ │ ├── PolarAreaController.html │ │ │ │ │ │ ├── PolarAreaControllerChartOptions.html │ │ │ │ │ │ ├── PolarAreaControllerDatasetOptions.html │ │ │ │ │ │ ├── RadarControllerDatasetOptions.html │ │ │ │ │ │ ├── RadialLinearScale.html │ │ │ │ │ │ ├── RadialScaleTypeRegistry.html │ │ │ │ │ │ ├── Registry.html │ │ │ │ │ │ ├── ScaleTypeRegistry.html │ │ │ │ │ │ ├── ScatterDataPoint.html │ │ │ │ │ │ ├── ScriptableCartesianScaleContext.html │ │ │ │ │ │ ├── ScriptableChartContext.html │ │ │ │ │ │ ├── ScriptableContext.html │ │ │ │ │ │ ├── ScriptableLineSegmentContext.html │ │ │ │ │ │ ├── ScriptableScaleContext.html │ │ │ │ │ │ ├── ScriptableScalePointLabelContext.html │ │ │ │ │ │ ├── ScriptableTooltipContext.html │ │ │ │ │ │ ├── Segment.html │ │ │ │ │ │ ├── Tick.html │ │ │ │ │ │ ├── TickOptions.html │ │ │ │ │ │ ├── TimeScale.html │ │ │ │ │ │ ├── TitleOptions.html │ │ │ │ │ │ ├── Tooltip.html │ │ │ │ │ │ ├── TooltipCallbacks.html │ │ │ │ │ │ ├── TooltipItem.html │ │ │ │ │ │ ├── TooltipLabelStyle.html │ │ │ │ │ │ ├── TooltipModel.html │ │ │ │ │ │ ├── TooltipOptions.html │ │ │ │ │ │ ├── TooltipPosition.html │ │ │ │ │ │ ├── TooltipPositionerMap.html │ │ │ │ │ │ ├── TypedRegistry.html │ │ │ │ │ │ └── VisualElement.html │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ └── 0.styles.7d07a4d1.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── destroy_flowchart.10814816.png │ │ │ │ │ │ ├── event_flowchart.83015c7a.png │ │ │ │ │ │ ├── init_flowchart.ee5be600.png │ │ │ │ │ │ ├── render_flowchart.41a98316.png │ │ │ │ │ │ ├── scale_flowchart.fa1ab63e.png │ │ │ │ │ │ ├── search.83621669.svg │ │ │ │ │ │ └── update_flowchart.0556691d.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── 10.edbecfa9.js │ │ │ │ │ │ ├── 100.f7a12d8b.js │ │ │ │ │ │ ├── 101.15c56dbb.js │ │ │ │ │ │ ├── 102.33b746ea.js │ │ │ │ │ │ ├── 103.850a4486.js │ │ │ │ │ │ ├── 104.8b4f368b.js │ │ │ │ │ │ ├── 105.1a3d6c41.js │ │ │ │ │ │ ├── 106.d8f8b4c1.js │ │ │ │ │ │ ├── 107.38cf9b4f.js │ │ │ │ │ │ ├── 108.a30da8c9.js │ │ │ │ │ │ ├── 109.6d56b7d1.js │ │ │ │ │ │ ├── 11.b98e8151.js │ │ │ │ │ │ ├── 110.c44e533c.js │ │ │ │ │ │ ├── 111.ccb9a835.js │ │ │ │ │ │ ├── 112.2d2a2890.js │ │ │ │ │ │ ├── 113.5ac0921f.js │ │ │ │ │ │ ├── 114.90ef8814.js │ │ │ │ │ │ ├── 115.12a72d27.js │ │ │ │ │ │ ├── 116.6b780970.js │ │ │ │ │ │ ├── 117.79604442.js │ │ │ │ │ │ ├── 118.7752bc89.js │ │ │ │ │ │ ├── 119.d8e76ef0.js │ │ │ │ │ │ ├── 12.433f0c7e.js │ │ │ │ │ │ ├── 120.ed76595e.js │ │ │ │ │ │ ├── 121.cc3d56f2.js │ │ │ │ │ │ ├── 122.c8651871.js │ │ │ │ │ │ ├── 123.f7d5f223.js │ │ │ │ │ │ ├── 124.88ce07a4.js │ │ │ │ │ │ ├── 125.a9572036.js │ │ │ │ │ │ ├── 126.879447b3.js │ │ │ │ │ │ ├── 127.3b8478f3.js │ │ │ │ │ │ ├── 128.87d67ad7.js │ │ │ │ │ │ ├── 129.f6241700.js │ │ │ │ │ │ ├── 13.b6743084.js │ │ │ │ │ │ ├── 130.a9cb856a.js │ │ │ │ │ │ ├── 131.45e904c9.js │ │ │ │ │ │ ├── 132.abd9e4c2.js │ │ │ │ │ │ ├── 133.d5aa1db6.js │ │ │ │ │ │ ├── 134.4bfa3b5a.js │ │ │ │ │ │ ├── 135.8c7630ad.js │ │ │ │ │ │ ├── 136.f813e062.js │ │ │ │ │ │ ├── 137.6cab2863.js │ │ │ │ │ │ ├── 138.03ec5265.js │ │ │ │ │ │ ├── 139.924812c0.js │ │ │ │ │ │ ├── 14.422fec10.js │ │ │ │ │ │ ├── 140.a7967a5d.js │ │ │ │ │ │ ├── 141.34a018bb.js │ │ │ │ │ │ ├── 142.c5bfcdd4.js │ │ │ │ │ │ ├── 143.05e388ba.js │ │ │ │ │ │ ├── 144.a98bdbcc.js │ │ │ │ │ │ ├── 145.826b73e0.js │ │ │ │ │ │ ├── 146.001afadf.js │ │ │ │ │ │ ├── 147.fcadaef3.js │ │ │ │ │ │ ├── 148.604863a4.js │ │ │ │ │ │ ├── 149.6509ed9f.js │ │ │ │ │ │ ├── 15.09a69fc3.js │ │ │ │ │ │ ├── 150.fd8575ca.js │ │ │ │ │ │ ├── 151.67ecd4a3.js │ │ │ │ │ │ ├── 152.481a7bd4.js │ │ │ │ │ │ ├── 153.dbf3f3aa.js │ │ │ │ │ │ ├── 154.2aa9c67d.js │ │ │ │ │ │ ├── 155.e3367ebc.js │ │ │ │ │ │ ├── 156.a5bb942d.js │ │ │ │ │ │ ├── 157.09caef4e.js │ │ │ │ │ │ ├── 158.1f82587f.js │ │ │ │ │ │ ├── 159.4cebd9d3.js │ │ │ │ │ │ ├── 16.0414f390.js │ │ │ │ │ │ ├── 160.47df8215.js │ │ │ │ │ │ ├── 161.fac79692.js │ │ │ │ │ │ ├── 162.9f2f870f.js │ │ │ │ │ │ ├── 163.4f1604f9.js │ │ │ │ │ │ ├── 164.7f8d8643.js │ │ │ │ │ │ ├── 165.fe2baa69.js │ │ │ │ │ │ ├── 166.c82b3c76.js │ │ │ │ │ │ ├── 167.3c3f2ff1.js │ │ │ │ │ │ ├── 168.8d2e8e83.js │ │ │ │ │ │ ├── 169.b10c84bd.js │ │ │ │ │ │ ├── 17.8dfcb176.js │ │ │ │ │ │ ├── 170.b9db8312.js │ │ │ │ │ │ ├── 171.2480fc36.js │ │ │ │ │ │ ├── 172.81c5206a.js │ │ │ │ │ │ ├── 173.477dcbae.js │ │ │ │ │ │ ├── 174.05398ca3.js │ │ │ │ │ │ ├── 175.84ab69d0.js │ │ │ │ │ │ ├── 176.f48183c3.js │ │ │ │ │ │ ├── 177.d0d35403.js │ │ │ │ │ │ ├── 178.55d433fd.js │ │ │ │ │ │ ├── 179.9442c138.js │ │ │ │ │ │ ├── 18.c331029e.js │ │ │ │ │ │ ├── 180.5c15d5d4.js │ │ │ │ │ │ ├── 181.911f367b.js │ │ │ │ │ │ ├── 182.72f663e8.js │ │ │ │ │ │ ├── 183.22b2258c.js │ │ │ │ │ │ ├── 184.15b21065.js │ │ │ │ │ │ ├── 185.894ea40b.js │ │ │ │ │ │ ├── 186.f6394459.js │ │ │ │ │ │ ├── 187.7bd9b3fe.js │ │ │ │ │ │ ├── 188.3baa9bcd.js │ │ │ │ │ │ ├── 189.18e63b11.js │ │ │ │ │ │ ├── 19.13bdd658.js │ │ │ │ │ │ ├── 190.b7ffb54a.js │ │ │ │ │ │ ├── 191.13061aba.js │ │ │ │ │ │ ├── 192.1bf9bd61.js │ │ │ │ │ │ ├── 193.8fa44455.js │ │ │ │ │ │ ├── 194.49c9a3c0.js │ │ │ │ │ │ ├── 195.eb1e8802.js │ │ │ │ │ │ ├── 196.9b925823.js │ │ │ │ │ │ ├── 197.adca6c8c.js │ │ │ │ │ │ ├── 198.2ae0961a.js │ │ │ │ │ │ ├── 199.cd9dca80.js │ │ │ │ │ │ ├── 2.3e2307f3.js │ │ │ │ │ │ ├── 20.5d11c294.js │ │ │ │ │ │ ├── 200.2eb9437f.js │ │ │ │ │ │ ├── 201.6dba10c3.js │ │ │ │ │ │ ├── 202.9c5057c6.js │ │ │ │ │ │ ├── 203.98a3c2b8.js │ │ │ │ │ │ ├── 204.50d5cf2e.js │ │ │ │ │ │ ├── 205.e56e820b.js │ │ │ │ │ │ ├── 206.6ce5c41e.js │ │ │ │ │ │ ├── 207.8aa83d91.js │ │ │ │ │ │ ├── 208.296ee160.js │ │ │ │ │ │ ├── 209.13279349.js │ │ │ │ │ │ ├── 21.7b54d7d8.js │ │ │ │ │ │ ├── 210.63e30420.js │ │ │ │ │ │ ├── 211.0b325f23.js │ │ │ │ │ │ ├── 212.be671e2e.js │ │ │ │ │ │ ├── 213.81d2e607.js │ │ │ │ │ │ ├── 214.ba403b5c.js │ │ │ │ │ │ ├── 215.2efcec5f.js │ │ │ │ │ │ ├── 216.e01d3100.js │ │ │ │ │ │ ├── 217.906c8d54.js │ │ │ │ │ │ ├── 218.94e33827.js │ │ │ │ │ │ ├── 219.21c5e01f.js │ │ │ │ │ │ ├── 22.c2daedd0.js │ │ │ │ │ │ ├── 220.3ba160e4.js │ │ │ │ │ │ ├── 221.5c17138c.js │ │ │ │ │ │ ├── 222.aea004ce.js │ │ │ │ │ │ ├── 223.cbb7b883.js │ │ │ │ │ │ ├── 224.b130b37f.js │ │ │ │ │ │ ├── 225.32f90319.js │ │ │ │ │ │ ├── 226.8c102c21.js │ │ │ │ │ │ ├── 227.b3d60339.js │ │ │ │ │ │ ├── 228.72f0ad18.js │ │ │ │ │ │ ├── 229.3daa3b7e.js │ │ │ │ │ │ ├── 23.2c668e20.js │ │ │ │ │ │ ├── 230.7e5a85b1.js │ │ │ │ │ │ ├── 231.b83d12f1.js │ │ │ │ │ │ ├── 232.e902f42d.js │ │ │ │ │ │ ├── 233.b4f254c0.js │ │ │ │ │ │ ├── 234.d975df48.js │ │ │ │ │ │ ├── 235.71a7be7d.js │ │ │ │ │ │ ├── 236.05d87a5e.js │ │ │ │ │ │ ├── 237.d518e28b.js │ │ │ │ │ │ ├── 238.eb60e397.js │ │ │ │ │ │ ├── 239.81fecfed.js │ │ │ │ │ │ ├── 24.af200d5b.js │ │ │ │ │ │ ├── 240.c0869bc2.js │ │ │ │ │ │ ├── 241.59dc896f.js │ │ │ │ │ │ ├── 242.6d423d39.js │ │ │ │ │ │ ├── 243.a355eaa8.js │ │ │ │ │ │ ├── 244.ad729cf8.js │ │ │ │ │ │ ├── 245.c3cd6bbe.js │ │ │ │ │ │ ├── 246.d0708528.js │ │ │ │ │ │ ├── 247.13d65d78.js │ │ │ │ │ │ ├── 248.1d222543.js │ │ │ │ │ │ ├── 249.2d7a9bf1.js │ │ │ │ │ │ ├── 25.4f97f63f.js │ │ │ │ │ │ ├── 250.09ef38e2.js │ │ │ │ │ │ ├── 251.0cb90e8a.js │ │ │ │ │ │ ├── 252.2ff0def4.js │ │ │ │ │ │ ├── 253.61c7c505.js │ │ │ │ │ │ ├── 254.20137eeb.js │ │ │ │ │ │ ├── 255.49c937e9.js │ │ │ │ │ │ ├── 256.8d709dae.js │ │ │ │ │ │ ├── 257.b3ebdce7.js │ │ │ │ │ │ ├── 258.792f66d1.js │ │ │ │ │ │ ├── 259.98c809e9.js │ │ │ │ │ │ ├── 26.d1bb645c.js │ │ │ │ │ │ ├── 260.54ff10d2.js │ │ │ │ │ │ ├── 261.928afea4.js │ │ │ │ │ │ ├── 27.2d5c4a6b.js │ │ │ │ │ │ ├── 28.72dee0f1.js │ │ │ │ │ │ ├── 29.8820be26.js │ │ │ │ │ │ ├── 3.947b8d98.js │ │ │ │ │ │ ├── 30.343676b8.js │ │ │ │ │ │ ├── 31.cff089f1.js │ │ │ │ │ │ ├── 32.56d8546e.js │ │ │ │ │ │ ├── 33.6b642a06.js │ │ │ │ │ │ ├── 34.360a9ea9.js │ │ │ │ │ │ ├── 35.205d7fac.js │ │ │ │ │ │ ├── 36.f2765bae.js │ │ │ │ │ │ ├── 37.6c33435e.js │ │ │ │ │ │ ├── 38.a778a6a2.js │ │ │ │ │ │ ├── 39.7dda160f.js │ │ │ │ │ │ ├── 4.ee88d25a.js │ │ │ │ │ │ ├── 40.bd778eac.js │ │ │ │ │ │ ├── 41.b79220f6.js │ │ │ │ │ │ ├── 42.c3157beb.js │ │ │ │ │ │ ├── 43.097368d1.js │ │ │ │ │ │ ├── 44.2515f16e.js │ │ │ │ │ │ ├── 45.d5b4b7c3.js │ │ │ │ │ │ ├── 46.bbab8d6e.js │ │ │ │ │ │ ├── 47.79aa575e.js │ │ │ │ │ │ ├── 48.45785af9.js │ │ │ │ │ │ ├── 49.0569a6eb.js │ │ │ │ │ │ ├── 5.00f814ac.js │ │ │ │ │ │ ├── 50.14bd3ba2.js │ │ │ │ │ │ ├── 51.e0968711.js │ │ │ │ │ │ ├── 52.fe65ddf8.js │ │ │ │ │ │ ├── 53.faa1ff3f.js │ │ │ │ │ │ ├── 54.fcfed2c5.js │ │ │ │ │ │ ├── 55.7db1d28a.js │ │ │ │ │ │ ├── 56.8b0e82b7.js │ │ │ │ │ │ ├── 57.9de2d983.js │ │ │ │ │ │ ├── 58.b0f8ad0c.js │ │ │ │ │ │ ├── 59.f1ff4935.js │ │ │ │ │ │ ├── 6.2bc86161.js │ │ │ │ │ │ ├── 60.ac08de9a.js │ │ │ │ │ │ ├── 61.ea4fad75.js │ │ │ │ │ │ ├── 62.5c85853b.js │ │ │ │ │ │ ├── 63.5ac99656.js │ │ │ │ │ │ ├── 64.c6838e95.js │ │ │ │ │ │ ├── 65.4c1b089e.js │ │ │ │ │ │ ├── 66.379a6b45.js │ │ │ │ │ │ ├── 67.15703e17.js │ │ │ │ │ │ ├── 68.ffdefd7d.js │ │ │ │ │ │ ├── 69.bdeb7b9b.js │ │ │ │ │ │ ├── 7.74f2ce90.js │ │ │ │ │ │ ├── 70.3dadb5ed.js │ │ │ │ │ │ ├── 71.2c97fe38.js │ │ │ │ │ │ ├── 72.dc778e17.js │ │ │ │ │ │ ├── 73.d88fcb57.js │ │ │ │ │ │ ├── 74.bba2165e.js │ │ │ │ │ │ ├── 75.15562a81.js │ │ │ │ │ │ ├── 76.21f5a94e.js │ │ │ │ │ │ ├── 77.0725268e.js │ │ │ │ │ │ ├── 78.d6f610d1.js │ │ │ │ │ │ ├── 79.60d67faa.js │ │ │ │ │ │ ├── 8.8928eb8b.js │ │ │ │ │ │ ├── 80.99d71ee0.js │ │ │ │ │ │ ├── 81.f1500469.js │ │ │ │ │ │ ├── 82.69f363a6.js │ │ │ │ │ │ ├── 83.f1fbcb2c.js │ │ │ │ │ │ ├── 84.b76e3156.js │ │ │ │ │ │ ├── 85.efc4bd54.js │ │ │ │ │ │ ├── 86.85011b24.js │ │ │ │ │ │ ├── 87.6a88d571.js │ │ │ │ │ │ ├── 88.0f45cfe0.js │ │ │ │ │ │ ├── 89.e67ddb59.js │ │ │ │ │ │ ├── 9.63ebb16b.js │ │ │ │ │ │ ├── 90.96ebfa9b.js │ │ │ │ │ │ ├── 91.cdde4d3f.js │ │ │ │ │ │ ├── 92.dc3f06d2.js │ │ │ │ │ │ ├── 93.aaa04d52.js │ │ │ │ │ │ ├── 94.2af5650c.js │ │ │ │ │ │ ├── 95.1d44ec16.js │ │ │ │ │ │ ├── 96.9545127d.js │ │ │ │ │ │ ├── 97.8b18f487.js │ │ │ │ │ │ ├── 98.cb259cd0.js │ │ │ │ │ │ ├── 99.6251650a.js │ │ │ │ │ │ └── app.7e0dc8c8.js │ │ │ │ ├── axes │ │ │ │ │ ├── _common.html │ │ │ │ │ ├── _common_ticks.html │ │ │ │ │ ├── cartesian │ │ │ │ │ │ ├── _common.html │ │ │ │ │ │ ├── _common_ticks.html │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── linear.html │ │ │ │ │ │ ├── logarithmic.html │ │ │ │ │ │ ├── time.html │ │ │ │ │ │ └── timeseries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── labelling.html │ │ │ │ │ ├── radial │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── linear.html │ │ │ │ │ └── styling.html │ │ │ │ ├── charts │ │ │ │ │ ├── area.html │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── doughnut.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── line.html │ │ │ │ │ ├── mixed.html │ │ │ │ │ ├── polar.html │ │ │ │ │ ├── radar.html │ │ │ │ │ └── scatter.html │ │ │ │ ├── configuration │ │ │ │ │ ├── animations.html │ │ │ │ │ ├── canvas-background.html │ │ │ │ │ ├── decimation.html │ │ │ │ │ ├── device-pixel-ratio.html │ │ │ │ │ ├── elements.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── interactions.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── legend.html │ │ │ │ │ ├── locale.html │ │ │ │ │ ├── responsive.html │ │ │ │ │ ├── subtitle.html │ │ │ │ │ ├── title.html │ │ │ │ │ └── tooltip.html │ │ │ │ ├── developers │ │ │ │ │ ├── api.html │ │ │ │ │ ├── axes.html │ │ │ │ │ ├── charts.html │ │ │ │ │ ├── contributing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ ├── publishing.html │ │ │ │ │ └── updates.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── general │ │ │ │ │ ├── accessibility.html │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── data-structures.html │ │ │ │ │ ├── fonts.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── options.html │ │ │ │ │ ├── padding.html │ │ │ │ │ └── performance.html │ │ │ │ ├── getting-started │ │ │ │ │ ├── index.html │ │ │ │ │ ├── installation.html │ │ │ │ │ ├── integration.html │ │ │ │ │ ├── usage.html │ │ │ │ │ └── v3-migration.html │ │ │ │ ├── index.html │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ └── samples │ │ │ │ │ ├── advanced │ │ │ │ │ ├── data-decimation.html │ │ │ │ │ ├── derived-axis-type.html │ │ │ │ │ ├── derived-chart-type.html │ │ │ │ │ ├── linear-gradient.html │ │ │ │ │ ├── programmatic-events.html │ │ │ │ │ ├── progress-bar.html │ │ │ │ │ └── radial-gradient.html │ │ │ │ │ ├── animations │ │ │ │ │ ├── delay.html │ │ │ │ │ ├── drop.html │ │ │ │ │ ├── loop.html │ │ │ │ │ ├── progressive-line-easing.html │ │ │ │ │ └── progressive-line.html │ │ │ │ │ ├── area │ │ │ │ │ ├── line-boundaries.html │ │ │ │ │ ├── line-datasets.html │ │ │ │ │ ├── line-drawtime.html │ │ │ │ │ ├── line-stacked.html │ │ │ │ │ └── radar.html │ │ │ │ │ ├── bar │ │ │ │ │ ├── border-radius.html │ │ │ │ │ ├── floating.html │ │ │ │ │ ├── horizontal.html │ │ │ │ │ ├── stacked-groups.html │ │ │ │ │ ├── stacked.html │ │ │ │ │ └── vertical.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── information.html │ │ │ │ │ ├── legend │ │ │ │ │ ├── events.html │ │ │ │ │ ├── html.html │ │ │ │ │ ├── point-style.html │ │ │ │ │ ├── position.html │ │ │ │ │ └── title.html │ │ │ │ │ ├── line │ │ │ │ │ ├── interpolation.html │ │ │ │ │ ├── line.html │ │ │ │ │ ├── multi-axis.html │ │ │ │ │ ├── point-styling.html │ │ │ │ │ ├── segments.html │ │ │ │ │ ├── stepped.html │ │ │ │ │ └── styling.html │ │ │ │ │ ├── other-charts │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── combo-bar-line.html │ │ │ │ │ ├── doughnut.html │ │ │ │ │ ├── multi-series-pie.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── polar-area-center-labels.html │ │ │ │ │ ├── polar-area.html │ │ │ │ │ ├── radar-skip-points.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── scatter-multi-axis.html │ │ │ │ │ ├── scatter.html │ │ │ │ │ └── stacked-bar-line.html │ │ │ │ │ ├── plugins │ │ │ │ │ ├── chart-area-border.html │ │ │ │ │ ├── doughnut-empty-state.html │ │ │ │ │ └── quadrants.html │ │ │ │ │ ├── scale-options │ │ │ │ │ ├── center.html │ │ │ │ │ ├── grid.html │ │ │ │ │ ├── ticks.html │ │ │ │ │ └── titles.html │ │ │ │ │ ├── scales │ │ │ │ │ ├── linear-min-max-suggested.html │ │ │ │ │ ├── linear-min-max.html │ │ │ │ │ ├── linear-step-size.html │ │ │ │ │ ├── log.html │ │ │ │ │ ├── stacked.html │ │ │ │ │ ├── time-combo.html │ │ │ │ │ ├── time-line.html │ │ │ │ │ └── time-max-span.html │ │ │ │ │ ├── scriptable │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── line.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── polar.html │ │ │ │ │ └── radar.html │ │ │ │ │ ├── subtitle │ │ │ │ │ └── basic.html │ │ │ │ │ ├── title │ │ │ │ │ └── alignment.html │ │ │ │ │ ├── tooltip │ │ │ │ │ ├── content.html │ │ │ │ │ ├── html.html │ │ │ │ │ ├── interactions.html │ │ │ │ │ ├── point-style.html │ │ │ │ │ └── position.html │ │ │ │ │ └── utils.html │ │ │ ├── helpers.esm.js │ │ │ └── helpers.mjs │ │ │ ├── echarts │ │ │ ├── echarts.min.js │ │ │ └── extension │ │ │ │ ├── bmap.js │ │ │ │ ├── bmap.js.map │ │ │ │ ├── bmap.min.js │ │ │ │ ├── dataTool.js │ │ │ │ ├── dataTool.js.map │ │ │ │ └── dataTool.min.js │ │ │ ├── php-email-form │ │ │ └── validate.js │ │ │ ├── quill │ │ │ ├── quill.bubble.css │ │ │ ├── quill.core.css │ │ │ ├── quill.core.js │ │ │ ├── quill.js │ │ │ ├── quill.min.js │ │ │ ├── quill.min.js.map │ │ │ └── quill.snow.css │ │ │ ├── remixicon │ │ │ ├── remixicon.css │ │ │ ├── remixicon.eot │ │ │ ├── remixicon.less │ │ │ ├── remixicon.svg │ │ │ ├── remixicon.symbol.svg │ │ │ ├── remixicon.ttf │ │ │ ├── remixicon.woff │ │ │ └── remixicon.woff2 │ │ │ ├── simple-datatables │ │ │ ├── simple-datatables.js │ │ │ └── style.css │ │ │ └── tinymce │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── icons │ │ │ └── default │ │ │ │ ├── icons.js │ │ │ │ ├── icons.min.js │ │ │ │ └── index.js │ │ │ ├── license.txt │ │ │ ├── models │ │ │ └── dom │ │ │ │ ├── index.js │ │ │ │ ├── model.js │ │ │ │ └── model.min.js │ │ │ ├── package.json │ │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ ├── emojiimages.js │ │ │ │ │ ├── emojiimages.min.js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── document │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── tinymce-5 │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ │ └── writer │ │ │ │ │ ├── content.css │ │ │ │ │ └── content.min.css │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ └── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ ├── themes │ │ │ └── silver │ │ │ │ ├── index.js │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ │ ├── tinymce.d.ts │ │ │ ├── tinymce.js │ │ │ └── tinymce.min.js │ │ ├── changelog.txt │ │ ├── charts-apexcharts.html │ │ ├── charts-chartjs.html │ │ ├── charts-echarts.html │ │ ├── components-accordion.html │ │ ├── components-alerts.html │ │ ├── components-badges.html │ │ ├── components-breadcrumbs.html │ │ ├── components-buttons.html │ │ ├── components-cards.html │ │ ├── components-carousel.html │ │ ├── components-list-group.html │ │ ├── components-modal.html │ │ ├── components-pagination.html │ │ ├── components-progress.html │ │ ├── components-spinners.html │ │ ├── components-tabs.html │ │ ├── components-tooltips.html │ │ ├── forms-editors.html │ │ ├── forms-elements.html │ │ ├── forms-layouts.html │ │ ├── forms-validation.html │ │ ├── forms │ │ ├── Readme.txt │ │ └── contact.php │ │ ├── icons-bootstrap.html │ │ ├── icons-boxicons.html │ │ ├── icons-remix.html │ │ ├── index.html │ │ ├── pages-blank.html │ │ ├── pages-contact.html │ │ ├── pages-error-404.html │ │ ├── pages-faq.html │ │ ├── pages-login.html │ │ ├── pages-register.html │ │ ├── tables-data.html │ │ ├── tables-general.html │ │ └── users-profile.html ├── ProjetoERPIntraweb.exe ├── ProjetoERPIntraweb.log ├── templates │ ├── FrmCrudPessoa.html │ ├── FrmCrudProduto.html │ ├── FrmDashBoard.html │ ├── FrmLimpo.html │ ├── FrmListaPedidos.html │ ├── FrmListaPessoa.html │ ├── FrmListaProduto.html │ ├── FrmLogin.html │ └── master.html └── wwwroot │ ├── Sample.pdf │ └── assets │ ├── Holdon │ ├── css │ │ ├── HoldOn.css │ │ └── HoldOn.min.css │ └── js │ │ ├── HoldOn.js │ │ └── HoldOn.min.js │ ├── css │ └── style.css │ ├── img │ ├── apple-touch-icon.png │ ├── card.jpg │ ├── favicon.png │ ├── logo.png │ ├── messages-1.jpg │ ├── messages-2.jpg │ ├── messages-3.jpg │ ├── news-1.jpg │ ├── news-2.jpg │ ├── news-3.jpg │ ├── news-4.jpg │ ├── news-5.jpg │ ├── not-found.svg │ ├── product-1.jpg │ ├── product-2.jpg │ ├── product-3.jpg │ ├── product-4.jpg │ ├── product-5.jpg │ ├── profile-img.jpg │ ├── slides-1.jpg │ ├── slides-2.jpg │ └── slides-3.jpg │ ├── js │ └── main.js │ ├── scss │ └── Readme.txt │ └── vendor │ ├── apexcharts │ ├── apexcharts.min.js │ └── locales │ │ ├── ar.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ka.json │ │ ├── ko.json │ │ ├── lt.json │ │ ├── lv.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-br.json │ │ ├── pt.json │ │ ├── rs.json │ │ ├── ru.json │ │ ├── se.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sq.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── ua.json │ │ ├── zh-cn.json │ │ └── zh-tw.json │ ├── bootstrap-icons │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 │ └── index.html │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── boxicons │ ├── css │ │ ├── animations.css │ │ ├── boxicons.css │ │ ├── boxicons.min.css │ │ └── transformations.css │ └── fonts │ │ ├── boxicons.eot │ │ ├── boxicons.svg │ │ ├── boxicons.ttf │ │ ├── boxicons.woff │ │ └── boxicons.woff2 │ ├── chart.js │ ├── chart.esm.js │ ├── chart.js │ ├── chart.min.js │ ├── chart.mjs │ ├── chunks │ │ ├── helpers.segment.js │ │ └── helpers.segment.mjs │ ├── docs │ │ ├── 404.html │ │ ├── api │ │ │ ├── classes │ │ │ │ ├── Animation.html │ │ │ │ ├── Animations.html │ │ │ │ ├── Animator.html │ │ │ │ ├── BasePlatform.html │ │ │ │ ├── BasicPlatform.html │ │ │ │ ├── Chart.html │ │ │ │ ├── DatasetController.html │ │ │ │ ├── DomPlatform.html │ │ │ │ └── Scale.html │ │ │ ├── enums │ │ │ │ ├── DecimationAlgorithm.html │ │ │ │ └── UpdateModeEnum.html │ │ │ ├── index.html │ │ │ └── interfaces │ │ │ │ ├── ActiveDataPoint.html │ │ │ │ ├── ActiveElement.html │ │ │ │ ├── AnimationEvent.html │ │ │ │ ├── ArcBorderRadius.html │ │ │ │ ├── ArcElement.html │ │ │ │ ├── ArcHoverOptions.html │ │ │ │ ├── ArcOptions.html │ │ │ │ ├── ArcProps.html │ │ │ │ ├── BarControllerChartOptions.html │ │ │ │ ├── BarControllerDatasetOptions.html │ │ │ │ ├── BarElement.html │ │ │ │ ├── BarHoverOptions.html │ │ │ │ ├── BarOptions.html │ │ │ │ ├── BarProps.html │ │ │ │ ├── BorderRadius.html │ │ │ │ ├── BubbleControllerDatasetOptions.html │ │ │ │ ├── BubbleDataPoint.html │ │ │ │ ├── CartesianScaleOptions.html │ │ │ │ ├── CartesianScaleTypeRegistry.html │ │ │ │ ├── ChartArea.html │ │ │ │ ├── ChartComponent.html │ │ │ │ ├── ChartConfiguration.html │ │ │ │ ├── ChartConfigurationCustomTypesPerDataset.html │ │ │ │ ├── ChartData.html │ │ │ │ ├── ChartDataCustomTypesPerDataset.html │ │ │ │ ├── ChartDatasetProperties.html │ │ │ │ ├── ChartDatasetPropertiesCustomTypesPerDataset.html │ │ │ │ ├── ChartEvent.html │ │ │ │ ├── ChartTypeRegistry.html │ │ │ │ ├── CommonElementOptions.html │ │ │ │ ├── CommonHoverOptions.html │ │ │ │ ├── ComplexFillTarget.html │ │ │ │ ├── ControllerDatasetOptions.html │ │ │ │ ├── CoreChartOptions.html │ │ │ │ ├── CoreInteractionOptions.html │ │ │ │ ├── CoreScaleOptions.html │ │ │ │ ├── DatasetControllerChartComponent.html │ │ │ │ ├── DateAdapter.html │ │ │ │ ├── Defaults.html │ │ │ │ ├── DoughnutAnimationOptions.html │ │ │ │ ├── DoughnutController.html │ │ │ │ ├── DoughnutControllerChartOptions.html │ │ │ │ ├── DoughnutControllerDatasetOptions.html │ │ │ │ ├── DoughnutMetaExtensions.html │ │ │ │ ├── Element.html │ │ │ │ ├── ElementOptionsByType.html │ │ │ │ ├── ExtendedPlugin.html │ │ │ │ ├── FillerControllerDatasetOptions.html │ │ │ │ ├── FillerOptions.html │ │ │ │ ├── FontSpec.html │ │ │ │ ├── GridLineOptions.html │ │ │ │ ├── InteractionItem.html │ │ │ │ ├── InteractionModeMap.html │ │ │ │ ├── InteractionOptions.html │ │ │ │ ├── LayoutItem.html │ │ │ │ ├── LegendElement.html │ │ │ │ ├── LegendItem.html │ │ │ │ ├── LegendOptions.html │ │ │ │ ├── LineControllerChartOptions.html │ │ │ │ ├── LineControllerDatasetOptions.html │ │ │ │ ├── LineElement.html │ │ │ │ ├── LineHoverOptions.html │ │ │ │ ├── LineOptions.html │ │ │ │ ├── LineProps.html │ │ │ │ ├── ParsingOptions.html │ │ │ │ ├── Plugin.html │ │ │ │ ├── PluginChartOptions.html │ │ │ │ ├── PluginOptionsByType.html │ │ │ │ ├── Point.html │ │ │ │ ├── PointElement.html │ │ │ │ ├── PointHoverOptions.html │ │ │ │ ├── PointOptions.html │ │ │ │ ├── PointPrefixedHoverOptions.html │ │ │ │ ├── PointPrefixedOptions.html │ │ │ │ ├── PointProps.html │ │ │ │ ├── PolarAreaController.html │ │ │ │ ├── PolarAreaControllerChartOptions.html │ │ │ │ ├── PolarAreaControllerDatasetOptions.html │ │ │ │ ├── RadarControllerDatasetOptions.html │ │ │ │ ├── RadialLinearScale.html │ │ │ │ ├── RadialScaleTypeRegistry.html │ │ │ │ ├── Registry.html │ │ │ │ ├── ScaleTypeRegistry.html │ │ │ │ ├── ScatterDataPoint.html │ │ │ │ ├── ScriptableCartesianScaleContext.html │ │ │ │ ├── ScriptableChartContext.html │ │ │ │ ├── ScriptableContext.html │ │ │ │ ├── ScriptableLineSegmentContext.html │ │ │ │ ├── ScriptableScaleContext.html │ │ │ │ ├── ScriptableScalePointLabelContext.html │ │ │ │ ├── ScriptableTooltipContext.html │ │ │ │ ├── Segment.html │ │ │ │ ├── Tick.html │ │ │ │ ├── TickOptions.html │ │ │ │ ├── TimeScale.html │ │ │ │ ├── TitleOptions.html │ │ │ │ ├── Tooltip.html │ │ │ │ ├── TooltipCallbacks.html │ │ │ │ ├── TooltipItem.html │ │ │ │ ├── TooltipLabelStyle.html │ │ │ │ ├── TooltipModel.html │ │ │ │ ├── TooltipOptions.html │ │ │ │ ├── TooltipPosition.html │ │ │ │ ├── TooltipPositionerMap.html │ │ │ │ ├── TypedRegistry.html │ │ │ │ └── VisualElement.html │ │ ├── assets │ │ │ ├── css │ │ │ │ └── 0.styles.7d07a4d1.css │ │ │ ├── img │ │ │ │ ├── destroy_flowchart.10814816.png │ │ │ │ ├── event_flowchart.83015c7a.png │ │ │ │ ├── init_flowchart.ee5be600.png │ │ │ │ ├── render_flowchart.41a98316.png │ │ │ │ ├── scale_flowchart.fa1ab63e.png │ │ │ │ ├── search.83621669.svg │ │ │ │ └── update_flowchart.0556691d.png │ │ │ └── js │ │ │ │ ├── 10.edbecfa9.js │ │ │ │ ├── 100.f7a12d8b.js │ │ │ │ ├── 101.15c56dbb.js │ │ │ │ ├── 102.33b746ea.js │ │ │ │ ├── 103.850a4486.js │ │ │ │ ├── 104.8b4f368b.js │ │ │ │ ├── 105.1a3d6c41.js │ │ │ │ ├── 106.d8f8b4c1.js │ │ │ │ ├── 107.38cf9b4f.js │ │ │ │ ├── 108.a30da8c9.js │ │ │ │ ├── 109.6d56b7d1.js │ │ │ │ ├── 11.b98e8151.js │ │ │ │ ├── 110.c44e533c.js │ │ │ │ ├── 111.ccb9a835.js │ │ │ │ ├── 112.2d2a2890.js │ │ │ │ ├── 113.5ac0921f.js │ │ │ │ ├── 114.90ef8814.js │ │ │ │ ├── 115.12a72d27.js │ │ │ │ ├── 116.6b780970.js │ │ │ │ ├── 117.79604442.js │ │ │ │ ├── 118.7752bc89.js │ │ │ │ ├── 119.d8e76ef0.js │ │ │ │ ├── 12.433f0c7e.js │ │ │ │ ├── 120.ed76595e.js │ │ │ │ ├── 121.cc3d56f2.js │ │ │ │ ├── 122.c8651871.js │ │ │ │ ├── 123.f7d5f223.js │ │ │ │ ├── 124.88ce07a4.js │ │ │ │ ├── 125.a9572036.js │ │ │ │ ├── 126.879447b3.js │ │ │ │ ├── 127.3b8478f3.js │ │ │ │ ├── 128.87d67ad7.js │ │ │ │ ├── 129.f6241700.js │ │ │ │ ├── 13.b6743084.js │ │ │ │ ├── 130.a9cb856a.js │ │ │ │ ├── 131.45e904c9.js │ │ │ │ ├── 132.abd9e4c2.js │ │ │ │ ├── 133.d5aa1db6.js │ │ │ │ ├── 134.4bfa3b5a.js │ │ │ │ ├── 135.8c7630ad.js │ │ │ │ ├── 136.f813e062.js │ │ │ │ ├── 137.6cab2863.js │ │ │ │ ├── 138.03ec5265.js │ │ │ │ ├── 139.924812c0.js │ │ │ │ ├── 14.422fec10.js │ │ │ │ ├── 140.a7967a5d.js │ │ │ │ ├── 141.34a018bb.js │ │ │ │ ├── 142.c5bfcdd4.js │ │ │ │ ├── 143.05e388ba.js │ │ │ │ ├── 144.a98bdbcc.js │ │ │ │ ├── 145.826b73e0.js │ │ │ │ ├── 146.001afadf.js │ │ │ │ ├── 147.fcadaef3.js │ │ │ │ ├── 148.604863a4.js │ │ │ │ ├── 149.6509ed9f.js │ │ │ │ ├── 15.09a69fc3.js │ │ │ │ ├── 150.fd8575ca.js │ │ │ │ ├── 151.67ecd4a3.js │ │ │ │ ├── 152.481a7bd4.js │ │ │ │ ├── 153.dbf3f3aa.js │ │ │ │ ├── 154.2aa9c67d.js │ │ │ │ ├── 155.e3367ebc.js │ │ │ │ ├── 156.a5bb942d.js │ │ │ │ ├── 157.09caef4e.js │ │ │ │ ├── 158.1f82587f.js │ │ │ │ ├── 159.4cebd9d3.js │ │ │ │ ├── 16.0414f390.js │ │ │ │ ├── 160.47df8215.js │ │ │ │ ├── 161.fac79692.js │ │ │ │ ├── 162.9f2f870f.js │ │ │ │ ├── 163.4f1604f9.js │ │ │ │ ├── 164.7f8d8643.js │ │ │ │ ├── 165.fe2baa69.js │ │ │ │ ├── 166.c82b3c76.js │ │ │ │ ├── 167.3c3f2ff1.js │ │ │ │ ├── 168.8d2e8e83.js │ │ │ │ ├── 169.b10c84bd.js │ │ │ │ ├── 17.8dfcb176.js │ │ │ │ ├── 170.b9db8312.js │ │ │ │ ├── 171.2480fc36.js │ │ │ │ ├── 172.81c5206a.js │ │ │ │ ├── 173.477dcbae.js │ │ │ │ ├── 174.05398ca3.js │ │ │ │ ├── 175.84ab69d0.js │ │ │ │ ├── 176.f48183c3.js │ │ │ │ ├── 177.d0d35403.js │ │ │ │ ├── 178.55d433fd.js │ │ │ │ ├── 179.9442c138.js │ │ │ │ ├── 18.c331029e.js │ │ │ │ ├── 180.5c15d5d4.js │ │ │ │ ├── 181.911f367b.js │ │ │ │ ├── 182.72f663e8.js │ │ │ │ ├── 183.22b2258c.js │ │ │ │ ├── 184.15b21065.js │ │ │ │ ├── 185.894ea40b.js │ │ │ │ ├── 186.f6394459.js │ │ │ │ ├── 187.7bd9b3fe.js │ │ │ │ ├── 188.3baa9bcd.js │ │ │ │ ├── 189.18e63b11.js │ │ │ │ ├── 19.13bdd658.js │ │ │ │ ├── 190.b7ffb54a.js │ │ │ │ ├── 191.13061aba.js │ │ │ │ ├── 192.1bf9bd61.js │ │ │ │ ├── 193.8fa44455.js │ │ │ │ ├── 194.49c9a3c0.js │ │ │ │ ├── 195.eb1e8802.js │ │ │ │ ├── 196.9b925823.js │ │ │ │ ├── 197.adca6c8c.js │ │ │ │ ├── 198.2ae0961a.js │ │ │ │ ├── 199.cd9dca80.js │ │ │ │ ├── 2.3e2307f3.js │ │ │ │ ├── 20.5d11c294.js │ │ │ │ ├── 200.2eb9437f.js │ │ │ │ ├── 201.6dba10c3.js │ │ │ │ ├── 202.9c5057c6.js │ │ │ │ ├── 203.98a3c2b8.js │ │ │ │ ├── 204.50d5cf2e.js │ │ │ │ ├── 205.e56e820b.js │ │ │ │ ├── 206.6ce5c41e.js │ │ │ │ ├── 207.8aa83d91.js │ │ │ │ ├── 208.296ee160.js │ │ │ │ ├── 209.13279349.js │ │ │ │ ├── 21.7b54d7d8.js │ │ │ │ ├── 210.63e30420.js │ │ │ │ ├── 211.0b325f23.js │ │ │ │ ├── 212.be671e2e.js │ │ │ │ ├── 213.81d2e607.js │ │ │ │ ├── 214.ba403b5c.js │ │ │ │ ├── 215.2efcec5f.js │ │ │ │ ├── 216.e01d3100.js │ │ │ │ ├── 217.906c8d54.js │ │ │ │ ├── 218.94e33827.js │ │ │ │ ├── 219.21c5e01f.js │ │ │ │ ├── 22.c2daedd0.js │ │ │ │ ├── 220.3ba160e4.js │ │ │ │ ├── 221.5c17138c.js │ │ │ │ ├── 222.aea004ce.js │ │ │ │ ├── 223.cbb7b883.js │ │ │ │ ├── 224.b130b37f.js │ │ │ │ ├── 225.32f90319.js │ │ │ │ ├── 226.8c102c21.js │ │ │ │ ├── 227.b3d60339.js │ │ │ │ ├── 228.72f0ad18.js │ │ │ │ ├── 229.3daa3b7e.js │ │ │ │ ├── 23.2c668e20.js │ │ │ │ ├── 230.7e5a85b1.js │ │ │ │ ├── 231.b83d12f1.js │ │ │ │ ├── 232.e902f42d.js │ │ │ │ ├── 233.b4f254c0.js │ │ │ │ ├── 234.d975df48.js │ │ │ │ ├── 235.71a7be7d.js │ │ │ │ ├── 236.05d87a5e.js │ │ │ │ ├── 237.d518e28b.js │ │ │ │ ├── 238.eb60e397.js │ │ │ │ ├── 239.81fecfed.js │ │ │ │ ├── 24.af200d5b.js │ │ │ │ ├── 240.c0869bc2.js │ │ │ │ ├── 241.59dc896f.js │ │ │ │ ├── 242.6d423d39.js │ │ │ │ ├── 243.a355eaa8.js │ │ │ │ ├── 244.ad729cf8.js │ │ │ │ ├── 245.c3cd6bbe.js │ │ │ │ ├── 246.d0708528.js │ │ │ │ ├── 247.13d65d78.js │ │ │ │ ├── 248.1d222543.js │ │ │ │ ├── 249.2d7a9bf1.js │ │ │ │ ├── 25.4f97f63f.js │ │ │ │ ├── 250.09ef38e2.js │ │ │ │ ├── 251.0cb90e8a.js │ │ │ │ ├── 252.2ff0def4.js │ │ │ │ ├── 253.61c7c505.js │ │ │ │ ├── 254.20137eeb.js │ │ │ │ ├── 255.49c937e9.js │ │ │ │ ├── 256.8d709dae.js │ │ │ │ ├── 257.b3ebdce7.js │ │ │ │ ├── 258.792f66d1.js │ │ │ │ ├── 259.98c809e9.js │ │ │ │ ├── 26.d1bb645c.js │ │ │ │ ├── 260.54ff10d2.js │ │ │ │ ├── 261.928afea4.js │ │ │ │ ├── 27.2d5c4a6b.js │ │ │ │ ├── 28.72dee0f1.js │ │ │ │ ├── 29.8820be26.js │ │ │ │ ├── 3.947b8d98.js │ │ │ │ ├── 30.343676b8.js │ │ │ │ ├── 31.cff089f1.js │ │ │ │ ├── 32.56d8546e.js │ │ │ │ ├── 33.6b642a06.js │ │ │ │ ├── 34.360a9ea9.js │ │ │ │ ├── 35.205d7fac.js │ │ │ │ ├── 36.f2765bae.js │ │ │ │ ├── 37.6c33435e.js │ │ │ │ ├── 38.a778a6a2.js │ │ │ │ ├── 39.7dda160f.js │ │ │ │ ├── 4.ee88d25a.js │ │ │ │ ├── 40.bd778eac.js │ │ │ │ ├── 41.b79220f6.js │ │ │ │ ├── 42.c3157beb.js │ │ │ │ ├── 43.097368d1.js │ │ │ │ ├── 44.2515f16e.js │ │ │ │ ├── 45.d5b4b7c3.js │ │ │ │ ├── 46.bbab8d6e.js │ │ │ │ ├── 47.79aa575e.js │ │ │ │ ├── 48.45785af9.js │ │ │ │ ├── 49.0569a6eb.js │ │ │ │ ├── 5.00f814ac.js │ │ │ │ ├── 50.14bd3ba2.js │ │ │ │ ├── 51.e0968711.js │ │ │ │ ├── 52.fe65ddf8.js │ │ │ │ ├── 53.faa1ff3f.js │ │ │ │ ├── 54.fcfed2c5.js │ │ │ │ ├── 55.7db1d28a.js │ │ │ │ ├── 56.8b0e82b7.js │ │ │ │ ├── 57.9de2d983.js │ │ │ │ ├── 58.b0f8ad0c.js │ │ │ │ ├── 59.f1ff4935.js │ │ │ │ ├── 6.2bc86161.js │ │ │ │ ├── 60.ac08de9a.js │ │ │ │ ├── 61.ea4fad75.js │ │ │ │ ├── 62.5c85853b.js │ │ │ │ ├── 63.5ac99656.js │ │ │ │ ├── 64.c6838e95.js │ │ │ │ ├── 65.4c1b089e.js │ │ │ │ ├── 66.379a6b45.js │ │ │ │ ├── 67.15703e17.js │ │ │ │ ├── 68.ffdefd7d.js │ │ │ │ ├── 69.bdeb7b9b.js │ │ │ │ ├── 7.74f2ce90.js │ │ │ │ ├── 70.3dadb5ed.js │ │ │ │ ├── 71.2c97fe38.js │ │ │ │ ├── 72.dc778e17.js │ │ │ │ ├── 73.d88fcb57.js │ │ │ │ ├── 74.bba2165e.js │ │ │ │ ├── 75.15562a81.js │ │ │ │ ├── 76.21f5a94e.js │ │ │ │ ├── 77.0725268e.js │ │ │ │ ├── 78.d6f610d1.js │ │ │ │ ├── 79.60d67faa.js │ │ │ │ ├── 8.8928eb8b.js │ │ │ │ ├── 80.99d71ee0.js │ │ │ │ ├── 81.f1500469.js │ │ │ │ ├── 82.69f363a6.js │ │ │ │ ├── 83.f1fbcb2c.js │ │ │ │ ├── 84.b76e3156.js │ │ │ │ ├── 85.efc4bd54.js │ │ │ │ ├── 86.85011b24.js │ │ │ │ ├── 87.6a88d571.js │ │ │ │ ├── 88.0f45cfe0.js │ │ │ │ ├── 89.e67ddb59.js │ │ │ │ ├── 9.63ebb16b.js │ │ │ │ ├── 90.96ebfa9b.js │ │ │ │ ├── 91.cdde4d3f.js │ │ │ │ ├── 92.dc3f06d2.js │ │ │ │ ├── 93.aaa04d52.js │ │ │ │ ├── 94.2af5650c.js │ │ │ │ ├── 95.1d44ec16.js │ │ │ │ ├── 96.9545127d.js │ │ │ │ ├── 97.8b18f487.js │ │ │ │ ├── 98.cb259cd0.js │ │ │ │ ├── 99.6251650a.js │ │ │ │ └── app.7e0dc8c8.js │ │ ├── axes │ │ │ ├── _common.html │ │ │ ├── _common_ticks.html │ │ │ ├── cartesian │ │ │ │ ├── _common.html │ │ │ │ ├── _common_ticks.html │ │ │ │ ├── category.html │ │ │ │ ├── index.html │ │ │ │ ├── linear.html │ │ │ │ ├── logarithmic.html │ │ │ │ ├── time.html │ │ │ │ └── timeseries.html │ │ │ ├── index.html │ │ │ ├── labelling.html │ │ │ ├── radial │ │ │ │ ├── index.html │ │ │ │ └── linear.html │ │ │ └── styling.html │ │ ├── charts │ │ │ ├── area.html │ │ │ ├── bar.html │ │ │ ├── bubble.html │ │ │ ├── doughnut.html │ │ │ ├── index.html │ │ │ ├── line.html │ │ │ ├── mixed.html │ │ │ ├── polar.html │ │ │ ├── radar.html │ │ │ └── scatter.html │ │ ├── configuration │ │ │ ├── animations.html │ │ │ ├── canvas-background.html │ │ │ ├── decimation.html │ │ │ ├── device-pixel-ratio.html │ │ │ ├── elements.html │ │ │ ├── index.html │ │ │ ├── interactions.html │ │ │ ├── layout.html │ │ │ ├── legend.html │ │ │ ├── locale.html │ │ │ ├── responsive.html │ │ │ ├── subtitle.html │ │ │ ├── title.html │ │ │ └── tooltip.html │ │ ├── developers │ │ │ ├── api.html │ │ │ ├── axes.html │ │ │ ├── charts.html │ │ │ ├── contributing.html │ │ │ ├── index.html │ │ │ ├── plugins.html │ │ │ ├── publishing.html │ │ │ └── updates.html │ │ ├── favicon.ico │ │ ├── general │ │ │ ├── accessibility.html │ │ │ ├── colors.html │ │ │ ├── data-structures.html │ │ │ ├── fonts.html │ │ │ ├── index.html │ │ │ ├── options.html │ │ │ ├── padding.html │ │ │ └── performance.html │ │ ├── getting-started │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── integration.html │ │ │ ├── usage.html │ │ │ └── v3-migration.html │ │ ├── index.html │ │ ├── logo.png │ │ ├── logo.svg │ │ └── samples │ │ │ ├── advanced │ │ │ ├── data-decimation.html │ │ │ ├── derived-axis-type.html │ │ │ ├── derived-chart-type.html │ │ │ ├── linear-gradient.html │ │ │ ├── programmatic-events.html │ │ │ ├── progress-bar.html │ │ │ └── radial-gradient.html │ │ │ ├── animations │ │ │ ├── delay.html │ │ │ ├── drop.html │ │ │ ├── loop.html │ │ │ ├── progressive-line-easing.html │ │ │ └── progressive-line.html │ │ │ ├── area │ │ │ ├── line-boundaries.html │ │ │ ├── line-datasets.html │ │ │ ├── line-drawtime.html │ │ │ ├── line-stacked.html │ │ │ └── radar.html │ │ │ ├── bar │ │ │ ├── border-radius.html │ │ │ ├── floating.html │ │ │ ├── horizontal.html │ │ │ ├── stacked-groups.html │ │ │ ├── stacked.html │ │ │ └── vertical.html │ │ │ ├── index.html │ │ │ ├── information.html │ │ │ ├── legend │ │ │ ├── events.html │ │ │ ├── html.html │ │ │ ├── point-style.html │ │ │ ├── position.html │ │ │ └── title.html │ │ │ ├── line │ │ │ ├── interpolation.html │ │ │ ├── line.html │ │ │ ├── multi-axis.html │ │ │ ├── point-styling.html │ │ │ ├── segments.html │ │ │ ├── stepped.html │ │ │ └── styling.html │ │ │ ├── other-charts │ │ │ ├── bubble.html │ │ │ ├── combo-bar-line.html │ │ │ ├── doughnut.html │ │ │ ├── multi-series-pie.html │ │ │ ├── pie.html │ │ │ ├── polar-area-center-labels.html │ │ │ ├── polar-area.html │ │ │ ├── radar-skip-points.html │ │ │ ├── radar.html │ │ │ ├── scatter-multi-axis.html │ │ │ ├── scatter.html │ │ │ └── stacked-bar-line.html │ │ │ ├── plugins │ │ │ ├── chart-area-border.html │ │ │ ├── doughnut-empty-state.html │ │ │ └── quadrants.html │ │ │ ├── scale-options │ │ │ ├── center.html │ │ │ ├── grid.html │ │ │ ├── ticks.html │ │ │ └── titles.html │ │ │ ├── scales │ │ │ ├── linear-min-max-suggested.html │ │ │ ├── linear-min-max.html │ │ │ ├── linear-step-size.html │ │ │ ├── log.html │ │ │ ├── stacked.html │ │ │ ├── time-combo.html │ │ │ ├── time-line.html │ │ │ └── time-max-span.html │ │ │ ├── scriptable │ │ │ ├── bar.html │ │ │ ├── bubble.html │ │ │ ├── line.html │ │ │ ├── pie.html │ │ │ ├── polar.html │ │ │ └── radar.html │ │ │ ├── subtitle │ │ │ └── basic.html │ │ │ ├── title │ │ │ └── alignment.html │ │ │ ├── tooltip │ │ │ ├── content.html │ │ │ ├── html.html │ │ │ ├── interactions.html │ │ │ ├── point-style.html │ │ │ └── position.html │ │ │ └── utils.html │ ├── helpers.esm.js │ └── helpers.mjs │ ├── echarts │ ├── echarts.min.js │ └── extension │ │ ├── bmap.js │ │ ├── bmap.js.map │ │ ├── bmap.min.js │ │ ├── dataTool.js │ │ ├── dataTool.js.map │ │ └── dataTool.min.js │ ├── php-email-form │ └── validate.js │ ├── quill │ ├── quill.bubble.css │ ├── quill.core.css │ ├── quill.core.js │ ├── quill.js │ ├── quill.min.js │ ├── quill.min.js.map │ └── quill.snow.css │ ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.less │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 │ ├── simple-datatables │ ├── simple-datatables.js │ └── style.css │ └── tinymce │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── icons │ └── default │ │ ├── icons.js │ │ ├── icons.min.js │ │ └── index.js │ ├── license.txt │ ├── models │ └── dom │ │ ├── index.js │ │ ├── model.js │ │ └── model.min.js │ ├── package.json │ ├── plugins │ ├── advlist │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── anchor │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── autolink │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── autoresize │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── autosave │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── charmap │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── code │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── codesample │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── directionality │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── emoticons │ │ ├── index.js │ │ ├── js │ │ │ ├── emojiimages.js │ │ │ ├── emojiimages.min.js │ │ │ ├── emojis.js │ │ │ └── emojis.min.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── fullscreen │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── help │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── image │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── importcss │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── insertdatetime │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── link │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── lists │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── media │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── nonbreaking │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── pagebreak │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── preview │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── quickbars │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── save │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── searchreplace │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── table │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── template │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── visualblocks │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── visualchars │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ └── wordcount │ │ ├── index.js │ │ ├── plugin.js │ │ └── plugin.min.js │ ├── skins │ ├── content │ │ ├── dark │ │ │ ├── content.css │ │ │ └── content.min.css │ │ ├── default │ │ │ ├── content.css │ │ │ └── content.min.css │ │ ├── document │ │ │ ├── content.css │ │ │ └── content.min.css │ │ ├── tinymce-5-dark │ │ │ ├── content.css │ │ │ └── content.min.css │ │ ├── tinymce-5 │ │ │ ├── content.css │ │ │ └── content.min.css │ │ └── writer │ │ │ ├── content.css │ │ │ └── content.min.css │ └── ui │ │ ├── oxide-dark │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.css │ │ ├── skin.min.css │ │ ├── skin.shadowdom.css │ │ └── skin.shadowdom.min.css │ │ ├── oxide │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.css │ │ ├── skin.min.css │ │ ├── skin.shadowdom.css │ │ └── skin.shadowdom.min.css │ │ ├── tinymce-5-dark │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.css │ │ ├── skin.min.css │ │ ├── skin.shadowdom.css │ │ └── skin.shadowdom.min.css │ │ └── tinymce-5 │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.css │ │ ├── skin.min.css │ │ ├── skin.shadowdom.css │ │ └── skin.shadowdom.min.css │ ├── themes │ └── silver │ │ ├── index.js │ │ ├── theme.js │ │ └── theme.min.js │ ├── tinymce.d.ts │ ├── tinymce.js │ └── tinymce.min.js ├── ERPIntraweb.rar ├── ProjetoERPIntraweb ├── ProjetoERPIntraweb.dpr ├── ProjetoERPIntraweb.dproj ├── ProjetoERPIntraweb.dproj.local ├── ProjetoERPIntraweb.identcache ├── ProjetoERPIntraweb.res ├── ProjetoERPIntraweb_project.tvsconfig ├── ServerController.dfm ├── ServerController.pas ├── Unit9.dfm ├── Unit9.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── Win32 │ └── Debug │ │ ├── Buttons.Icons.dcu │ │ ├── DataBase.BD.Funcoes.dcu │ │ ├── DataBase.DAO.Pedidos.dcu │ │ ├── DataBase.DAO.Pessoa.dcu │ │ ├── DataBase.DAO.Produto.dcu │ │ ├── DataBase.Entity.Pedidos.dcu │ │ ├── DataBase.Entity.Pessoa.dcu │ │ ├── DataBase.Entity.Produto.dcu │ │ ├── DataBase.Funcoes.dcu │ │ ├── DataSet.Serialize.Config.dcu │ │ ├── DataSet.Serialize.Consts.dcu │ │ ├── DataSet.Serialize.Export.dcu │ │ ├── DataSet.Serialize.Import.dcu │ │ ├── DataSet.Serialize.Language.dcu │ │ ├── DataSet.Serialize.UpdatedStatus.dcu │ │ ├── DataSet.Serialize.Utils.dcu │ │ ├── DataSet.Serialize.dcu │ │ ├── FastMM4.dcu │ │ ├── FastMM4LockFreeStack.dcu │ │ ├── FastMM4Messages.dcu │ │ ├── IWLicenseKey.dcu │ │ ├── Integracao.Telegram.dcu │ │ ├── Integracao.Whatsapp.dcu │ │ ├── RESTRequest4D.Request.Client.dcu │ │ ├── RESTRequest4D.Request.Contract.dcu │ │ ├── RESTRequest4D.Response.Client.dcu │ │ ├── RESTRequest4D.Response.Contract.dcu │ │ ├── RESTRequest4D.Utils.dcu │ │ ├── RESTRequest4D.dcu │ │ ├── ServerController.dcu │ │ ├── TTFHelpers.dcu │ │ ├── UserSessionUnit.dcu │ │ ├── frxAggregate.dcu │ │ ├── frxAnaliticGeometry.dcu │ │ ├── frxBaseForm.dcu │ │ ├── frxChBox.dcu │ │ ├── frxChBoxRTTI.dcu │ │ ├── frxChm.dcu │ │ ├── frxClass.dcu │ │ ├── frxClassRTTI.dcu │ │ ├── frxCmapTableClass.dcu │ │ ├── frxCollections.dcu │ │ ├── frxComCtrls.dcu │ │ ├── frxCrypto.dcu │ │ ├── frxCtrls.dcu │ │ ├── frxDBSet.dcu │ │ ├── frxDMPClass.dcu │ │ ├── frxDPIAwareBaseControls.dcu │ │ ├── frxDPIAwareInt.dcu │ │ ├── frxDialogForm.dcu │ │ ├── frxDock.dcu │ │ ├── frxDsgnIntf.dcu │ │ ├── frxEMFAbstractExport.dcu │ │ ├── frxEMFFormat.dcu │ │ ├── frxEMFtoPDFExport.dcu │ │ ├── frxEngine.dcu │ │ ├── frxExportBaseDialog.dcu │ │ ├── frxExportHelpers.dcu │ │ ├── frxExportPDF.dcu │ │ ├── frxExportPDFDialog.dcu │ │ ├── frxExportPDFHelpers.dcu │ │ ├── frxFileUtils.dcu │ │ ├── frxFontHeaderClass.dcu │ │ ├── frxGZip.dcu │ │ ├── frxGlyphSubstitutionClass.dcu │ │ ├── frxGlyphTableClass.dcu │ │ ├── frxGraphicControls.dcu │ │ ├── frxGraphicUtils.dcu │ │ ├── frxHorizontalHeaderClass.dcu │ │ ├── frxHorizontalMetrixClass.dcu │ │ ├── frxIOTransportDialog.dcu │ │ ├── frxIOTransportIntf.dcu │ │ ├── frxInPlaceClipboards.dcu │ │ ├── frxInPlaceEditors.dcu │ │ ├── frxIndexToLocationClass.dcu │ │ ├── frxInheritError.dcu │ │ ├── frxKerningTableClass.dcu │ │ ├── frxMaximumProfileClass.dcu │ │ ├── frxNameTableClass.dcu │ │ ├── frxNetUtils.dcu │ │ ├── frxOS2WindowsMetricsClass.dcu │ │ ├── frxPassw.dcu │ │ ├── frxPictureCache.dcu │ │ ├── frxPlatformServices.dcu │ │ ├── frxPopupForm.dcu │ │ ├── frxPostScriptClass.dcu │ │ ├── frxPreProgramClass.dcu │ │ ├── frxPreview.dcu │ │ ├── frxPreviewPageSettings.dcu │ │ ├── frxPreviewPages.dcu │ │ ├── frxPrintDialog.dcu │ │ ├── frxPrinter.dcu │ │ ├── frxProgress.dcu │ │ ├── frxRC4.dcu │ │ ├── frxRes.dcu │ │ ├── frxRichEdit.dcu │ │ ├── frxSearchDialog.dcu │ │ ├── frxSearchForm.dcu │ │ ├── frxStorage.dcu │ │ ├── frxThreading.dcu │ │ ├── frxTrueTypeCollection.dcu │ │ ├── frxTrueTypeFont.dcu │ │ ├── frxTrueTypeTable.dcu │ │ ├── frxUnicodeCtrls.dcu │ │ ├── frxUnicodeUtils.dcu │ │ ├── frxUtils.dcu │ │ ├── frxVariables.dcu │ │ ├── frxVectorCanvas.dcu │ │ ├── frxXML.dcu │ │ ├── frxXMLSerializer.dcu │ │ ├── frxZLib.dcu │ │ ├── frxmd5.dcu │ │ ├── frxrcClass.dcu │ │ ├── frxrcExports.dcu │ │ ├── fs_ibasic.dcu │ │ ├── fs_iclassesrtti.dcu │ │ ├── fs_iconst.dcu │ │ ├── fs_icpp.dcu │ │ ├── fs_idialogsrtti.dcu │ │ ├── fs_idisp.dcu │ │ ├── fs_ievents.dcu │ │ ├── fs_iexpression.dcu │ │ ├── fs_iformsrtti.dcu │ │ ├── fs_igraphicsrtti.dcu │ │ ├── fs_iilparser.dcu │ │ ├── fs_iinirtti.dcu │ │ ├── fs_iinterpreter.dcu │ │ ├── fs_ijs.dcu │ │ ├── fs_iparser.dcu │ │ ├── fs_ipascal.dcu │ │ ├── fs_isysrtti.dcu │ │ ├── fs_itools.dcu │ │ ├── fs_xml.dcu │ │ ├── uBase.dcu │ │ ├── uDmReport.dcu │ │ ├── uFrmCrudPessoa.dcu │ │ ├── uFrmCrudProduto.dcu │ │ ├── uFrmDashBoard.dcu │ │ ├── uFrmListaPedidos.dcu │ │ ├── uFrmListaProduto.dcu │ │ ├── uFrmLogin.dcu │ │ └── uListaPessoa.dcu ├── __history │ ├── ProjetoERPIntraweb.dpr.~10~ │ ├── ProjetoERPIntraweb.dpr.~11~ │ ├── ProjetoERPIntraweb.dpr.~2~ │ ├── ProjetoERPIntraweb.dpr.~3~ │ ├── ProjetoERPIntraweb.dpr.~4~ │ ├── ProjetoERPIntraweb.dpr.~5~ │ ├── ProjetoERPIntraweb.dpr.~6~ │ ├── ProjetoERPIntraweb.dpr.~7~ │ ├── ProjetoERPIntraweb.dpr.~8~ │ ├── ProjetoERPIntraweb.dpr.~9~ │ ├── ServerController.dfm.~1~ │ ├── ServerController.dfm.~2~ │ ├── ServerController.pas.~1~ │ ├── ServerController.pas.~2~ │ ├── ServerController.pas.~3~ │ ├── UserSessionUnit.dfm.~1~ │ ├── UserSessionUnit.dfm.~2~ │ ├── UserSessionUnit.dfm.~3~ │ ├── UserSessionUnit.dfm.~4~ │ ├── UserSessionUnit.dfm.~5~ │ ├── UserSessionUnit.dfm.~6~ │ ├── UserSessionUnit.dfm.~7~ │ ├── UserSessionUnit.pas.~1~ │ ├── UserSessionUnit.pas.~2~ │ ├── UserSessionUnit.pas.~3~ │ ├── UserSessionUnit.pas.~4~ │ └── UserSessionUnit.pas.~5~ ├── boss-lock.json ├── boss.json └── modules │ ├── .bpl │ └── bpl_order.txt │ ├── dataset-serialize │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── boss-lock.json │ ├── boss.json │ ├── img │ │ ├── dataset-serialize.png │ │ ├── img-01.png │ │ ├── img-02.png │ │ └── img-03.png │ ├── samples │ │ ├── delphi │ │ │ ├── DataSet.Serialize.Samples.groupproj │ │ │ ├── basic │ │ │ │ ├── basic.dpr │ │ │ │ ├── basic.dproj │ │ │ │ └── src │ │ │ │ │ ├── DataSet.Serialize.Samples.Basic.dfm │ │ │ │ │ └── DataSet.Serialize.Samples.Basic.pas │ │ │ ├── configuration │ │ │ │ ├── configuration.dpr │ │ │ │ ├── configuration.dproj │ │ │ │ └── src │ │ │ │ │ ├── DataSet.Serialize.Samples.Configuration.dfm │ │ │ │ │ └── DataSet.Serialize.Samples.Configuration.pas │ │ │ ├── master-detail │ │ │ │ ├── master_detail.dpr │ │ │ │ ├── master_detail.dproj │ │ │ │ └── src │ │ │ │ │ ├── DataSet.Serialize.Samples.Master.Detail.dfm │ │ │ │ │ └── DataSet.Serialize.Samples.Master.Detail.pas │ │ │ └── mobile │ │ │ │ ├── D11 │ │ │ │ ├── AndroidManifest.template.xml │ │ │ │ ├── mobileD11.deployproj │ │ │ │ ├── mobileD11.dpr │ │ │ │ └── mobileD11.dproj │ │ │ │ └── src │ │ │ │ ├── DataSet.Serialize.Samples.Mobile.fmx │ │ │ │ ├── DataSet.Serialize.Samples.Mobile.pas │ │ │ │ └── DataSet.Serialize.Samples.Mobile.vlb │ │ └── lazarus │ │ │ ├── basic │ │ │ ├── basic.ico │ │ │ ├── basic.lpr │ │ │ └── src │ │ │ │ ├── dataset.serialize.samples.basic.lfm │ │ │ │ └── dataset.serialize.samples.basic.pas │ │ │ ├── configuration │ │ │ ├── configuration.ico │ │ │ ├── configuration.lpi │ │ │ ├── configuration.lpr │ │ │ └── src │ │ │ │ ├── dataset.serialize.samples.configuration.lfm │ │ │ │ └── dataset.serialize.samples.configuration.pas │ │ │ └── master-detail │ │ │ ├── EXAMPLE.FDB │ │ │ ├── master_detail.lpi │ │ │ ├── master_detail.lpr │ │ │ └── src │ │ │ ├── DataSet.Serialize.Samples.Master.Detail.lfm │ │ │ └── DataSet.Serialize.Samples.Master.Detail.pas │ └── src │ │ ├── DataSet.Serialize.Config.pas │ │ ├── DataSet.Serialize.Consts.pas │ │ ├── DataSet.Serialize.Export.pas │ │ ├── DataSet.Serialize.Import.pas │ │ ├── DataSet.Serialize.Language.pas │ │ ├── DataSet.Serialize.UpdatedStatus.pas │ │ ├── DataSet.Serialize.Utils.pas │ │ └── DataSet.Serialize.pas │ └── restrequest4delphi │ ├── .github │ └── FUNDING.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── boss-lock.json │ ├── boss.json │ ├── img │ └── logo.png │ ├── samples │ ├── client │ │ ├── delphi │ │ │ ├── Bin │ │ │ │ └── RESTRequest4Delphi.pdf │ │ │ ├── Samples.dpr │ │ │ ├── Samples.dproj │ │ │ └── src │ │ │ │ ├── Samples.Main.dfm │ │ │ │ └── Samples.Main.pas │ │ └── lazarus │ │ │ ├── Samples.lpi │ │ │ ├── Samples.lpr │ │ │ └── src │ │ │ ├── samples.main.lfm │ │ │ └── samples.main.pas │ ├── mercado-libre │ │ └── delphi │ │ │ ├── mercadolibre.dpr │ │ │ ├── mercadolibre.dproj │ │ │ └── src │ │ │ ├── Mercado.Libre.Consts.pas │ │ │ ├── Mercado.Libre.View.dfm │ │ │ └── Mercado.Libre.View.pas │ ├── server-horse │ │ ├── Main.dfm │ │ ├── Main.pas │ │ ├── Server.dpr │ │ └── Server.dproj │ └── server-node │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ └── src │ ├── RESTRequest4D.Request.Client.pas │ ├── RESTRequest4D.Request.Contract.pas │ ├── RESTRequest4D.Request.FPHTTPClient.pas │ ├── RESTRequest4D.Request.Indy.pas │ ├── RESTRequest4D.Request.NetHTTP.pas │ ├── RESTRequest4D.Request.Synapse.pas │ ├── RESTRequest4D.Response.Client.pas │ ├── RESTRequest4D.Response.Contract.pas │ ├── RESTRequest4D.Response.FPHTTPClient.pas │ ├── RESTRequest4D.Response.Indy.pas │ ├── RESTRequest4D.Response.NetHTTP.pas │ ├── RESTRequest4D.Response.Synapse.pas │ ├── RESTRequest4D.Utils.pas │ └── RESTRequest4D.pas ├── README.md └── Source ├── BootsTrap └── Componentes │ └── Buttons │ └── Buttons.Icons.pas ├── Clientes ├── uListaPessoa.dfm └── uListaPessoa.pas ├── DataBase ├── DAO │ ├── DataBase.DAO.Pedidos.pas │ ├── DataBase.DAO.Pessoa.pas │ └── DataBase.DAO.Produto.pas ├── DataBase.BD.Funcoes.pas └── ENTITY │ ├── DataBase.Entity.Pedidos.pas │ ├── DataBase.Entity.Pessoa.pas │ └── DataBase.Entity.Produto.pas ├── Funcoes └── DataBase.Funcoes.pas ├── Integracoes ├── Integracao.Telegram.pas └── Integracao.Whatsapp.pas ├── Pages ├── Pedidos │ ├── uFrmListaPedidos.dfm │ └── uFrmListaPedidos.pas └── Produto │ ├── uFrmCrudProduto.dfm │ ├── uFrmCrudProduto.pas │ ├── uFrmListaProduto.dfm │ └── uFrmListaProduto.pas ├── Pessoa ├── uFrmCrudPessoa.dfm └── uFrmCrudPessoa.pas ├── Report ├── uDmReport.dfm └── uDmReport.pas ├── base ├── uBase.dfm └── uBase.pas ├── uFrmDashBoard.dfm ├── uFrmDashBoard.pas ├── uFrmLogin.dfm └── uFrmLogin.pas /.gitignore: -------------------------------------------------------------------------------- 1 | *.~ -------------------------------------------------------------------------------- /Bin/Files/Clientes/00000000000000/BD/DADOS.FDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/Files/Clientes/00000000000000/BD/DADOS.FDB -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/Readme.txt -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/css/style.css -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/card.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/favicon.png -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/logo.png -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-1.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-2.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/messages-3.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-1.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-2.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-3.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-4.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/news-5.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/not-found.svg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-1.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-2.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-3.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-4.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/product-5.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/profile-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/profile-img.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-1.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-2.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/img/slides-3.jpg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/js/main.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/scss/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/scss/Readme.txt -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.esm.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.min.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/chart.mjs -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/404.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/index.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/logo.png -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/docs/logo.svg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/helpers.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/helpers.esm.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/chart.js/helpers.mjs -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/echarts/echarts.min.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.bubble.css -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.core.css -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.core.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.min.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.min.js.map -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/quill/quill.snow.css -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/CHANGELOG.md -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/README.md -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/bower.json -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/composer.json -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/license.txt -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/package.json -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/assets/vendor/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/changelog.txt -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/charts-apexcharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/charts-apexcharts.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/charts-chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/charts-chartjs.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/charts-echarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/charts-echarts.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-accordion.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-alerts.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-badges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-badges.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-breadcrumbs.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-buttons.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-cards.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-carousel.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-list-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-list-group.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-modal.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-pagination.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-progress.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-spinners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-spinners.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-tabs.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/components-tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/components-tooltips.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms-editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms-editors.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms-elements.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms-layouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms-layouts.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms-validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms-validation.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms/Readme.txt -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/forms/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/forms/contact.php -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/icons-bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/icons-bootstrap.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/icons-boxicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/icons-boxicons.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/icons-remix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/icons-remix.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/index.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-blank.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-contact.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-error-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-error-404.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-faq.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-login.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/pages-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/pages-register.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/tables-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/tables-data.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/tables-general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/tables-general.html -------------------------------------------------------------------------------- /Bin/NiceAdmin(1)/NiceAdmin/users-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/NiceAdmin(1)/NiceAdmin/users-profile.html -------------------------------------------------------------------------------- /Bin/ProjetoERPIntraweb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/ProjetoERPIntraweb.exe -------------------------------------------------------------------------------- /Bin/ProjetoERPIntraweb.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/ProjetoERPIntraweb.log -------------------------------------------------------------------------------- /Bin/templates/FrmCrudPessoa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmCrudPessoa.html -------------------------------------------------------------------------------- /Bin/templates/FrmCrudProduto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmCrudProduto.html -------------------------------------------------------------------------------- /Bin/templates/FrmDashBoard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmDashBoard.html -------------------------------------------------------------------------------- /Bin/templates/FrmLimpo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmLimpo.html -------------------------------------------------------------------------------- /Bin/templates/FrmListaPedidos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmListaPedidos.html -------------------------------------------------------------------------------- /Bin/templates/FrmListaPessoa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmListaPessoa.html -------------------------------------------------------------------------------- /Bin/templates/FrmListaProduto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmListaProduto.html -------------------------------------------------------------------------------- /Bin/templates/FrmLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/FrmLogin.html -------------------------------------------------------------------------------- /Bin/templates/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/templates/master.html -------------------------------------------------------------------------------- /Bin/wwwroot/Sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/Sample.pdf -------------------------------------------------------------------------------- /Bin/wwwroot/assets/Holdon/css/HoldOn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/Holdon/css/HoldOn.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/Holdon/css/HoldOn.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/Holdon/css/HoldOn.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/Holdon/js/HoldOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/Holdon/js/HoldOn.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/Holdon/js/HoldOn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/Holdon/js/HoldOn.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/css/style.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/card.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/favicon.png -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/logo.png -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/messages-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/messages-1.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/messages-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/messages-2.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/messages-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/messages-3.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/news-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/news-1.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/news-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/news-2.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/news-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/news-3.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/news-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/news-4.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/news-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/news-5.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/not-found.svg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/product-1.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/product-2.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/product-3.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/product-4.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/product-5.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/profile-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/profile-img.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/slides-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/slides-1.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/slides-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/slides-2.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/img/slides-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/img/slides-3.jpg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/js/main.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/scss/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/scss/Readme.txt -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/apexcharts.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ar.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ca.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/cs.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/de.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/el.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/en.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/es.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/et.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/fa.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/fi.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/fr.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/he.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/hi.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/hr.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/hu.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/hy.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/id.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/it.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ja.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ka.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ko.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/lt.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/lv.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/nb.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/nl.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/pl.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/pt-br.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/pt.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/rs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/rs.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ru.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/se.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/sk.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/sl.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/sq.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/th.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/tr.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/ua.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/zh-cn.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/apexcharts/locales/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/apexcharts/locales/zh-tw.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap-icons/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chart.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chart.esm.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chart.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chart.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chart.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chart.mjs -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chunks/helpers.segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chunks/helpers.segment.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/chunks/helpers.segment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/chunks/helpers.segment.mjs -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/404.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Animator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Animator.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Chart.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/classes/Scale.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/interfaces/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/interfaces/Point.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/api/interfaces/Tick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/api/interfaces/Tick.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/10.edbecfa9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/10.edbecfa9.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/100.f7a12d8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/100.f7a12d8b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/101.15c56dbb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/101.15c56dbb.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/102.33b746ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/102.33b746ea.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/103.850a4486.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/103.850a4486.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/104.8b4f368b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/104.8b4f368b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/105.1a3d6c41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/105.1a3d6c41.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/106.d8f8b4c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/106.d8f8b4c1.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/107.38cf9b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/107.38cf9b4f.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/108.a30da8c9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/108.a30da8c9.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/109.6d56b7d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/109.6d56b7d1.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/11.b98e8151.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/11.b98e8151.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/110.c44e533c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/110.c44e533c.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/111.ccb9a835.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/111.ccb9a835.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/112.2d2a2890.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/112.2d2a2890.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/113.5ac0921f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/113.5ac0921f.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/114.90ef8814.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/114.90ef8814.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/115.12a72d27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/115.12a72d27.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/116.6b780970.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/116.6b780970.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/117.79604442.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/117.79604442.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/118.7752bc89.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/118.7752bc89.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/119.d8e76ef0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/119.d8e76ef0.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/12.433f0c7e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/12.433f0c7e.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/120.ed76595e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/120.ed76595e.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/121.cc3d56f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/121.cc3d56f2.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/122.c8651871.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/122.c8651871.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/123.f7d5f223.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/123.f7d5f223.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/124.88ce07a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/124.88ce07a4.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/125.a9572036.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/125.a9572036.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/126.879447b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/126.879447b3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/127.3b8478f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/127.3b8478f3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/128.87d67ad7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/128.87d67ad7.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/129.f6241700.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/129.f6241700.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/13.b6743084.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/13.b6743084.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/130.a9cb856a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/130.a9cb856a.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/131.45e904c9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/131.45e904c9.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/132.abd9e4c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/132.abd9e4c2.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/133.d5aa1db6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/133.d5aa1db6.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/134.4bfa3b5a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/134.4bfa3b5a.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/135.8c7630ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/135.8c7630ad.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/136.f813e062.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/136.f813e062.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/137.6cab2863.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/137.6cab2863.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/138.03ec5265.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/138.03ec5265.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/139.924812c0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/139.924812c0.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/14.422fec10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/14.422fec10.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/140.a7967a5d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/140.a7967a5d.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/141.34a018bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/141.34a018bb.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/142.c5bfcdd4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/142.c5bfcdd4.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/143.05e388ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/143.05e388ba.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/144.a98bdbcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/144.a98bdbcc.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/145.826b73e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/145.826b73e0.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/146.001afadf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/146.001afadf.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/147.fcadaef3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/147.fcadaef3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/148.604863a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/148.604863a4.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/149.6509ed9f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/149.6509ed9f.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/15.09a69fc3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/15.09a69fc3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/150.fd8575ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/150.fd8575ca.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/151.67ecd4a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/151.67ecd4a3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/152.481a7bd4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/152.481a7bd4.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/153.dbf3f3aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/153.dbf3f3aa.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/154.2aa9c67d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/154.2aa9c67d.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/155.e3367ebc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/155.e3367ebc.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/156.a5bb942d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/156.a5bb942d.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/157.09caef4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/157.09caef4e.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/158.1f82587f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/158.1f82587f.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/159.4cebd9d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/159.4cebd9d3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/16.0414f390.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/16.0414f390.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/160.47df8215.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/160.47df8215.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/161.fac79692.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/161.fac79692.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/162.9f2f870f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/162.9f2f870f.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/163.4f1604f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/163.4f1604f9.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/164.7f8d8643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/164.7f8d8643.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/165.fe2baa69.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/165.fe2baa69.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/166.c82b3c76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/166.c82b3c76.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/167.3c3f2ff1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/167.3c3f2ff1.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/168.8d2e8e83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/168.8d2e8e83.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/169.b10c84bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/169.b10c84bd.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/17.8dfcb176.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/17.8dfcb176.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/170.b9db8312.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/170.b9db8312.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/171.2480fc36.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/171.2480fc36.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/172.81c5206a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/172.81c5206a.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/173.477dcbae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/173.477dcbae.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/174.05398ca3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/174.05398ca3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/175.84ab69d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/175.84ab69d0.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/176.f48183c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/176.f48183c3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/177.d0d35403.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/177.d0d35403.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/178.55d433fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/178.55d433fd.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/179.9442c138.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/179.9442c138.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/18.c331029e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/18.c331029e.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/180.5c15d5d4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/180.5c15d5d4.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/181.911f367b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/181.911f367b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/182.72f663e8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/182.72f663e8.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/183.22b2258c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/183.22b2258c.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/184.15b21065.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/184.15b21065.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/185.894ea40b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/185.894ea40b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/186.f6394459.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/186.f6394459.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/2.3e2307f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/2.3e2307f3.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/3.947b8d98.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/3.947b8d98.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/4.ee88d25a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/4.ee88d25a.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/5.00f814ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/5.00f814ac.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/6.2bc86161.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/6.2bc86161.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/7.74f2ce90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/7.74f2ce90.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/8.8928eb8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/8.8928eb8b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/9.63ebb16b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/assets/js/9.63ebb16b.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/_common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/_common.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/_common_ticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/_common_ticks.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/labelling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/labelling.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/radial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/radial/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/radial/linear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/radial/linear.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/axes/styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/axes/styling.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/area.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/bar.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/bubble.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/doughnut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/doughnut.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/line.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/mixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/mixed.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/polar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/polar.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/radar.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/charts/scatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/charts/scatter.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/api.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/axes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/axes.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/charts.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/plugins.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/developers/updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/developers/updates.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/favicon.ico -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/general/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/general/colors.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/general/fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/general/fonts.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/general/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/general/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/general/options.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/general/padding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/general/padding.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/logo.png -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/logo.svg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/samples/area/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/samples/area/radar.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/samples/index.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/samples/line/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/samples/line/line.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/samples/scales/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/samples/scales/log.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/docs/samples/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/docs/samples/utils.html -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/helpers.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/helpers.esm.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/chart.js/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/chart.js/helpers.mjs -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/echarts.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/bmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/bmap.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/bmap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/bmap.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/bmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/bmap.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/dataTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/dataTool.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/dataTool.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/dataTool.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/echarts/extension/dataTool.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/echarts/extension/dataTool.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.bubble.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.core.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.core.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.min.js.map -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/quill/quill.snow.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/simple-datatables/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/simple-datatables/style.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/CHANGELOG.md -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/README.md -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/bower.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/composer.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/icons/default/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/icons/default/icons.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/icons/default/icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/icons/default/icons.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/icons/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/icons/default/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/license.txt -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/models/dom/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/models/dom/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/models/dom/model.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/models/dom/model.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/models/dom/model.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/package.json -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/advlist/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/anchor/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autolink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autolink/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autolink/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autolink/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autoresize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autoresize/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autoresize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autoresize/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autosave/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autosave/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/autosave/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/autosave/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/charmap/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/code/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/code/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/code/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/code/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/codesample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/codesample/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/codesample/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/codesample/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/emoticons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/emoticons/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/emoticons/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/emoticons/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/fullscreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/fullscreen/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/fullscreen/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/fullscreen/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/help/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/help/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/help/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/help/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/help/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/image/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/image/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/image/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/image/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/image/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/importcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/importcss/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/importcss/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/importcss/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/link/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/link/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/link/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/link/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/link/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/lists/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/lists/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/lists/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/lists/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/lists/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/media/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/media/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/media/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/media/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/media/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/media/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/nonbreaking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/nonbreaking/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/nonbreaking/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/nonbreaking/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/pagebreak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/pagebreak/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/pagebreak/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/pagebreak/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/preview/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/preview/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/preview/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/preview/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/preview/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/quickbars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/quickbars/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/quickbars/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/quickbars/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/save/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/save/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/save/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/save/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/table/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/table/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/table/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/table/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/table/plugin.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/template/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/template/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/template/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/visualblocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/visualblocks/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/visualchars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/visualchars/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/visualchars/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/visualchars/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/wordcount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/wordcount/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/plugins/wordcount/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/plugins/wordcount/plugin.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide-dark/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide-dark/skin.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/content.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/skin.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/skins/ui/oxide/skin.min.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/skins/ui/tinymce-5/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/skins/ui/tinymce-5/skin.css -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/themes/silver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/themes/silver/index.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/themes/silver/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/themes/silver/theme.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/themes/silver/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/themes/silver/theme.min.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/tinymce.js -------------------------------------------------------------------------------- /Bin/wwwroot/assets/vendor/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Bin/wwwroot/assets/vendor/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /ERPIntraweb.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ERPIntraweb.rar -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb.dpr -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb.dproj -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb.dproj.local -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb.identcache -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb.res -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ProjetoERPIntraweb_project.tvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ProjetoERPIntraweb_project.tvsconfig -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ServerController.dfm -------------------------------------------------------------------------------- /ProjetoERPIntraweb/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/ServerController.pas -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Unit9.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Unit9.dfm -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Unit9.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Unit9.pas -------------------------------------------------------------------------------- /ProjetoERPIntraweb/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/UserSessionUnit.dfm -------------------------------------------------------------------------------- /ProjetoERPIntraweb/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/UserSessionUnit.pas -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/Buttons.Icons.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/Buttons.Icons.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.BD.Funcoes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.BD.Funcoes.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Pedidos.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Pedidos.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Pessoa.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Pessoa.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Produto.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.DAO.Produto.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Pedidos.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Pedidos.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Pessoa.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Pessoa.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Produto.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.Entity.Produto.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataBase.Funcoes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataBase.Funcoes.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Config.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Config.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Consts.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Consts.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Export.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Export.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Import.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Import.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Language.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Language.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Utils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.Utils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/DataSet.Serialize.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/FastMM4.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/FastMM4.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/FastMM4LockFreeStack.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/FastMM4LockFreeStack.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/FastMM4Messages.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/FastMM4Messages.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/IWLicenseKey.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/IWLicenseKey.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/Integracao.Telegram.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/Integracao.Telegram.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/Integracao.Whatsapp.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/Integracao.Whatsapp.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.Request.Client.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.Request.Client.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.Utils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.Utils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/RESTRequest4D.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/ServerController.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/ServerController.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/TTFHelpers.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/TTFHelpers.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/UserSessionUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/UserSessionUnit.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxAggregate.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxAggregate.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxAnaliticGeometry.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxAnaliticGeometry.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxBaseForm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxBaseForm.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxChBox.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxChBox.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxChBoxRTTI.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxChBoxRTTI.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxChm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxChm.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxClassRTTI.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxClassRTTI.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxCmapTableClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxCmapTableClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxCollections.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxCollections.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxComCtrls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxComCtrls.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxCrypto.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxCrypto.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxCtrls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxCtrls.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDBSet.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDBSet.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDMPClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDMPClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDPIAwareBaseControls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDPIAwareBaseControls.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDPIAwareInt.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDPIAwareInt.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDialogForm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDialogForm.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDock.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDock.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxDsgnIntf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxDsgnIntf.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxEMFAbstractExport.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxEMFAbstractExport.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxEMFFormat.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxEMFFormat.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxEMFtoPDFExport.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxEMFtoPDFExport.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxEngine.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxEngine.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxExportBaseDialog.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxExportBaseDialog.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxExportHelpers.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxExportHelpers.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxExportPDF.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxExportPDF.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxExportPDFDialog.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxExportPDFDialog.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxExportPDFHelpers.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxExportPDFHelpers.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxFileUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxFileUtils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxFontHeaderClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxFontHeaderClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxGZip.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxGZip.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxGlyphSubstitutionClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxGlyphSubstitutionClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxGlyphTableClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxGlyphTableClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxGraphicControls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxGraphicControls.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxGraphicUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxGraphicUtils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxHorizontalHeaderClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxHorizontalHeaderClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxHorizontalMetrixClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxHorizontalMetrixClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxIOTransportDialog.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxIOTransportDialog.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxIOTransportIntf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxIOTransportIntf.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxInPlaceClipboards.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxInPlaceClipboards.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxInPlaceEditors.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxInPlaceEditors.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxIndexToLocationClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxIndexToLocationClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxInheritError.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxInheritError.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxKerningTableClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxKerningTableClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxMaximumProfileClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxMaximumProfileClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxNameTableClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxNameTableClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxNetUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxNetUtils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxOS2WindowsMetricsClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxOS2WindowsMetricsClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPassw.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPassw.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPictureCache.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPictureCache.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPlatformServices.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPlatformServices.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPopupForm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPopupForm.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPostScriptClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPostScriptClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPreProgramClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPreProgramClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPreview.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPreview.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPreviewPageSettings.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPreviewPageSettings.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPreviewPages.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPreviewPages.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPrintDialog.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPrintDialog.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxPrinter.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxPrinter.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxProgress.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxProgress.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxRC4.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxRC4.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxRes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxRes.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxRichEdit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxRichEdit.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxSearchDialog.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxSearchDialog.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxSearchForm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxSearchForm.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxStorage.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxStorage.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxThreading.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxThreading.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxTrueTypeCollection.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxTrueTypeCollection.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxTrueTypeFont.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxTrueTypeFont.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxTrueTypeTable.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxTrueTypeTable.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxUnicodeCtrls.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxUnicodeCtrls.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxUnicodeUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxUnicodeUtils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxUtils.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxVariables.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxVariables.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxVectorCanvas.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxVectorCanvas.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxXML.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxXML.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxXMLSerializer.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxXMLSerializer.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxZLib.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxZLib.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxmd5.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxmd5.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxrcClass.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxrcClass.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/frxrcExports.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/frxrcExports.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_ibasic.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_ibasic.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iclassesrtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iclassesrtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iconst.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iconst.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_icpp.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_icpp.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_idialogsrtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_idialogsrtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_idisp.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_idisp.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_ievents.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_ievents.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iexpression.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iexpression.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iformsrtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iformsrtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_igraphicsrtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_igraphicsrtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iilparser.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iilparser.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iinirtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iinirtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iinterpreter.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iinterpreter.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_ijs.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_ijs.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_iparser.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_iparser.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_ipascal.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_ipascal.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_isysrtti.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_isysrtti.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_itools.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_itools.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/fs_xml.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/fs_xml.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uBase.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uBase.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uDmReport.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uDmReport.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmCrudPessoa.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmCrudPessoa.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmCrudProduto.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmCrudProduto.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmDashBoard.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmDashBoard.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmListaPedidos.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmListaPedidos.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmListaProduto.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmListaProduto.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uFrmLogin.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uFrmLogin.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/Win32/Debug/uListaPessoa.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/Win32/Debug/uListaPessoa.dcu -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~10~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~10~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~11~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~11~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~2~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~3~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~3~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~4~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~4~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~5~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~5~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~6~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~6~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~7~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~7~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~8~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~8~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~9~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ProjetoERPIntraweb.dpr.~9~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ServerController.dfm.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ServerController.dfm.~1~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ServerController.dfm.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ServerController.dfm.~2~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ServerController.pas.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ServerController.pas.~1~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ServerController.pas.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ServerController.pas.~2~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/ServerController.pas.~3~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/ServerController.pas.~3~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~1~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~2~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~3~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~3~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~4~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~4~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~5~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~5~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~6~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~6~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~7~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.dfm.~7~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.pas.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.pas.~1~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.pas.~2~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.pas.~2~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.pas.~3~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.pas.~3~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.pas.~4~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.pas.~4~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/__history/UserSessionUnit.pas.~5~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/__history/UserSessionUnit.pas.~5~ -------------------------------------------------------------------------------- /ProjetoERPIntraweb/boss-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/boss-lock.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/boss.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/.bpl/bpl_order.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # github: [viniciussanchez] 2 | open_collective: dataset-serialize 3 | -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/.gitignore -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/LICENSE -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/README.md -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/boss-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/boss-lock.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/boss.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/img/img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/img/img-01.png -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/img/img-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/img/img-02.png -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/dataset-serialize/img/img-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/dataset-serialize/img/img-03.png -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # github: [viniciussanchez] 2 | open_collective: restrequest4delphi 3 | -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/.gitignore -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/LICENSE -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/README.md -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/boss-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/boss-lock.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/boss.json -------------------------------------------------------------------------------- /ProjetoERPIntraweb/modules/restrequest4delphi/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/ProjetoERPIntraweb/modules/restrequest4delphi/img/logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ERP-Delphi-Intraweb 2 | -------------------------------------------------------------------------------- /Source/BootsTrap/Componentes/Buttons/Buttons.Icons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/BootsTrap/Componentes/Buttons/Buttons.Icons.pas -------------------------------------------------------------------------------- /Source/Clientes/uListaPessoa.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Clientes/uListaPessoa.dfm -------------------------------------------------------------------------------- /Source/Clientes/uListaPessoa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Clientes/uListaPessoa.pas -------------------------------------------------------------------------------- /Source/DataBase/DAO/DataBase.DAO.Pedidos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/DAO/DataBase.DAO.Pedidos.pas -------------------------------------------------------------------------------- /Source/DataBase/DAO/DataBase.DAO.Pessoa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/DAO/DataBase.DAO.Pessoa.pas -------------------------------------------------------------------------------- /Source/DataBase/DAO/DataBase.DAO.Produto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/DAO/DataBase.DAO.Produto.pas -------------------------------------------------------------------------------- /Source/DataBase/DataBase.BD.Funcoes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/DataBase.BD.Funcoes.pas -------------------------------------------------------------------------------- /Source/DataBase/ENTITY/DataBase.Entity.Pedidos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/ENTITY/DataBase.Entity.Pedidos.pas -------------------------------------------------------------------------------- /Source/DataBase/ENTITY/DataBase.Entity.Pessoa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/ENTITY/DataBase.Entity.Pessoa.pas -------------------------------------------------------------------------------- /Source/DataBase/ENTITY/DataBase.Entity.Produto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/DataBase/ENTITY/DataBase.Entity.Produto.pas -------------------------------------------------------------------------------- /Source/Funcoes/DataBase.Funcoes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Funcoes/DataBase.Funcoes.pas -------------------------------------------------------------------------------- /Source/Integracoes/Integracao.Telegram.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Integracoes/Integracao.Telegram.pas -------------------------------------------------------------------------------- /Source/Integracoes/Integracao.Whatsapp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Integracoes/Integracao.Whatsapp.pas -------------------------------------------------------------------------------- /Source/Pages/Pedidos/uFrmListaPedidos.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Pedidos/uFrmListaPedidos.dfm -------------------------------------------------------------------------------- /Source/Pages/Pedidos/uFrmListaPedidos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Pedidos/uFrmListaPedidos.pas -------------------------------------------------------------------------------- /Source/Pages/Produto/uFrmCrudProduto.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Produto/uFrmCrudProduto.dfm -------------------------------------------------------------------------------- /Source/Pages/Produto/uFrmCrudProduto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Produto/uFrmCrudProduto.pas -------------------------------------------------------------------------------- /Source/Pages/Produto/uFrmListaProduto.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Produto/uFrmListaProduto.dfm -------------------------------------------------------------------------------- /Source/Pages/Produto/uFrmListaProduto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pages/Produto/uFrmListaProduto.pas -------------------------------------------------------------------------------- /Source/Pessoa/uFrmCrudPessoa.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pessoa/uFrmCrudPessoa.dfm -------------------------------------------------------------------------------- /Source/Pessoa/uFrmCrudPessoa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Pessoa/uFrmCrudPessoa.pas -------------------------------------------------------------------------------- /Source/Report/uDmReport.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Report/uDmReport.dfm -------------------------------------------------------------------------------- /Source/Report/uDmReport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/Report/uDmReport.pas -------------------------------------------------------------------------------- /Source/base/uBase.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/base/uBase.dfm -------------------------------------------------------------------------------- /Source/base/uBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/base/uBase.pas -------------------------------------------------------------------------------- /Source/uFrmDashBoard.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/uFrmDashBoard.dfm -------------------------------------------------------------------------------- /Source/uFrmDashBoard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/uFrmDashBoard.pas -------------------------------------------------------------------------------- /Source/uFrmLogin.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/uFrmLogin.dfm -------------------------------------------------------------------------------- /Source/uFrmLogin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cledersoncaruaru/ERP-Delphi-Intraweb/HEAD/Source/uFrmLogin.pas --------------------------------------------------------------------------------