id
int64
0
745k
text
stringlengths
101
1M
meta
dict
perplexity_score
float64
1.3
662k
text_length
int64
101
1M
url
stringlengths
14
7.98k
domain
stringlengths
4
947
dup_ratio
float64
0
1.48k
pairs
sequence
repetitions
sequence
included_in_dedup
bool
2 classes
cluster
sequence
has_dup_25
bool
2 classes
2,608,928
There are some issues with older versions of the glibc dynamic loader (e.g., the version that shipped with Red Hat Linux 7.2) and applications such as Quake3 and Radiant, that use dlopen(). See Chapter 7, Frequently Asked Questions for more details. Interaction with pthreads Single-threaded applications that use dlopen() to load NVIDIA's libGL library, and then use dlopen() to load any other library that is linked against libpthread will crash in libGL. This does not happen in NVIDIA's new ELF TLS OpenGL libraries (see Chapter 5, Listing of Installed Components for a description of the ELF TLS OpenGL libraries). Possible workarounds for this problem are: Load the library that is linked with libpthread before loading libGL. Link the application with libpthread. The X86-64 platform (AMD64/EM64T) and early Linux 2.6 kernels Early Linux 2.6 x86_64 kernels have an accounting problem in their implementation of the change_page_attr kernel interface. These kernels include a check that triggers a BUG() when this situation is encountered (triggering a BUG() results in the current application being killed by the kernel; this application would be your OpenGL application or potentially the X server). The accounting issue has been resolved in the 2.6.11 kernel. We have added checks to recognize that the NVIDIA kernel module is being compiled for the x86-64 platform on a kernel between Linux 2.6.0 and Linux 2.6.11. In this case, we will disable usage of the change_page_attr kernel interface. This will avoid the accounting issue but leaves the system in danger of cache aliasing (see entry below on Cache Aliasing for more information about cache aliasing). Note that this change_page_attr accounting issue and BUG() can be triggered by other kernel subsystems that rely on this interface. If you are using a Linux 2.6 x86_64 kernel, it is recommended that you upgrade to Linux 2.6.11 or to a later kernel. Also take note of common dma issues on 64-bit platforms in Chapter 10, Allocating DMA Buffers on 64-bit Platforms. Cache Aliasing Cache aliasing occurs when multiple mappings to a physical page of memory have conflicting caching states, such as cached and uncached. Due to these conflicting states, data in that physical page may become corrupted when the processor's cache is flushed. If that page is being used for DMA by a driver such as NVIDIA's graphics driver, this can lead to hardware stability problems and system lockups. NVIDIA has encountered bugs with some Linux kernel versions that lead to cache aliasing. Although some systems will run perfectly fine when cache aliasing occurs, other systems will experience severe stability problems, including random lockups. Users experiencing stability problems due to cache aliasing will benefit from updating to a kernel that does not cause cache aliasing to occur. 64-Bit BARs (Base Address Registers) NVIDIA GPUs advertise a 64-bit BAR capability (a Base Address Register stores the location of a PCI I/O region, such as registers or a frame buffer). This means that the GPU's PCI I/O regions (registers and frame buffer) can be placed above the 32-bit address space (the first 4 gigabytes of memory). The decision of where the BAR is placed is made by the system BIOS at boot time. If the BIOS supports 64-bit BARs, then the NVIDIA PCI I/O regions may be placed above the 32-bit address space. If the BIOS does not support this feature, then our PCI I/O regions will be placed within the 32-bit address space as they have always been. Unfortunately, some Linux kernels (such as 2.6.11.x) do not understand or support 64-bit BARs. If the BIOS does place any NVIDIA PCI I/O regions above the 32-bit address space, such kernels will reject the BAR and the NVIDIA driver will not work. The only known workaround is to upgrade to a newer kernel. Kernel virtual address space exhaustion on the X86 platform On X86 systems and AMD64/EM64T systems using X86 kernels, only 4GB of virtual address space are available, which the Linux kernel typically partitions such that user processes are allocated 3GB, the kernel itself 1GB. Part of the kernel's share is used to create a direct mapping of system memory (RAM). Depending on how much system memory is installed, the kernel virtual address space remaining for other uses varies in size and may be as small as 128MB, if 1GB of system memory (or more) are installed. The kernel typically reserves a minimum of 128MB by default. The kernel virtual address space still available after the creation of the direct system memory mapping is used by both the kernel and by drivers to map I/O resources, and for some memory allocations. Depending on the number of consumers and their respective requirements, the Linux kernel's virtual address space may be exhausted. Typically when this happens, the kernel prints an error message that looks like allocation failed: out of vmalloc space - use vmalloc=<size> to increase size. or vmap allocation for size 16781312 failed: use vmalloc=<size> to increase size. The NVIDIA kernel module requires portions of the kernel's virtual address space for each GPU and for certain memory allocations. If no more than 128MB are available to the kernel and device drivers at boot time, the NVIDIA kernel module may be unable to initialize all GPUs, or fail memory allocations. This is not usually a problem with only 1 or 2 GPUs, however depending on the number of other drivers and their usage patterns, it can be; it is likely to be a problem with 3 or more GPUs. Possible solutions for this problem include: If your system is equipped with an X86-64 (AMD64/EM64T) processor, it is recommended that you switch to a 64-bit Linux kernel/distribution. Due to the significantly larger address space provided by the X86-64 processors' addressing capabilities, X86-64 kernels will not run out of kernel virtual address space in the foreseeable future. If a 64-bit kernel cannot be used, the 'vmalloc' kernel parameter can be used on recent kernels to increase the size of the kernel virtual address space reserved by the Linux kernel (the default is usually 128MB). Incrementally raising this to find the best balance between the size of the kernel virtual address space made available and the size of the direct system memory mapping is recommended. You can achieve this by passing 'vmalloc=192M', 'vmalloc=256MB', ..., to the kernel and checking if the above error message continues to be printed. Note that some versions of the GRUB boot loader have problems calculating the memory layout and loading the initrd if the 'vmalloc' kernel parameter is used. The 'uppermem' GRUB command can be used to force GRUB to load the initrd into a lower region of system memory to work around this problem. This will not adversely affect system performance once the kernel has been loaded. The suggested syntax (assuming GRUB version 1) is: title Kernel Title uppermem 524288 kernel (hdX,Y)/boot/vmlinuz... In some cases, disabling frame buffer drivers such as vesafb can help, as such drivers may attempt to map all or a large part of the installed graphics cards' video memory into the kernel's virtual address space, which rapidly consumes this resource. You can disable the vesafb frame buffer driver by passing these parameters to the kernel: 'video=vesa:off vga=normal'. Some Linux kernels can be configured with alternate address space layouts (e.g. 2.8GB:1.2GB, 2GB:2GB, etc.). This option can be used to avoid exhaustion of the kernel virtual address space without reducing the size of the direct system memory mapping. Some Linux distributors also provide kernels that use separate 4GB address spaces for user processes and the kernel. Such Linux kernels provide sufficient kernel virtual address space on typical systems. Valgrind The NVIDIA OpenGL implementation makes use of self modifying code. To force Valgrind to retranslate this code after a modification you must run using the Valgrind command line option: --smc-check=all Without this option Valgrind may execute incorrect code causing incorrect behavior and reports of the form: ==30313== Invalid write of size 4 MMConfig-based PCI Configuration Space Accesses 2.6 kernels have added support for Memory-Mapped PCI Configuration Space accesses. Unfortunately, there are many problems with this mechanism, and the latest kernel updates are more careful about enabling this support. The NVIDIA driver may be unable to reliably read/write the PCI Configuration Space of NVIDIA devices when the kernel is using the MMCONFIG method to access PCI Configuration Space, specifically when using multiple GPUs and multiple CPUs on 32-bit kernels. This access method can be identified by the presence of the string "PCI: Using MMCONFIG" in the 'dmesg' output on your system. This access method can be disabled via the "pci=nommconf" kernel parameter. HDMI screen blanks unless audio is played The ALSA audio driver in some Linux kernels contains a bug affecting some systems with integrated graphics that causes the display to go blank on some HDMI TVs whenever audio is not being played. This bug occurs when the ALSA audio driver configures the HDMI hardware to send an HDMI audio info frame that contains an invalid checksum. Some TVs blank the video when they receive such invalid audio packets. To ensure proper display, please make sure your Linux kernel contains commit 1f348522844bb1f6e7b10d50b9e8aa89a2511b09. This fix is in Linux 2.6.39-rc3 and later, and may be be back-ported to some older kernels. Driver fails to initialize when MSI interrupts are enabled The Linux NVIDIA driver uses Message Signaled Interrupts (MSI) by default. This provides compatibility and scalability benefits, mainly due to the avoidance of IRQ sharing. Some systems have been seen to have problems supporting MSI, while working fine with virtual wire interrupts. These problems manifest as an inability to start X with the NVIDIA driver, or CUDA initialization failures. The NVIDIA driver will then report an error indicating that the NVIDIA kernel module does not appear to be receiving interrupts generated by the GPU. Problems have also been seen with suspend/resume while MSI is enabled. All known problems have been fixed, but if you observe problems with suspend/resume that you did not see with previous drivers, disabling MSI may help you. NVIDIA is working on a long-term solution to improve the driver's out of the box compatibility with system configurations that do not fully support MSI. MSI interrupts can be disabled via the NVIDIA kernel module parameter "NVreg_EnableMSI=0". This can be set on the command line when loading the module, or more appropriately via your distribution's kernel module configuration files (such as those under /etc/modprobe.d/). Console restore behavior The Linux NVIDIA driver uses the nvidia-modeset module for console restore whenever it can. Currently, the improved console restore mechanism is used on systems that boot with the UEFI Graphics Output Protocol driver, and on systems that use supported VESA linear graphical modes. Note that VGA text, color index, planar, banked, and some linear modes cannot be supported, and will use the older console restore method instead. When the new console restore mechanism is in use and the nvidia-modeset module is initialized (e.g. because an X server is running on a different VT, nvidia-persistenced is running, or the nvidia-drm module is loaded with the modeset=1 parameter), then nvidia-modeset will respond to hot plug events by displaying the console on as many displays as it can. Note that to save power, it may not display the console on all connected displays. Vulkan and device enumeration It is currently not possible to enumerate multiple devices if one of them will be used to present to an X11 swapchain. It is still possible to enumerate multiple devices even if one of them is driving an X screen given that they will be used for Vulkan offscreen rendering or presenting to a display swapchain. For that, make sure that the application cannot open a display connection to an X server by, for example, unsetting the DISPLAY environment variable. Restricting access to GPU performance counters NVIDIA Developer Tools allow developers to debug, profile, and develop software for NVIDIA GPUs. GPU performance counters are integral to these tools. By default, access to the GPU performance counters is restricted to root, and other users with the CAP_SYS_ADMIN capability, for security reasons. If developers require access to the NVIDIA Developer Tools, a system administrator can accept the security risk and allow access to users without the CAP_SYS_ADMIN capability. Wider access to GPU performance counters can be granted by setting the kernel module parameter "NVreg_RestrictProfilingToAdminUsers=0" in the nvidia.ko kernel module. This can be set on the command line when loading the module, or more appropriately via your distribution's kernel module configuration files (such as those under /etc/modprobe.d/). Notebooks If you are using a notebook see the "Known Notebook Issues" in Chapter 16, Configuring a Notebook. Texture seams in Quake 3 engine Many games based on the Quake 3 engine set their textures to use the GL_CLAMP clamping mode when they should be using GL_CLAMP_TO_EDGE. This was an oversight made by the developers because some legacy NVIDIA GPUs treat the two modes as equivalent. The result is seams at the edges of textures in these games. To mitigate this, older versions of the NVIDIA display driver remap GL_CLAMP to GL_CLAMP_TO_EDGE internally to emulate the behavior of the older GPUs, but this workaround has been disabled by default. To re-enable it, uncheck the "Use Conformant Texture Clamping" checkbox in nvidia-settings before starting any affected applications. FSAA When FSAA is enabled (the __GL_FSAA_MODE environment variable is set to a value that enables FSAA and a multisample visual is chosen), the rendering may be corrupted when resizing the window. libGL DSO finalizer and pthreads When a multithreaded OpenGL application exits, it is possible for libGL's DSO finalizer (also known as the destructor, or "_fini") to be called while other threads are executing OpenGL code. The finalizer needs to free resources allocated by libGL. This can cause problems for threads that are still using these resources. Setting the environment variable "__GL_NO_DSO_FINALIZER" to "1" will work around this problem by forcing libGL's finalizer to leave its resources in place. These resources will still be reclaimed by the operating system when the process exits. Note that the finalizer is also executed as part of dlclose(3), so if you have an application that dlopens(3) and dlcloses(3) libGL repeatedly, "__GL_NO_DSO_FINALIZER" will cause libGL to leak resources until the process exits. Using this option can improve stability in some multithreaded applications, including Java3D applications. Thread cancellation Canceling a thread (see pthread_cancel(3)) while it is executing in the OpenGL driver causes undefined behavior. For applications that wish to use thread cancellation, it is recommended that threads disable cancellation using pthread_setcancelstate(3) while executing OpenGL or GLX commands. This section describes problems that will not be fixed. Usually, the source of the problem is beyond the control of NVIDIA. Following is the list of problems: Problems that Will Not Be Fixed NV-CONTROL versions 1.8 and 1.9 Version 1.8 of the NV-CONTROL X Extension introduced target types for setting and querying attributes as well as receiving event notification on targets. Targets are objects like X Screens, GPUs and Quadro Sync devices. Previously, all attributes were described relative to an X Screen. These new bits of information (target type and target id) were packed in a non-compatible way in the protocol stream such that addressing X Screen 1 or higher would generate an X protocol error when mixing NV-CONTROL client and server versions. This packing problem has been fixed in the NV-CONTROL 1.10 protocol, making it possible for the older (1.7 and prior) clients to communicate with NV-CONTROL 1.10 servers. Furthermore, the NV-CONTROL 1.10 client library has been updated to accommodate the target protocol packing bug when communicating with a 1.8 or 1.9 NV-CONTROL server. This means that the NV-CONTROL 1.10 client library should be able to communicate with any version of the NV-CONTROL server. NVIDIA recommends that NV-CONTROL client applications relink with version 1.10 or later of the NV-CONTROL client library (libXNVCtrl.a, in the nvidia-settings-390.129.tar.bz2 tarball). The version of the client library can be determined by checking the NV_CONTROL_MAJOR and NV_CONTROL_MINOR definitions in the accompanying nv_control.h. The only web released NVIDIA Linux driver that is affected by this problem (i.e., the only driver to use either version 1.8 or 1.9 of the NV-CONTROL X extension) is 1.0-8756. CPU throttling reducing memory bandwidth on IGP systems For some models of CPU, the CPU throttling technology may affect not only CPU core frequency, but also memory frequency/bandwidth. On systems using integrated graphics, any reduction in memory bandwidth will affect the GPU as well as the CPU. This can negatively affect applications that use significant memory bandwidth, such as video decoding using VDPAU, or certain OpenGL operations. This may cause such applications to run with lower performance than desired. To work around this problem, NVIDIA recommends configuring your CPU throttling implementation to avoid reducing memory bandwidth. This may be as simple as setting a certain minimum frequency for the CPU. Depending on your operating system and/or distribution, this may be as simple as writing to a configuration file in the /sys or /proc filesystems, or other system configuration file. Please read, or search the Internet for, documentation regarding CPU throttling on your operating system. VDPAU initialization failures on supported GPUs If VDPAU gives the VDP_STATUS_NO_IMPLEMENTATION error message on a GPU which was labeled or specified as supporting PureVideo or PureVideo HD, one possible reason is a hardware defect. After ruling out any other software problems, NVIDIA recommends returning the GPU to the manufacturer for a replacement. Some applications, such as Quake 3, crash after querying the OpenGL extension string Some applications have bugs that are triggered when the extension string is longer than a certain size. As more features are added to the driver, the length of this string increases and can trigger these sorts of bugs. You can limit the extensions listed in the OpenGL extension string to the ones that appeared in a particular version of the driver by setting the __GL_ExtensionStringVersion environment variable to a particular version number. For example, __GL_ExtensionStringVersion=17700 quake3 will run Quake 3 with the extension string that appeared in the 177.* driver series. Limiting the size of the extension string can work around this sort of application bug. XVideo and the Composite X extension XVideo will not work correctly when Composite is enabled unless using X.Org 7.1 or later. See Chapter 22, Using the X Composite Extension. GLX visuals in Xinerama X servers prior to version 1.5.0 have a limitation in the number of visuals that can be available when Xinerama is enabled. Specifically, visuals with ID values over 255 will cause the server to corrupt memory, leading to incorrect behavior or crashes. In some configurations where many GLX features are enabled at once, the number of GLX visuals will exceed this limit. To avoid a crash, the NVIDIA X driver will discard visuals above the limit. To see which visuals are being discarded, run the X server with the -logverbose 6 option and then check the X server log file. Please see “How do I interpret X server version numbers?” when determining whether your X server is new enough to contain this fix. Some X servers have trouble with multiple GPUs Some versions of the X.Org X server starting with 1.5.0 have a bug that causes X to fail with an error similar to the following when there is more than one GPU in the computer: (!!) More than one possible primary device found (II) Primary Device is: (EE) No devices detected. Fatal server error: no screens found This bug was fixed in the X.Org X Server 1.7 release. You can work around this problem by specifying the bus ID of the device you wish to use. For more details, please search the xorg.conf manual page for "BusID". You can configure the X server with an X screen on each NVIDIA GPU by running: nvidia-xconfig --enable-all-gpus Please see Bugzilla bug #18321 for more details on this X server problem. In addition, please see “How do I interpret X server version numbers?” when determining whether your X server is new enough to contain this fix. gnome-shell doesn't update until a window is moved Versions of libcogl prior to 1.10.x have a bug which causes glBlitFramebuffer() calls used to update the window to be clipped by a 0x0 scissor (see GNOME bug #690451 for more details). To work around this bug, the scissor test can be disabled by setting the __GL_ConformantBlitFramebufferScissor environment variable to 0. Note this version of the NVIDIA driver comes with an application profile which automatically disables this test if libcogl is detected in the process. Some X servers ignore the RandR transform filter during a modeset request The RandR layer of the X server attempts to ignore redundant RRSetCrtcConfig requests. If the only property changed by an RRSetCrtcConfig request is the transform filter, some X servers will ignore the request as redundant. This can be worked around by also changing other properties, such as the mode, transformation matrix, etc.
{ "warc_headers": { "warc-record-id": "<urn:uuid:dbe25798-1c06-4fc1-8884-4e596ba78285>", "warc-date": "2021-11-27T05:46:53Z", "content-type": "text/plain", "content-length": 21855, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:2b2cc3c3-d0ff-4b91-b265-af89d6c3cd2c>", "warc-target-uri": "https://http.download.nvidia.com/XFree86/Linux-32bit-ARM/390.129/README/knownissues.html", "warc-block-digest": "sha1:7Z4OF233KAPTUF5GEANQPCN3NCU2WM4W" }, "identification": { "label": "en", "prob": 0.7263133525848389 }, "annotations": [ "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9378969073295593 }, { "label": "en", "prob": 0.9332324862480164 }, { "label": "en", "prob": 0.866618812084198 }, { "label": "en", "prob": 0.9393933415412903 }, { "label": "en", "prob": 0.9171949028968811 }, null, { "label": "en", "prob": 0.9326643943786621 }, { "label": "en", "prob": 0.870246171951294 }, { "label": "en", "prob": 0.9258379340171814 }, { "label": "en", "prob": 0.9196791648864746 }, null, { "label": "en", "prob": 0.969854474067688 }, { "label": "en", "prob": 0.9230283498764038 }, null, { "label": "en", "prob": 0.8856601119041443 }, { "label": "en", "prob": 0.9469143748283386 }, { "label": "en", "prob": 0.8664010763168335 }, { "label": "en", "prob": 0.9861478209495544 }, null, { "label": "en", "prob": 0.9144300818443298 }, { "label": "en", "prob": 0.9162030816078186 }, null, null, null, null, null, { "label": "en", "prob": 0.8907132148742676 }, { "label": "en", "prob": 0.9671180844306946 }, { "label": "en", "prob": 0.8750414252281189 }, null, { "label": "en", "prob": 0.8427227139472961 }, null, null, null, null, { "label": "en", "prob": 0.9125171899795532 }, { "label": "en", "prob": 0.8080731630325317 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9274894595146179 }, null, null, { "label": "en", "prob": 0.9655216932296753 }, { "label": "en", "prob": 0.8777744174003601 }, { "label": "en", "prob": 0.8202541470527649 }, null, { "label": "en", "prob": 0.8675949573516846 }, { "label": "en", "prob": 0.9352582693099976 }, { "label": "en", "prob": 0.9848648905754089 }, { "label": "en", "prob": 0.9271490573883057 }, null, null, null, { "label": "en", "prob": 0.8541297316551208 }, null, { "label": "en", "prob": 0.9026690125465393 }, { "label": "en", "prob": 0.8818944692611694 }, { "label": "en", "prob": 0.8441904783248901 }, null, null, { "label": "en", "prob": 0.8089132308959961 }, { "label": "en", "prob": 0.8451608419418335 }, { "label": "en", "prob": 0.9242491126060486 }, { "label": "en", "prob": 0.9040123224258423 }, null, null, { "label": "en", "prob": 0.9438177347183228 }, null, { "label": "en", "prob": 0.8794811367988586 }, { "label": "en", "prob": 0.9073005318641663 }, null, null, { "label": "en", "prob": 0.9509748816490173 }, { "label": "en", "prob": 0.8741728067398071 }, null, { "label": "en", "prob": 0.9232388138771057 }, { "label": "en", "prob": 0.8739750385284424 }, { "label": "en", "prob": 0.9377323389053345 }, { "label": "en", "prob": 0.9018273949623108 }, { "label": "en", "prob": 0.851809561252594 }, null, { "label": "en", "prob": 0.8062913417816162 }, { "label": "en", "prob": 0.9078710079193115 }, { "label": "en", "prob": 0.953481912612915 }, { "label": "en", "prob": 0.8560689091682434 }, null, null, { "label": "en", "prob": 0.9250634908676147 }, null, null, null, { "label": "en", "prob": 0.8091839551925659 }, null, { "label": "en", "prob": 0.9207720160484314 }, { "label": "en", "prob": 0.9494237899780273 }, null, { "label": "en", "prob": 0.8849708437919617 }, { "label": "en", "prob": 0.870579183101654 }, null, null, null, { "label": "en", "prob": 0.9515600800514221 }, { "label": "en", "prob": 0.9567846655845642 }, { "label": "en", "prob": 0.867128849029541 }, null, null, { "label": "en", "prob": 0.8014185428619385 }, { "label": "en", "prob": 0.9873982071876526 }, { "label": "en", "prob": 0.8592556118965149 }, { "label": "en", "prob": 0.8505640625953674 }, { "label": "en", "prob": 0.9001373052597046 } ] }
830.7
21,847
https://http.download.nvidia.com/XFree86/Linux-32bit-ARM/390.129/README/knownissues.html
http.download.nvidia.com
0
[]
null
false
[]
true
2,608,929
The database of tourist agencies is informative and the Croatian National Tourist Board is not responsible for the accuracy of the information. If you find any irregularities or wish to add your own agency to our database then please contact us by email: web@htz.hr. The database of tourist agencies is informative and the Croatian National Tourist Board is not responsible for the accuracy of the information. If you find any irregularities or wish to add your own agency to our database then please contact us by email: web@htz.hr.
{ "warc_headers": { "warc-record-id": "<urn:uuid:cbc6c1db-759d-4c92-8c2a-1e201bf96d59>", "warc-date": "2021-11-27T06:14:53Z", "content-type": "text/plain", "content-length": 533, "warc-type": "conversion", "warc-identified-content-language": "eng,hrv", "warc-refers-to": "<urn:uuid:ef5fe17f-cb2e-41c2-bc0d-a5858881b34e>", "warc-target-uri": "https://htz1.croatia.hr/en-GB/travel-info/travel-agencies?f%5B0%5D=city%3A461&f%5B1%5D=city%3A941&f%5B2%5D=tourist_category%3A898&f%5B3%5D=tourist_product%3A909&f%5B4%5D=tourist_product%3A912&f%5B5%5D=tourist_product%3A919", "warc-block-digest": "sha1:PLATAE4FUPXEDGDKFOTA2X2QU7YM4JT4" }, "identification": { "label": "en", "prob": 0.8277744054794312 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8277744054794312 }, { "label": "en", "prob": 0.8277744054794312 } ] }
740.9
533
https://htz1.croatia.hr/en-GB/travel-info/travel-agencies?f%5B0%5D=city%3A461&f%5B1%5D=city%3A941&f%5B2%5D=tourist_category%3A898&f%5B3%5D=tourist_product%3A909&f%5B4%5D=tourist_product%3A912&f%5B5%5D=tourist_product%3A919
htz1.croatia.hr
0
[]
null
false
[]
true
2,608,930
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
{ "warc_headers": { "warc-record-id": "<urn:uuid:e33f0c8a-b3a5-4291-a224-37ce741c3cb0>", "warc-date": "2021-11-27T06:30:38Z", "content-type": "text/plain", "content-length": 118, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:cad4cce8-5323-4ab3-8e68-e7755ea441a1>", "warc-target-uri": "https://hub.projecttopics.org/question/1279-factor-16w3-u4w3?show=votes", "warc-block-digest": "sha1:ZUI6BS553I2OLJ7T3W5QFVX3WWJETMBY" }, "identification": { "label": "en", "prob": 0.8996701240539551 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8996701240539551 } ] }
973.7
118
https://hub.projecttopics.org/question/1279-factor-16w3-u4w3?show=votes
hub.projecttopics.org
1.033898
[ [ 564955171057, 564955171179 ] ]
null
true
[ 431992402 ]
false
2,608,931
If you log in with Twitter or Facebook and are not a user on this website, you will be registered and you agree to our Terms & Conditions. To find out how we collect and use personal data please read our privacy and cookies policy. Login with Twitter Login with Facebook or Your username or password is incorrect. Please try again. Don't have an account? Sign up here. Sign in with your existing Hubbub account. Don't have an account? Sign up here. Sign In Notification Please check your email! Forgot your password? If you log in with Twitter or Facebook and are not a user on this website, you will be registered and you agree to our Terms & Conditions. To find out how we collect and use personal data please read our privacy and cookies policy. Password Reset Enter the email address you registered with us below. If we find an account registered with this address, you'll receive an email message with your username and a link to reset your password within 3 minutes. Reset Password Go back? Notification Please check your email If you still need help, please contact support Check your email Click the link in the email we just sent you to verify your account and complete the process. Got it! Something went wrong That didn't work for some reason . Please try again or get in touch so we can help you out. Got it Kaitlyn Savery: Student Missions at Southern If the wind goes where you send it so will I $4,490 pledged of $4,320 18 users 0 left Completed By Kaitlyn Savery Collegedale, TN Get in touch This project received pledges on Tue 10 Jul 2018 Project Updates Supporters Comments My Plan This coming fall, myself and many other students at Southern Adventist University have the opportunity to put aside the classes, work and other busyness of everyday life to serve as the hands and feet of Jesus for 10 months in various locations. Personally, I plan to serve in Boliva, South America at Familia Feliz, an orphanage there. I will have a variety of job titles including house parent, teacher, and cook whatever they need that's what I plan to do. Every year over 60 student missionaries are sent out from Southern. As a group, we are collectively raising the funds to cover many of our needs including airfare, visas, insurance, training, and care packages. I have personally agreed to be responsible for raising $5,100 towards those needs. I can't do it alone however, anything you are willing or able to give towards the 2018-19 missionaries is greatly appreciated by not just myself but my fellow missionaries and those we plan to serve. Who aM i? Kaitlyn Savery. Lover of God and His people with a big heart for service and I have been blessed with the opportunity to serve in many capacities. These include short-term mission trips to various locations and being a camp counselor as my two favorite thus far. Just like any college student, I like to hang out with my friends, especially outdoors and seek various adventures whenever I can. But of all the adventures I have gone on, I am looking most forward to this adventure of a lifetime as a student missionary most. Photo taken while on a mission trip is Lesotho, Africa. One of my cabins while working at Camp. My Story Ever since I was in High School, I have loved mission work and took the opportunity to go on every short-term mission trip I could. Knowing I would attend an Adventist university, I was sure that being a long-term student missionary (SM) was in my future. MY plan was to finish my first three years at Southern and go out as an SM after receiving my associate's degree in nursing following that third year. I eventually realized God and I were not on the same page when it came to plans. As I went through my freshmen year, I saw just how God was trying to show me that I am not in control and that I needed to rely on Him more and more. As second semester rolled around, I began to see just how shaky my plans were as I began questioning my major and just what I should do coming into my sophomore year. For a couple months, it was a huge weight on my shoulders and constantly in the back of my head. I dabbled in many different options on how I could spend the upcoming school year but nothing really felt right. However, one day I started thinking, "What if I just threw out the plans?" and the more I thought about the possibility of going out to serve next year, the more weight lifted off my shoulders. But I decided to leave it in God's hand because I had enough of trying to make my own plans. Since then, that is exactly what I have chosen to do. Every potential obstacle that I have worried about or been warned about, I just keep reminding myself that this is God's plan and if that's what He wants for me than that is what will be and if it is not than that door will close. That brings us to the present, I am ready to go to a new country, culture, language, and people. Most importantly ready to go and serve as the hands and feet of Jesus and allow my actions to speak louder than my words. I am telling God "Here am I; Send me" (Isaiah 6:8) but I haven't made it this far in my life without support and this is no different. Regardless of whether it is through your thoughts and prayers or a generous monetary donation of any amount, your supports means more to me than you know. Contact me! I use a couple social media outlets and would love to hear from any of you! Instagram : @kaitlyn.savery Facebook: Kaitlyn Marie Savery Email: ksavery@southern.edu I plan to start a blog or some sort of outlet to keep everyone updated while I am gone, and just when I determine what that will be I will let you know! A final recap! I am planning to serve as Student Missionary next year! This isn't possible without your support whether prayerfully and/or financially! Even if you aren't able to donate, you can help me to get the word out about my trip by telling your friends/families, and even posting this page to your personal social media pages! Most importantly, thank you! Southern's Giving policy *All gifts are tax deductible and nonrefundable. Southern Adventist University accepts contributions, whether by gift, device, or bequest, consistent with its general tax-exempt purposes. These contributions may be given directly to any official university organization or activity. However, they may not be directed for any individual employee or student use. Contributions made for an intended purpose, such as a mission or service trip, will be used as specified. However, all contributions shall become the sole property of Southern Adventist University and are non-refundable under all circumstances. As such, the university reserves the right, in the event that the intended purpose is delayed or cancelled, to use the contributions as it may deem best in its sole and complete discretion so as to ensure that the funds will be used consistent with the tax-exempt purposes of the university. Completed Share Choose reward Pledge $1 or more Select this reward if you just want to donate to the project without receiving a reward. 5 claimed Pledge $10 or more 0 claimed Pledge $20 or more 0 claimed Pledge $50 or more 4 claimed Pledge $100 or more 4 claimed Pledge $250 or more 1 claimed Pledge $500 or more 2 claimed Pledge $1000 or more 2 claimed ×Close Get in touch Your message has been sent. Need help? FAQs Contact us About us Academy Legalese Terms and conditions Privacy and cookies Projects Create a project Explore all projects More from Hubbub Fundraising Tools The Hubbub Blog Parts of this site require JavaScript. Follow these instructions on how to enable JavaScript in your web browser.
{ "warc_headers": { "warc-record-id": "<urn:uuid:592b120e-b157-4939-b9fd-02d3486fd9b5>", "warc-date": "2021-11-27T06:07:13Z", "content-type": "text/plain", "content-length": 7614, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:5a23d0ff-e29e-4713-a581-83b492424afb>", "warc-target-uri": "https://hubbub.org/p/kaitlynsavery/", "warc-block-digest": "sha1:BIU5JY7GAEELUUMCCTTYAASHULLR52ZR" }, "identification": { "label": "en", "prob": 0.8656207919120789 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9170860052108765 }, null, null, null, { "label": "en", "prob": 0.9628313779830933 }, { "label": "en", "prob": 0.9430217146873474 }, null, null, null, { "label": "en", "prob": 0.881507933139801 }, { "label": "en", "prob": 0.9170860052108765 }, null, { "label": "en", "prob": 0.9243841767311096 }, { "label": "en", "prob": 0.9187954664230347 }, null, { "label": "en", "prob": 0.9811795949935913 }, null, { "label": "en", "prob": 0.8401314616203308 }, { "label": "en", "prob": 0.8910031914710999 }, null, { "label": "en", "prob": 0.8971074223518372 }, null, { "label": "en", "prob": 0.9890890121459961 }, { "label": "en", "prob": 0.9838151931762695 }, null, { "label": "en", "prob": 0.8718520998954773 }, null, { "label": "en", "prob": 0.8978771567344666 }, { "label": "en", "prob": 0.923245370388031 }, null, null, null, null, { "label": "en", "prob": 0.9813827276229858 }, { "label": "en", "prob": 0.8709778785705566 }, { "label": "en", "prob": 0.8335144519805908 }, { "label": "en", "prob": 0.8231087923049927 }, { "label": "en", "prob": 0.9840825200080872 }, null, null, { "label": "en", "prob": 0.9237060546875 }, { "label": "en", "prob": 0.809270441532135 }, null, { "label": "en", "prob": 0.968276858329773 }, { "label": "en", "prob": 0.9793154001235962 }, null, { "label": "en", "prob": 0.9710453748703003 }, { "label": "en", "prob": 0.8830103278160095 }, { "label": "en", "prob": 0.9326412677764893 }, null, { "label": "en", "prob": 0.9964047074317932 }, { "label": "en", "prob": 0.9905561804771423 }, { "label": "en", "prob": 0.9708365797996521 }, { "label": "en", "prob": 0.8928947448730469 }, { "label": "en", "prob": 0.9704856872558594 }, null, null, null, { "label": "en", "prob": 0.9420838952064514 }, null, { "label": "en", "prob": 0.9887776374816895 }, { "label": "en", "prob": 0.9201776385307312 }, { "label": "en", "prob": 0.9389272928237915 }, { "label": "en", "prob": 0.8838415741920471 }, { "label": "en", "prob": 0.8977140188217163 }, { "label": "en", "prob": 0.9246629476547241 }, { "label": "en", "prob": 0.9430670142173767 }, { "label": "en", "prob": 0.9813827276229858 }, null, null, null, { "label": "en", "prob": 0.9388187527656555 }, { "label": "en", "prob": 0.904222309589386 }, null, { "label": "en", "prob": 0.9468953013420105 }, { "label": "en", "prob": 0.8097753524780273 }, { "label": "en", "prob": 0.9468953013420105 }, null, { "label": "en", "prob": 0.9080029726028442 }, null, { "label": "en", "prob": 0.9080029726028442 }, null, { "label": "en", "prob": 0.9239169955253601 }, null, { "label": "en", "prob": 0.9122288227081299 }, null, { "label": "en", "prob": 0.9122288227081299 }, null, { "label": "en", "prob": 0.8231087923049927 }, { "label": "en", "prob": 0.9709560871124268 }, { "label": "en", "prob": 0.8771818280220032 }, null, null, null, { "label": "en", "prob": 0.868518054485321 }, null, { "label": "en", "prob": 0.8933761715888977 }, { "label": "en", "prob": 0.8281458616256714 }, null, null, null, { "label": "en", "prob": 0.9318415522575378 }, null, null, null ] }
638.1
7,613
https://hubbub.org/p/kaitlynsavery/
hubbub.org
0
[]
null
false
[]
true
2,608,932
This Workshop aims at providing an opportunity for young scientists, especially from least developed countries in endemic areas, for advanced training on the related topics by leading scientists in the field, as well as to establish collaborations with fellow researchers. Topics: Overview of Leishmaniasis and its epidemiology, Computer based analysis of the Leishmania Genome, The Sandfly vector and transmission, Virulence factors involved in infection. Recent advances in therapy and vaccine development ...Read More Science Health & Fitness This Workshop aims at providing an opportunity for young scientists, especially from least developed countries in endemic areas, for advanced training on the related topics by leading scientists in the field, as well as to establish collaborations with fellow researchers. Topics: Overview of Leishmaniasis and its epidemiology, Computer based analysis of the Leishmania Genome, The Sandfly vector and transmission, Virulence factors involved in infection. Recent advances in therapy and vaccine development
{ "warc_headers": { "warc-record-id": "<urn:uuid:78864404-cc87-4bd6-a300-ec731ea70f4e>", "warc-date": "2021-11-27T06:20:29Z", "content-type": "text/plain", "content-length": 1053, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:b7866da6-7ee8-47cc-a18a-bf7bac66f59d>", "warc-target-uri": "https://hubhopper.com/podcast/molecular-biology-of-leishmania-2018/109383", "warc-block-digest": "sha1:IGQBVTCNDYPL36DLL34PHD3UVCD6TQBU" }, "identification": { "label": "en", "prob": 0.9359022378921509 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.954888641834259 }, null, null, { "label": "en", "prob": 0.8440269827842712 }, { "label": "en", "prob": 0.954888641834259 } ] }
243.2
1,053
https://hubhopper.com/podcast/molecular-biology-of-leishmania-2018/109383
hubhopper.com
0
[]
null
false
[]
false
2,608,933
"With Zip ShiftBook’s mobile app I can check shift notes to see if anything out of the ordinary happened before I leave for work. I know what to expect, and it saves me a lot of surprises when I get there!" — John Evard Fresh Griller Fullerton, CA "We never did an excellent job of tracking employee performance and customer experience before Zip ShiftBook. Now we can find all the information we need to address any issues that occur during shifts." — David Markwell Famous Dave's' Costa Mesa, CA "I used to use a Red Book to keep track of things, but with new technology, I knew there had to be something better. Zip ShiftBook has helped us address employee performance issues and customer concerns." — Tony Yeller Mooyah Dallas, TX View more happy customers Digital logbook software for managers to record what happens during every shift. Try it free. Start My FREE Trial Business Logbook Software The efficient way to keep track of what happens during a shift. Monitor employee conduct Every worker is the face of the company The way your employees present themselves and interact with customers has a big impact on the customer experience. You need to know who your best employees are and which ones may be costing you future business. Get employee shift information on-the-go Your managers can use the mobile apps to check how shifts are going before they get to work. That way they always know what to expect when they get there. And you can also record commendations and disciplinary actions in the Employee Journal. Because staff who go above and beyond deserve praise and recognition, and those who fail to meet your expectations need to know you’re taking note. Record and access shift notes Document your customers experiecnce Let's say you offer a great product or service. What does that matter if your customers don’t walk away feeling like they had a great customer experience? That’s why it is important to keep notes whenever something noteworthy happens, whether it was outstanding service that garnered praise from the customer, a complaint about their poor treatment, or an incident that was outside your control like noise from a construction site across the street. All entries in the Log and Employee Journal include the name of the user who made the entry along with a date and time stamp creating transparency for your managers and employees. View daily shift detail reports We know that leveraging the power of technology will make your business run more efficiently. But we also know sometimes you need things on paper. The Daily Detail Report provides a summary of the day’s Log and Employee Journal entries. You can generate a PDF for a printable version of the report. You can also generate a PDF of all the month’s events. Filter by event type and location and hit print for an Events Report you can hang on the wall. Manage the customer experience Document your customer’s experience Sure, you could ask each guest to fill out a satisfaction survey. But let’s be honest, most of them won’t. The good news is an experienced manager can tell if guests are happy or dissatisfied simply by observation. They just need a good way to record what they see. Keep customers coming back There’s a lot that goes on during a busy shift. Providing excellent service is critical to the success of your business, so you need to keep track of your customer experiences, both good and bad. To keep those regulars coming back, you have to make sure that they consistently have a positive experience when they are your guest. Ask any coach or trainer what the basis for developing consistency in your performance is, and they’ll probably say it starts by getting feedback. The Zip ShiftBook digital logbook app puts the access to write any shift note, good or bad, in your manager's pocket. Mobile Business Logbook Apps - Easy to Use! Access any business contact, view employee performance history, and record new shift notes in an instant. Monitor your store wherever you go You worked hard to build your business, and you want to know what’s going on when you aren’t there. Our mobile apps allow you to read all your managers’ shift notes on your mobile device anytime, anywhere. View up-to-the-minute information on what’s happening in each store. Just select a site to see what happened during each shift. Make sure everyone is on the same page What happens during other shifts directly affects how you run your shift. Zip ShiftBook ensures there are no unpleasant surprises at shift change. Your managers can use the mobile apps to check shift log to see how things are going before they get to work. That way they always know what to expect when they get there. Keep important shift information in one place Managers get a Log, Employee Journal, Address Book and Event calendar all in one app. Information gets to where it needs to go when everyone uses the one logbook system. Zip ShiftBook categorizes each log entry organized and makes it easy to search and find the information managers are looking for. Digital logbook software for managers to record what happens during every shift. Try it free. Start My FREE Trial Business Log book Software Integrations Everything works better, when everything works together Digital logbook software for managers to record what happens during every shift. Try it free. Start My FREE Trial Zip ShiftBook Pricing Keep track of shifts in real-time on your phone. Standard $15 per location monthly Features ✓ Business Logbook App ✓ Digital Managers Log ✓ Employee Journal ✓ Cloud Library ✓ Address Book ✓ Events Calendar ✓ Customer Experience Log ✓ Communication Platform ✓ Multi-location Support ✓ iPhone and Android Apps Support ✓ Free support included David Markwell Famous Dave's Costa Mesa, CA "Our customer's trust is what keeps us in business. They expect fresh tasting food with no threat of ill-born diseases. Zip HACCP keeps us compliant with HACCP and FDA regulations through its integrated temperature solutions, food safety assurance, and end-to-end task reporting. We also use Zip Inventory to save time on inventory counts and have much-needed predictability to our ordering process. The Hubworks business management apps are perfect for our restaurants." John Evard Fresh Griller Fullerton, CA "Our managers needed help with employee scheduling. We were using Excel and emailing the schedule out to our staff. But, when we tried Zip Schedules we realized how many hours we had been wasting with the timely task of handling shift changes and other employee requests. Now we schedule employees faster, with more accuracy and more flexibility. The free mobile apps have made our whole team feel more appreciated and more engaged. Our customers are more satisfied than ever before." But wait, there's more... John Evard Fresh Griller Fullerton, CA "With Zip ShiftBook’s mobile app I can check if anything out of the ordinary happened before I leave for work. I know what to expect and it saves me a lot of surprises when I get there!" David Markwell Famous Dave's Costa Mesa, CA "We used to have stacks of files and log books, and could never keep track of our paperwork. Zip ShiftBook keeps everything organized. It never takes me more than a minute to find what I’m looking for." SCHEDULE A DEMO Business Logbook Software | Zip Shiftbook Digital logbook software for managers to record what happens during every shift. Try it free. Start My FREE Trial Attend a webinar Our scheduled webinars are a great way to learn more. Sign Up Your Shopping Cart Continue Shopping Proceed to checkout Shipping and taxes are added at checkout. Your cart is currently empty. Continue Shopping Resources Blog Webinars Free Manager Log Template Industries Bars Convenience Stores Hospitals Hotels Liquor Stores Non Profits Parks Restaurants Retailers Warehouses Top Articles Why Every Business Should Maintain a Log Book Why Every Business Should Have Electronic Recordkeeping 4 Reasons to Keep Your Logbook Online Improving Service With Digital Apps 7 Good Habits That Make Your Life Easier Mobile Apps Apple iPhone App Google Android App More Resellers Developers / API Contact Us © Hubworks · Apps, Software and Solutions | Back Office | Inventory | Employee Scheduling | Point of Sale 3191 Red Hill Ave. Costa Mesa CA 92626 · Terms of Use · Privacy Policy This website uses cookies. Learn more.
{ "warc_headers": { "warc-record-id": "<urn:uuid:4fab6f3b-faf2-437d-8988-e0ecc42a6429>", "warc-date": "2021-11-27T05:55:37Z", "content-type": "text/plain", "content-length": 8420, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:e1d0f7d6-888a-4c71-ba60-647d3a711628>", "warc-target-uri": "https://hubworks.com/zip-shiftbook.html", "warc-block-digest": "sha1:GRHZYMTE7E35H24TDSOB7YDI6GFLGVKN" }, "identification": { "label": "en", "prob": 0.7480430603027344 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9472644329071045 }, null, null, null, { "label": "en", "prob": 0.961462676525116 }, null, null, null, { "label": "en", "prob": 0.9856441617012024 }, null, { "label": "en", "prob": 0.9308403730392456 }, null, { "label": "en", "prob": 0.834990382194519 }, { "label": "en", "prob": 0.9699127078056335 }, null, null, { "label": "en", "prob": 0.9804898500442505 }, { "label": "en", "prob": 0.953575849533081 }, { "label": "en", "prob": 0.9683192372322083 }, { "label": "en", "prob": 0.9736765027046204 }, null, { "label": "en", "prob": 0.955685019493103 }, null, null, { "label": "en", "prob": 0.9725252389907837 }, null, { "label": "en", "prob": 0.9147003293037415 }, { "label": "en", "prob": 0.8861035704612732 }, null, { "label": "en", "prob": 0.9561104774475098 }, null, { "label": "en", "prob": 0.9577829837799072 }, null, { "label": "en", "prob": 0.8819593787193298 }, null, { "label": "en", "prob": 0.949124276638031 }, { "label": "en", "prob": 0.9281219840049744 }, { "label": "en", "prob": 0.9713570475578308 }, { "label": "en", "prob": 0.9417414665222168 }, null, { "label": "en", "prob": 0.9662647247314453 }, null, { "label": "en", "prob": 0.8366320133209229 }, { "label": "en", "prob": 0.9080749154090881 }, { "label": "en", "prob": 0.914824903011322 }, { "label": "en", "prob": 0.9699127078056335 }, null, null, null, { "label": "en", "prob": 0.9699127078056335 }, null, null, { "label": "en", "prob": 0.9632901549339294 }, null, null, null, { "label": "en", "prob": 0.8125937581062317 }, null, null, null, { "label": "en", "prob": 0.868350625038147 }, { "label": "en", "prob": 0.8454256057739258 }, null, null, { "label": "en", "prob": 0.9368770122528076 }, null, { "label": "en", "prob": 0.8911524415016174 }, { "label": "en", "prob": 0.9970411062240601 }, null, null, null, { "label": "en", "prob": 0.9553073048591614 }, null, null, null, { "label": "en", "prob": 0.9748340249061584 }, { "label": "en", "prob": 0.9587724208831787 }, null, null, null, { "label": "en", "prob": 0.9511538147926331 }, null, null, null, { "label": "en", "prob": 0.9590458869934082 }, null, null, { "label": "en", "prob": 0.9699127078056335 }, null, null, { "label": "en", "prob": 0.9400743842124939 }, null, null, null, null, { "label": "en", "prob": 0.9897520542144775 }, { "label": "en", "prob": 0.985523521900177 }, null, null, null, null, null, null, null, null, null, null, null, { "label": "it", "prob": 0.8308950662612915 }, null, null, null, { "label": "en", "prob": 0.8672085404396057 }, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8389636278152466 }, null ] }
986
8,354
https://hubworks.com/zip-shiftbook.html
hubworks.com
0
[]
null
false
[]
true
2,608,934
Mary died peacefully surrounded by her family at Bridgepoint Health on August 16th at the age of 92. Mary is survived by her 4 children, Stephen Corelli, Catherine D’Agostino, (Tony), Adam Corelli, Gillian Hubbard (Steve), grandchildren, Gillian D’Agostino, Vincent D’Agostino and Charlotte Corelli. Survived by her sister Barbara MacAndrew and many nieces and nephews. Mary was born in Mahone Bay Nova Scotia on October 23rd, 1928. She went on to study art at Mount Allison University, The Montreal Museum School, Chelsea and St. Martins in London England. She worked as a professional illustrator, painter and writer. She raised four children as a single mother. For decades Mary was a fulltime faculty member at the Ontario College of Art. She is a charter member of the Arts and Letters Club and The Woman’s Art Association of Canada. Mary painted throughout her life and exhibited her work on numerous occasions. Mary is renowned for her impish sense of humor and her love of all creatures great and small. She was an avid reader and an author of a book of selective poetry that was published. Mary had an ability to make people feel special by her epic ode writing ability, the highlight of many occasions for so many of us. Mary artistic talents were vast and reached beyond the paint brush in hand. From knitting Irish sweaters, gardening and re finishing furniture, she never had idol hands! A special thanks to Dr. Ruth Hussman, Izzy and Rhona for their compassion and expert care as well as the team at Bridgepoint. A celebration of life for Mary will take place at a later date. In lieu of flowers please send donations to the The Arts and Letters Club of Toronto Foundation, 14 Elm St. 2nd floor, Toronto, M5G 1G7, tel: (416) 597-0223. Condolences may be forwarded through www.humphreymiles.com.
{ "warc_headers": { "warc-record-id": "<urn:uuid:f2a33721-ac52-400c-998b-7191551c6cb3>", "warc-date": "2021-11-27T05:53:58Z", "content-type": "text/plain", "content-length": 1816, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:a2366265-51e8-49cc-903d-7e428d8049f6>", "warc-target-uri": "https://humphreymiles.com/tribute/details/6345/Mary-Corelli/obituary.html", "warc-block-digest": "sha1:BE2HTNO4BJU6ENR674TKHUNBWLAQZHUJ" }, "identification": { "label": "en", "prob": 0.9677777290344238 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9527108073234558 }, { "label": "en", "prob": 0.9918161630630493 }, { "label": "en", "prob": 0.9905037879943848 }, { "label": "en", "prob": 0.9223211407661438 } ] }
399.6
1,808
https://humphreymiles.com/tribute/details/6345/Mary-Corelli/obituary.html
humphreymiles.com
0
[]
null
false
[]
false
2,608,935
3 Lessons I've Learned From An Influential Musician's Charity That Can Apply To Everyone In The Business World - hurlingBlog Search for: hurlingBlog Celebrities Lifestyle Beauty and Fashion TV and Movies World News Home » Celebrities » 3 Lessons I've Learned From An Influential Musician's Charity That Can Apply To Everyone In The Business World 3 Lessons I've Learned From An Influential Musician's Charity That Can Apply To Everyone In The Business World Posted on 20/08/2021 Opinions expressed are solely those of the author and do not reflect the views of Rolling Stone editors or publishers. In 1989, Aerosmith released their influential song, “Janie’s Got a Gun,” which focused on child abuse. Years later, Aerosmith frontman Steven Tyler worked alongside Youth Villages and started a charity, Janie’s Fund, to aid girls and young women who’ve been victims of neglect and abuse. The fund has generated awareness about child abuse and has continued to fundraise even during the pandemic. Recommended: Corrie’s Faye Brookes in row with neighbours who accuse her of animal cruelty as she leaves dogs on balcony home alone Astonishing moment randy racehorse tries to mount male rival in parade ring – before getting kicked in privates de Young Museum to Honor the Great Judy Chicago in a New Retrospective Exhibition I’m a long-time Aerosmith fan, and I had no idea that Janie’s Fund existed until a few months ago. Since then, I’ve donated some of my company’s T-shirt products to Janie’s Fund for its fundraising efforts, and have learned a few lessons about philanthropy that I think other business leaders can benefit from as well. Related Stories Christina Aguilera, Caroline Polachek to Headline LadyLand Festival Sturgill Simpson Goes Wild West on 'The Ballad of Dood and Juanita' Related Stories 'MTV Unplugged': The 15 Best Episodes 50 Greatest Movie Superheroes 1. Find An Inroad Into What Matters Steven Tyler’s art has influenced who he’s become in the world, and how he’s helped others. Spurred by the song his band released in 1989, he decided to take action in a formal way. Similarly, as business leaders, we also have inroads into influencing important causes. Own an art supply store? That could be an inroad into providing children from low-income households with school supplies. Own a staffing firm? That could be an inroad into helping some of the most financially disadvantaged people in your community get jobs. As business leaders, we shouldn’t sit still and do nothing. Instead, we should recognize that not everything we do should be about generating revenue, and find a way to help a cause, be it hunger, child abuse, the ongoing pandemic or something else the world is grappling with. The Rolling Stone Culture Council is an invitation-only community for Influencers, Innovators and Creatives. Do I qualify? 2. Lean Into Your Community To make Janie’s Fund a reality, Steven Tyler partnered with Youth Villages, a nonprofit organization. He recognized that he needed additional help and expertise for Janie’s Fund to be a success. In fact, it’s the norm for people in the music and art worlds to ask their communities for help — there’s zero shame in recognizing where one’s limitations are. As business leaders, we should adopt the same mindset. For example, if you own an art supply store, perhaps you can partner with the local school district to give every child in need some basic school supplies. Or, if you own a staffing firm, maybe you could partner with a local nonprofit to help the unemployed members of your community find work. When we think of strategic partnerships, we tend to view them from a business perspective. However, well-managed philanthropic strategic partnerships can have benefits similar to those of well-managed corporate strategic partnerships, such as expanding reach and filling organizational gaps. 3. Help For The Sake Of Helping, Not Self-Promotion Steven Tyler is a household name; he’s one of the most iconic rock musicians of today. However, he separates his celebrity and philanthropic work. He doesn’t use Janie’s Fund as means of self-promotion. Yes, of course, some people and companies do actively use philanthropy as a marketing tool — it would be naive to say otherwise. However, I think it’s classier to be more subtle about it. Strive to help for the sake of helping others, not for the sake of helping yourself. When you step outside of your bubble and truly focus on how you can make life better for people, you’ll leave a mark on the world for years to come. Source: Read Full Article Related News: 50 Cent Backs Donald Trump on His COVID-19 Handling: It’s An Awkward Situation Inside Phoebe Cates’ Life Today Hailey Bieber Stepped Out in Santa Monica in the Perfect Nude Midi Dress Harry and Meghan's The Sussexes "Rift" with the Royal Family Is a "Gaping Cavern" After Recent Wreath Drama Piers Morgan insists Kate Garraway's husband Derek remains 'critical' Post navigation « Woman shares terrifying footage of the man she claims followed her home – but everyone's saying the same thing Kendall Jenner wears barely-there bikini yachting with Devin Booker » Hot News: Corrie spoiler videos reveal sad fire death, Curtis' dark secret and gold digger Waukesha restaurant donates 100% of proceeds to victims of parade tragedy Jamie O'Hara demands four Tottenham stars including Dele Alli NEVER play for club again after humiliating defeat at Mura
{ "warc_headers": { "warc-record-id": "<urn:uuid:3d7e49b5-1f4a-4055-9e28-f9824dba9f4c>", "warc-date": "2021-11-27T06:07:42Z", "content-type": "text/plain", "content-length": 5495, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:5fb888fd-342f-4eb1-b93d-93f6cfa35698>", "warc-target-uri": "https://hurlingblog.com/celebrities/3-lessons-ive-learned-from-an-influential-musicians-charity-that-can-apply-to-everyone-in-the-business-world/", "warc-block-digest": "sha1:HZN664PLCOEYUYP7DOJWQFUNJCG7TM4N" }, "identification": { "label": "en", "prob": 0.7870219349861145 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.855316162109375 }, null, null, null, null, null, { "label": "en", "prob": 0.9307987093925476 }, null, { "label": "en", "prob": 0.8055906891822815 }, { "label": "en", "prob": 0.870996356010437 }, { "label": "en", "prob": 0.8373850584030151 }, { "label": "en", "prob": 0.8910530805587769 }, { "label": "en", "prob": 0.9565023183822632 }, { "label": "en", "prob": 0.965293288230896 }, { "label": "en", "prob": 0.8925554156303406 }, { "label": "en", "prob": 0.9660622477531433 }, { "label": "en", "prob": 0.9267657995223999 }, null, { "label": "en", "prob": 0.9780591130256653 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.988548755645752 }, { "label": "en", "prob": 0.9736076593399048 }, { "label": "en", "prob": 0.9044830203056335 }, { "label": "en", "prob": 0.8618450164794922 }, null, { "label": "en", "prob": 0.9210788011550903 }, { "label": "en", "prob": 0.9580382108688354 }, { "label": "en", "prob": 0.9707878828048706 }, null, { "label": "en", "prob": 0.9837384819984436 }, { "label": "en", "prob": 0.9587989449501038 }, { "label": "en", "prob": 0.9261820316314697 }, null, null, null, null, { "label": "en", "prob": 0.8844470381736755 }, null, null, { "label": "en", "prob": 0.8545143604278564 }, { "label": "en", "prob": 0.8758962750434875 }, null, null, { "label": "en", "prob": 0.8013589382171631 }, { "label": "en", "prob": 0.9321100115776062 } ] }
522.1
5,429
https://hurlingblog.com/celebrities/3-lessons-ive-learned-from-an-influential-musicians-charity-that-can-apply-to-everyone-in-the-business-world/
hurlingblog.com
0.206852
[ [ 564955171182, 564955171640 ], [ 564955171654, 564955171783 ], [ 564955173895, 564955174025 ], [ 564955176146, 564955176260 ], [ 564955176325, 564955176617 ] ]
null
true
[ 431992407, 139325304, 328473241, 234215836 ]
false
2,608,936
New Zealand has won the ‘battle’ to stop coronavirus spreading, PM Jacinda Ardern declares as lockdown restrictions are relaxed New Zealand will move from Alert Level 4 to Level 3 of lockdown at 11:59pm Ardern said country had scored a significant victory against coronavirus spread Some businesses, takeaway food outlets and schools will be allowed to reopen Here’s how to help people impacted by Covid-19 Prime Minister Jacinda Ardern has claimed New Zealand has scored a significant victory against the spread of the coronavirus, as the country began to exit from lockdown. ‘There is no widespread, undetected community transmission in New Zealand,’ Ardern declared on Monday. ‘We have won that battle.’ Ashley Bloomfield, New Zealand’s Director General of Health, said the low number ‘does give us confidence that we’ve achieved our goal of elimination. That never meant zero but it does mean we know where our cases are coming from. ‘Our goal is elimination. And again, that doesn’t mean eradication but it means we get down to a small number of cases so that we are able to stamp out any cases and any outbreak that might come out.’ New Zealand’s Prime Minister Jacinda Ardern briefs the media about the COVIS-19 coronavirus at the Parliament House in Wellington on April 27 After nearly five weeks at the maximum Level Four restrictions – with only essential services operating – the country will move to Level Three late on Monday. That will allow some businesses, takeaway food outlets and schools to reopen. Most of the population will still be required to remain on lockdown and avoid social interactions. But Ardern warned there was no certainty about when all transmission can be eliminated, allowing a return to normal life. Everyone wants to ‘bring back the social contact that we all miss’, she said, ‘but to do it confidently we need to move slowly and we need to move cautiously.’ ‘I will not risk the gains we’ve made in the health of New Zealanders. So if we need to remain at Level Three, we will.’ She insisted at the daily government briefing: ‘We are opening up the economy, but we’re not opening up people’s social lives.’ The easing of restrictions came as New Zealand, a nation of five million people, reported only one new case of COVID-19 in the past 24 hours, taking the total to 1,122 with 19 deaths. New Zealand has been following an elimination strategy with the goal of completely ending the transmission of COVID-19 within its borders, which was announced by Ardern on March 23. Source: Read Full Article Related News: Metropolitan Police accused of institutional corruption over axe murder of Daniel Morgan Rohingya would-be politicians excluded from Myanmar election Britain faces 'massive spike' in coronavirus deaths on Christmas Eve, scientists warn Beirut protest sees army veterans storm foreign ministry as cop is killed in brutal clashes over blast that killed 158 World's fattest child unrecognisable after losing HALF 30-STONE bulk Post navigation « ‘The Night Manager’ Outfit The Ink Factory Extends 127 Wall Financing Deal & Ups Rod Henwood To COO Ryan, Adam and Scott Thomas emotionally confront their absent dad: ‘He left us for years’ » Hot News: Corrie spoiler videos reveal sad fire death, Curtis' dark secret and gold digger Waukesha restaurant donates 100% of proceeds to victims of parade tragedy Jamie O'Hara demands four Tottenham stars including Dele Alli NEVER play for club again after humiliating defeat at Mura
{ "warc_headers": { "warc-record-id": "<urn:uuid:1a082ae1-4727-4852-8bf3-5040fda09791>", "warc-date": "2021-11-27T05:29:47Z", "content-type": "text/plain", "content-length": 3537, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:a4e12e77-9dc6-49a0-a9f4-4c9f99f6bb99>", "warc-target-uri": "https://hurlingblog.com/world-news/new-zealand-has-won-a-battle-against-virus-transmission-pm/", "warc-block-digest": "sha1:QNOO5EBPIWARZ5ARMHDEPP4JMH4I27IR" }, "identification": { "label": "en", "prob": 0.8193098306655884 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9619637727737427 }, { "label": "en", "prob": 0.9229938387870789 }, { "label": "en", "prob": 0.9870168566703796 }, { "label": "en", "prob": 0.9542943835258484 }, { "label": "en", "prob": 0.9699437618255615 }, { "label": "en", "prob": 0.988736629486084 }, { "label": "en", "prob": 0.981410801410675 }, { "label": "en", "prob": 0.9256399869918823 }, { "label": "en", "prob": 0.9663321375846863 }, { "label": "en", "prob": 0.8867718577384949 }, { "label": "en", "prob": 0.9452934861183167 }, { "label": "en", "prob": 0.9564647078514099 }, { "label": "en", "prob": 0.8902353644371033 }, { "label": "en", "prob": 0.9518520832061768 }, { "label": "en", "prob": 0.977046012878418 }, { "label": "en", "prob": 0.9492595195770264 }, { "label": "en", "prob": 0.8728160262107849 }, { "label": "en", "prob": 0.9725438952445984 }, { "label": "en", "prob": 0.9952099919319153 }, { "label": "en", "prob": 0.9261820316314697 }, null, null, { "label": "en", "prob": 0.9761772751808167 }, null, { "label": "en", "prob": 0.9208366274833679 }, null, null, null, { "label": "en", "prob": 0.8935377597808838 }, null, null, { "label": "en", "prob": 0.8013589382171631 }, { "label": "en", "prob": 0.9321100115776062 } ] }
806.6
3,473
https://hurlingblog.com/world-news/new-zealand-has-won-a-battle-against-virus-transmission-pm/
hurlingblog.com
0
[]
null
false
[]
false
2,608,937
Are you wondering what happens tonight, for the weekend or when you come home on holiday? At HvaSkjeriNamsos.no you get an overview of all the events that are going on - without having to look around on many different pages! With this overview, it will be easier to prioritize what you will be doing while the babysitter take care of the kids, what to find on the weekend or what you can buy tickets for; Whether it's for yourself or someone you love.
{ "warc_headers": { "warc-record-id": "<urn:uuid:1a3010e6-ca38-4226-92db-33b506afb13f>", "warc-date": "2021-11-27T06:17:39Z", "content-type": "text/plain", "content-length": 451, "warc-type": "conversion", "warc-identified-content-language": "eng,nor", "warc-refers-to": "<urn:uuid:aa145841-04ad-4e81-bd28-7e5981a3c46b>", "warc-target-uri": "https://hvaskjerinamsos.no/category/MUSEUM", "warc-block-digest": "sha1:2AUOP3UKFPC7KJLVHHF4QUWMLZODA2QU" }, "identification": { "label": "en", "prob": 0.9471532702445984 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9471533298492432 } ] }
370.7
451
https://hvaskjerinamsos.no/category/MUSEUM
hvaskjerinamsos.no
0
[]
null
false
[]
true
2,608,938
It’s extremely common for people to yo-yo, and to understand why this happens, we need to look at the possible causes. State of mind Ask yourself why you gained weight in the first place. When we overeat to deal with: emotional stress, boredom, loneliness, fear of rejection, fear of being loved or happiness, for example, we’re not only satisfying our physical hunger but, our emotional one too. No matter how many kilos or inches you lose, suppressing emotional trauma never works in the long run. If this resonates with you, find a support network, seek advice from a professional, and focus as much of your energy on your mental health as your physical weight loss. Perceived self-image I can absolutely promise you that there is no ‘magic weight’ when it comes to happiness. Being less than 20% bodyfat doesn’t solve life’s problems and losing 3kg is unlikely to dramatically change your life. Learning to be appreciative of your health above your weight, is one step in the right direction. Nutrition If you lost weight by dramatically reducing your calories, excess weight will return when you start to eat normally again. Consider what method of weight-loss is sustainable from the outset, and you can avoid this problem when you reach your target. Incorporate exercise into your daily routine and teach yourself how to eat intuitively. Goals Many people are happy with their ‘less than perfect’ bodies, whereas others stress over what could be considered ‘the perfect physique’, so it would seem that setting realistic targets plays a valuable role in feeling satisfied. It’s a mistake to nostalgically compare our current physiques to the 18-year-old versions of ourselves. As the body matures, hormone levels change, you have to work harder to keep your metabolic rate up, and other lifestyle factors make it difficult, (but not impossible), to shift unwanted kilos. Importantly, learn to love yourself now, rather than loving the idea of what you could be. Related Articles Slow down this Summer Thu, 05/14/2020 - 14:52 Too much high intensity training can be detrimental for your health. HV Holistic Health explains the benefits of slowing down. Read more Keep active and stay cool this summer Wed, 05/13/2020 - 10:52 Keeping active in a hot country can be difficult but, it is possible. There are a handful of things you need to consider, however, before you take part in physical activities that could leave you dehydrated, and unwell. Read more Sleeping patterns explained Tue, 05/12/2020 - 13:03 Your body is designed to follow natural rhythms, even a 90-minute change in your sleeping pattern, can cause the body’s rhythm to become disrupted. Sometimes an increase in tiredness can highlight a vitamin or mineral deficiency within the body. Read more Activate Your Children Mon, 05/11/2020 - 15:25 Change their habits, and improve their health, with the HV Holistic guide to ‘Health for kids’. It’s your job to educate your children that healthy eating isn’t a punishment. Read more Dehydration 101 Tue, 05/05/2020 - 19:48 Dehydration is common, especially in the Middle East during the summer months! Not only is the heat a major problem for those spending time outdoors but, other factors, such as air conditioning and dust, contribute to dehydration, too. Read more HV Holistic’s Self-Love Guide Thu, 04/30/2020 - 19:57 If you do one positive thing this year make it: LEARN TO LOVE YOURSELF. At HV Holistic Health, we believe that loving yourself is just as important as being loved by another human. Read more About Us Our studios Useful information Partner opportunities Privacy Policy Website Disclaimer © HV Holistic 2021 We are a luxury healthcare centre with an ethos based on analysis, diagnosis and low impact training.
{ "warc_headers": { "warc-record-id": "<urn:uuid:d32d674f-b1a9-47a4-a917-a4f481a39764>", "warc-date": "2021-11-27T06:01:12Z", "content-type": "text/plain", "content-length": 3783, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:1bda5ef7-e45a-4889-b5c8-fc26ab65ef31>", "warc-target-uri": "https://hvholistichealth.com/useful-information/how-to-remain-once-you-lose-weight", "warc-block-digest": "sha1:NZQNSL3EL7XJTBG4PK3N72DBHNXRPNWI" }, "identification": { "label": "en", "prob": 0.847146213054657 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9701808094978333 }, { "label": "en", "prob": 0.8477863073348999 }, { "label": "en", "prob": 0.9233716726303101 }, { "label": "en", "prob": 0.9954967498779297 }, { "label": "en", "prob": 0.9637618660926819 }, null, { "label": "en", "prob": 0.9467077255249023 }, { "label": "en", "prob": 0.9063543081283569 }, { "label": "en", "prob": 0.9481982588768005 }, null, null, null, { "label": "en", "prob": 0.9409894943237305 }, { "label": "en", "prob": 0.8783754110336304 }, { "label": "en", "prob": 0.8563222289085388 }, null, { "label": "en", "prob": 0.9758233428001404 }, { "label": "en", "prob": 0.8783754110336304 }, null, null, { "label": "en", "prob": 0.9106384515762329 }, { "label": "en", "prob": 0.8783754110336304 }, null, null, { "label": "en", "prob": 0.96779865026474 }, { "label": "en", "prob": 0.8783754110336304 }, null, null, { "label": "en", "prob": 0.9573526978492737 }, { "label": "en", "prob": 0.8783754110336304 }, null, null, { "label": "en", "prob": 0.9504917860031128 }, { "label": "en", "prob": 0.8783754110336304 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9665873646736145 } ] }
754.9
3,748
https://hvholistichealth.com/useful-information/how-to-remain-once-you-lose-weight
hvholistichealth.com
0
[]
null
false
[]
true
2,608,939
This American Life is produced in collaboration with WBEZ Chicago and delivered to stations by PRX The Public Radio Exchange.
{ "warc_headers": { "warc-record-id": "<urn:uuid:7fc13acb-b9b2-4f2e-8fdf-c58ccd883464>", "warc-date": "2021-11-27T05:31:10Z", "content-type": "text/plain", "content-length": 125, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:72361340-f8b0-4a37-9bd1-807cc29f27a3>", "warc-target-uri": "https://hw3.thisamericanlife.org/archive?am=&contributor=8524&type=episodes&tag=7785", "warc-block-digest": "sha1:K7RAGEZILVQTUWPQL4ICQ5NIP26XVZT6" }, "identification": { "label": "en", "prob": 0.9660233855247498 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9660233855247498 } ] }
204.5
125
https://hw3.thisamericanlife.org/archive?am=&contributor=8524&type=episodes&tag=7785
hw3.thisamericanlife.org
1.04
[ [ 564955176619, 564955176749 ] ]
null
true
[ 431992411 ]
false
2,608,940
According to the N.C. Board of Elections, there have been few instances of serious voter fraud referred to the district attorney's office for prosecution - 12 in 2002, 37 in 2004, seven in 2005, two in 2006. Voter fraud is a felony in North Carolina. In 2008, which saw a sharp rise in voting when 4.2 million North Carolinians went to the polls, there were 235 voting felonies, 30 cases of double voting, 23 cases of noncitizens voting, five cases of absentee voting fraud and 16 cases of fraudulent registration forms turned over to the district attorney, according to the elections board. The real problem for conservatives, as Weyrich complained, is too many people voting. Rep. Rick Killian (R) from Charlotte offers an anecdote in support of his bill. Forget the facts (with their well-known left-wing bias), he heard something somewhere from somebody: "I have heard many, many stories about voter fraud," said Killian. "Most recently I heard in Washington County where four dead people voted in a sheriff's race. I believe there are cases of voter fraud, and I believe there are cases that are reported that are not investigated." Johnnie McLean, deputy director of the State Board of Elections, said the story, which has been widely circulated in conservative circles, isn't true. The confusion arose over a clerical error, she said. On Election Day, voters pointed out four relatives who had died and who advised poll workers that their names should be should be stricken from the rolls. Their names were inadvertently put in a voter history list file but no ballot was cast in their names. I heard Saddam had WMDs. I heard that a lot. And I heard that Obama is from Kenya. I even saw a picture in a supermarket tabloid of Obama meeting with space aliens. (Cross-posted from Scrutiny Hooligans.) Tom Sullivan's blog Comments Democracy In A GOP Hell? Submitted by Connie Mack Berry Jr on Wed, 03/16/2011 - 22:11 "I don't want everybody to vote. Elections are not won by a majority of the people. They never have been from the beginning of our country and they are not now. As a matter of fact, our leverage in the elections quite candidly goes up as the voting populace goes down."[30]* Amtrack Paul I wager Paul was shocked to find out that Hell was not a democracy and he couldn't vote himself out after his death in 08..... Freedom + Fairness Username * Password * Create new account Request new password Latest reader comments One way or another Did they boot him out? Just an observation: These Trumpanzees would bow Good rule but his mother made the Facebook comments Mark who? Bonus Onion: No Monday news today... No Fear? We should be so lucky... Cawthorn likes anything young Again, I see nothing Both the policy poison pills... I hope some of you take advantage of this Marjorie Taylor Greene... Bonus Onion: "We need to be just as..." Cawthorn and Meadows.....two Something to watch with Meadows Too true... Anyone who supports the boy See more comments NC voices Carolina Public Press Democracy NC Indy Week Media Disrupted NARAL Pro-choice NC Coalition for Alternatives to the Death Penalty NC NAACP Orange Politics Progressive Pulse PoliticsNC Under the Dome Watauga Watch BlueNC is a labor of love. Views expressed by any particular community member are simply that: the views of that particular member. If you have questions or concerns about the content you see here, please contact us.
{ "warc_headers": { "warc-record-id": "<urn:uuid:2f438455-e844-4024-9241-d5e00dbab528>", "warc-date": "2021-11-27T06:17:41Z", "content-type": "text/plain", "content-length": 3411, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:ae034ddb-ff29-4153-b4ad-8dcff7224d8c>", "warc-target-uri": "https://hwww.bluenc.com/content/our-leverage-goes-voting-populace-goes-down", "warc-block-digest": "sha1:ENZPRBVJYQF4NO4ELOVDWIUEEMXBZ7DP" }, "identification": { "label": "en", "prob": 0.8584234714508057 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9583346247673035 }, { "label": "en", "prob": 0.9532577395439148 }, { "label": "en", "prob": 0.9824385643005371 }, { "label": "en", "prob": 0.9911442399024963 }, { "label": "en", "prob": 0.991012454032898 }, { "label": "en", "prob": 0.980374813079834 }, null, null, { "label": "en", "prob": 0.809270441532135 }, { "label": "en", "prob": 0.8296173810958862 }, { "label": "en", "prob": 0.8146584630012512 }, { "label": "en", "prob": 0.9914345145225525 }, { "label": "en", "prob": 0.9971057176589966 }, null, { "label": "en", "prob": 0.9934020042419434 }, null, null, null, { "label": "en", "prob": 0.870850682258606 }, null, { "label": "en", "prob": 0.9987766146659851 }, { "label": "en", "prob": 0.8077959418296814 }, { "label": "en", "prob": 0.9796830415725708 }, { "label": "en", "prob": 0.9971513748168945 }, { "label": "en", "prob": 0.8126913905143738 }, null, { "label": "en", "prob": 0.8454843163490295 }, null, { "label": "en", "prob": 0.9841917157173157 }, { "label": "en", "prob": 0.9022828340530396 }, null, { "label": "en", "prob": 0.9754581451416016 }, null, null, { "label": "en", "prob": 0.9671173095703125 }, { "label": "en", "prob": 0.8875645399093628 }, { "label": "en", "prob": 0.9165095090866089 }, null, { "label": "en", "prob": 0.9209157228469849 }, { "label": "en", "prob": 0.8950791358947754 }, { "label": "en", "prob": 0.8940092325210571 }, null, null, { "label": "en", "prob": 0.9508113265037537 }, { "label": "en", "prob": 0.9552608728408813 }, { "label": "en", "prob": 0.8311452865600586 }, { "label": "en", "prob": 0.8398758172988892 }, { "label": "en", "prob": 0.823904275894165 }, null, null, null, null, null, { "label": "en", "prob": 0.9711717963218689 } ] }
655.6
3,411
https://hwww.bluenc.com/content/our-leverage-goes-voting-populace-goes-down
hwww.bluenc.com
0
[]
null
false
[]
false
2,608,941
Facebook claims that your calls, messages, photos, videos, voice messages, documents and even your status updates are end-to-end encrypted. So how do messages get leaked, if ever? Total 0 Shares 0 0 0 (Last Updated On: August 27, 2021) WhatsApp is popular instant messaging and voice over IP application that has over 1.5 billion active users around the world. It was initially released in 2009. Facebook bought WhatsApp in February 2014 for 19.3 billion US dollars. When facebook acquired it, many users were motivated to try other services such as Telegram which saw 8 million downloads at that time. In the beginning it didn’t have any end-to-end encryption. On November 18, 2014, Facebook partnered with Open Whisper Systems to provide WhatsApp with end-to-end encryption from their instant messaging app known as ‘Signal’, an application similar to WhatsApp. By this encryption integration, facebook claims that your calls, messages, photos, videos, voice messages, documents and even your status updates are end-to-end encrypted. So how do messages get leaked, if ever? Whatsapp Data & Conversation leak The weakest link in this chain of sending messages through WhatsApp is your device itself. First, you must know that the backup of messages and media is stored in an un-encrypted form in your device or google drive should you choose to upload it there. If by a misfortune your device gets affected with malware, you also risk your WhatsApp conversations to get leaked as well. One such incident is recently reported in India, where smartphones of several journalists, politicians and minority and human rights activists were infected by a spyware through WhatsApp security vulnerability. It was disclosed after Facebook sued an Israel based firm NSO group, which is known for developing spyware and surveillance software. However the government seems to be involved in this since NSO group claims that it only provide the means to do the surveillance but is never involved in the process after the software has been licensed to the government entity. This attack was done through a seemingly normal phone call to a WhatsApp user which will also install a malicious spyware with it regardless of the user picking up the call or not. After the installation the spyware will also remove any logs that can trace back to it. In this way, affected users had no idea that their conversations, photos and videos were all subject to surveillance by their government. The incident was first reported in May 2019. However on Oct 29th, WhatsApp took legal action against the hack after investigation. The independent investigation entity, ‘Citizen Lab’ of University of Toronto said: “Not all vectors are publicly known. Once the spyware is implanted, it provides a Command & Control server with regular, scheduled updates designed to avoid extensive bandwidth consumption. Pegasus is designed to be stealthy and evade forensic analysis, avoid detection by anti-virus software, and can be deactivated and removed by operators.” Information that WhatsApp disclose A general user can request their information that is kept by WhatsApp as following: Requesting a report about yourself Go to WhatsApp Settings > Account > Request account info. Tap Request report. The screen will update to Request sent. More information can be read here. Information for Law Enforcement WhatsApp can reveal more thorough information on you through legal means while responding to Law Enforcement Requests which can include your ‘about’ information, profile photos and contact list. While WhatsApp does not store messages indefinitely your messages are briefly in their system during transit, which will be encrypted. WhatsApp Trust Issues Jan Koum is the co-founder of WhatsApp and was the CEO of WhatsApp company before it was sold to Facebook. Now with Facebook at the big seat, concerns for privacy have increased because of the past incidents of privacy breaches of which Facebook was the part or facilitator. With Koum gone, Facebook will likely increase the data collection and remains silent on the future of the service in terms of data collection and direct targeted advertisements to WhatsApp users. Facebook already have the advertisement system placed on Facebook app. It might only be a matter of time and opportunity to mine more data from their users through WhatsApp. If you would like to avoid the privacy issues surrounding Facebook you can use some other alternative such as the app ‘Signal’. However, malware and commercial sophisticated spywares are out of the scope of everyone’s normal usage and security measures. hacks WhatsApp Total 0 Shares Share 0 Tweet 0 Pin it 0 Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Δ This site uses Akismet to reduce spam. Learn how your comment data is processed. View Comments (0) Previous Post VPN VPN: What is a VPN, what does it do? bykaliph September 10, 2019 Next Post How to Tutorial Upgrade your Unsupported Windows 10 PC to Windows 11 bykaliph October 18, 2021 Recent Posts Upgrade your Unsupported Windows 10 PC to Windows 11 What Plagues WhatsApp? VPN: What is a VPN, what does it do? Browser Hijacking: Things you should know! Free Proxy/VPN Applications Tags Adware (1) Benefits of VPN (1) Browser Hijacking (1) Browser Malware (1) Digital Ocean (1) Encrypted E-mail (1) hacks (1) Hams (1) How does VPN work (1) Malware (1) OpenVPN (1) Phishing (1) PHP-PROXY (1) Secure Messaging (1) Setup OpenVPN (1) Shadowsocks (1) Spam (1) Spyware (1) Ubuntu (1) Unblock websites (1) Upgrade to Windows 11 (1) VPN (1) VPN applications (1) VPN protocols (1) Web Proxy (1) What is a VPN (1) WhatsApp (1) Windows 11 (1) Related Posts 3 minute read Knowledge Base Privacy & Security Browser Hijacking: Things you should know! (Last Updated On: August 27, 2021) Browser hijacking is an unwanted and often malicious software that modifies your… June 3, 2019 Read More 3 minute read Privacy & Security Secure And Encrypted Email Services (Last Updated On: December 18, 2018) In today’s internet, data privacy and security is really important. Custom email… December 18, 2018 Read More 3 minute read Knowledge Base Privacy & Security What is Spam and Ham E-mails? (Last Updated On: March 22, 2019) The use of electronic messaging systems to send unsolicited bulk messages, especially…
{ "warc_headers": { "warc-record-id": "<urn:uuid:4f20c703-57e3-4c7f-91ec-e1356f4bb3a8>", "warc-date": "2021-11-27T05:54:38Z", "content-type": "text/plain", "content-length": 6506, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:e44c7464-8eeb-4ee9-8a23-71c2725f8167>", "warc-target-uri": "https://hyperbyte.net/privacy-security/what-plagues-whatsapp", "warc-block-digest": "sha1:JCCYDHM5IOAU7OQFH4YESIUH7MOPBQML" }, "identification": { "label": "en", "prob": 0.776036262512207 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9615486264228821 }, null, { "label": "en", "prob": 0.9678434133529663 }, { "label": "en", "prob": 0.9900014400482178 }, { "label": "en", "prob": 0.988725483417511 }, { "label": "en", "prob": 0.9048393368721008 }, { "label": "en", "prob": 0.9367927312850952 }, null, { "label": "en", "prob": 0.9935288429260254 }, { "label": "en", "prob": 0.9358441829681396 }, null, null, { "label": "en", "prob": 0.8198219537734985 }, { "label": "en", "prob": 0.887547492980957 }, null, { "label": "en", "prob": 0.9464705586433411 }, null, { "label": "en", "prob": 0.9683196544647217 }, { "label": "en", "prob": 0.9463955760002136 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8027464151382446 }, { "label": "en", "prob": 0.9563198685646057 }, null, null, null, null, { "label": "en", "prob": 0.9106276035308838 }, { "label": "ru", "prob": 0.8715653419494629 }, { "label": "en", "prob": 0.8609394431114197 }, null, { "label": "en", "prob": 0.9188434481620789 }, null, { "label": "en", "prob": 0.9927093386650085 }, null, { "label": "en", "prob": 0.9598065614700317 }, { "label": "en", "prob": 0.9583398699760437 }, { "label": "en", "prob": 0.9925990104675293 }, null, { "label": "en", "prob": 0.8166853785514832 }, null, { "label": "en", "prob": 0.9966645836830139 }, { "label": "en", "prob": 0.8328146934509277 }, { "label": "en", "prob": 0.8166853785514832 }, null, { "label": "en", "prob": 0.9927093386650085 }, { "label": "en", "prob": 0.8938850164413452 }, null, null, null, { "label": "en", "prob": 0.9298102259635925 }, { "label": "en", "prob": 0.8296249508857727 }, null, null, { "label": "en", "prob": 0.8938850164413452 }, { "label": "en", "prob": 0.9086113572120667 }, { "label": "en", "prob": 0.9993910193443298 }, null, { "label": "en", "prob": 0.8296249508857727 }, null, null, { "label": "en", "prob": 0.8900078535079956 }, { "label": "en", "prob": 0.995742678642273 }, null, { "label": "en", "prob": 0.8296249508857727 }, null, null, { "label": "en", "prob": 0.9613997340202332 }, { "label": "en", "prob": 0.8387933969497681 } ] }
900.7
6,473
https://hyperbyte.net/privacy-security/what-plagues-whatsapp
hyperbyte.net
0
[]
null
false
[]
false
2,608,942
A Forum for HYSPLIT Dispersion Model Users to Communicate Questions, Problems, and Ideas for Upgrades, etc.
{ "warc_headers": { "warc-record-id": "<urn:uuid:a2bb1b5d-296d-4c07-b600-ba1682aea8a4>", "warc-date": "2021-11-27T06:36:44Z", "content-type": "text/plain", "content-length": 107, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:cd27556e-d125-4e3b-ad73-12b016384e85>", "warc-target-uri": "https://hysplitbbs.arl.noaa.gov/ucp.php?mode=delete_cookies&sid=50a148c1742fde9a257881a0f75bc0b3", "warc-block-digest": "sha1:OBLUM5NGNAAXOH4NN2XGIS5JRDJSFNJM" }, "identification": { "label": "en", "prob": 0.8696338534355164 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8696338534355164 } ] }
271.2
107
https://hysplitbbs.arl.noaa.gov/ucp.php?mode=delete_cookies&sid=50a148c1742fde9a257881a0f75bc0b3
hysplitbbs.arl.noaa.gov
1.046729
[ [ 564955176750, 564955176862 ] ]
null
true
[ 431992414 ]
false
2,608,943
A Forum for HYSPLIT Dispersion Model Users to Communicate Questions, Problems, and Ideas for Upgrades, etc. Skip to content Search Advanced search Quick links Unanswered topics Active topics Search FAQ Login Board index Search Language: American EnglishBritish English HYSPLIT Forum: hysplitbbs.arl.noaa.gov - Registration By accessing “HYSPLIT Forum: hysplitbbs.arl.noaa.gov” (hereinafter “we”, “us”, “our”, “HYSPLIT Forum: hysplitbbs.arl.noaa.gov”, “https://hysplitbbs.arl.noaa.gov”), you agree to be legally bound by the following terms. If you do not agree to be legally bound by all of the following terms then please do not access and/or use “HYSPLIT Forum: hysplitbbs.arl.noaa.gov”. We may change these at any time and we’ll do our utmost in informing you, though it would be prudent to review this regularly yourself as your continued usage of “HYSPLIT Forum: hysplitbbs.arl.noaa.gov” after changes mean you agree to be legally bound by these terms as they are updated and/or amended. Our forums are powered by phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Limited”, “phpBB Teams”) which is a bulletin board solution released under the “GNU General Public License v2” (hereinafter “GPL”) and can be downloaded from www.phpbb.com. The phpBB software only facilitates internet based discussions; phpBB Limited is not responsible for what we allow and/or disallow as permissible content and/or conduct. For further information about phpBB, please see: https://www.phpbb.com/. You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any laws be it of your country, the country where “HYSPLIT Forum: hysplitbbs.arl.noaa.gov” is hosted or International Law. Doing so may lead to you being immediately and permanently banned, with notification of your Internet Service Provider if deemed required by us. The IP address of all posts are recorded to aid in enforcing these conditions. You agree that “HYSPLIT Forum: hysplitbbs.arl.noaa.gov” have the right to remove, edit, move or close any topic at any time should we see fit. As a user you agree to any information you have entered to being stored in a database. While this information will not be disclosed to any third party without your consent, neither “HYSPLIT Forum: hysplitbbs.arl.noaa.gov” nor phpBB shall be held responsible for any hacking attempt that may lead to the data being compromised.
{ "warc_headers": { "warc-record-id": "<urn:uuid:c8562de9-6d5a-4729-b69e-4927b287bc61>", "warc-date": "2021-11-27T06:28:41Z", "content-type": "text/plain", "content-length": 2564, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:0cbc3f81-6abd-48fb-a185-5539f83aabb1>", "warc-target-uri": "https://hysplitbbs.arl.noaa.gov/ucp.php?mode=register&sid=64b7718b7885f7c967aa24c5252c5964", "warc-block-digest": "sha1:KKFVTDTWMIWX5K6L53766PMS45UF5ERA" }, "identification": { "label": "en", "prob": 0.8448123335838318 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.8696338534355164 }, null, null, null, { "label": "en", "prob": 0.9410324096679688 }, { "label": "en", "prob": 0.9910190105438232 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8899399638175964 }, { "label": "en", "prob": 0.9124764800071716 }, { "label": "en", "prob": 0.9177597165107727 } ] }
556.8
2,482
https://hysplitbbs.arl.noaa.gov/ucp.php?mode=register&sid=64b7718b7885f7c967aa24c5252c5964
hysplitbbs.arl.noaa.gov
0
[]
null
false
[]
true
2,608,944
Thyroid Recovery 911 provides thyroid support and is enriched with antioxidants schizandra for overall health. … Recent Posts Pain Management Golden Revive Plus Review – Best Joint Health Supplement!! Melanie Jazz Nov 25, 2021 0 Golden Revive Plus is a completely safe and effective treatment for chronic joint pain and inflammation. …
{ "warc_headers": { "warc-record-id": "<urn:uuid:c283ab81-dd62-44d5-a329-eda38f47df5b>", "warc-date": "2021-11-27T04:48:40Z", "content-type": "text/plain", "content-length": 347, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:cbb62069-50b1-4ed5-ae99-2522c44c12b6>", "warc-target-uri": "https://i-review.net/tag/phytage-urgent-cell-repair/", "warc-block-digest": "sha1:UU6G2IKCO2KZVI4QYGDYUME7HPPFCJJ4" }, "identification": { "label": "en", "prob": 0.6352118849754333 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.9105466604232788 }, { "label": "en", "prob": 0.8328146934509277 }, null, null, null, { "label": "en", "prob": 0.9330549836158752 } ] }
3,116.7
341
https://i-review.net/tag/phytage-urgent-cell-repair/
i-review.net
0
[]
null
false
[]
false
2,608,945
This unit measures adsorption quantity by the weight method using a magnetic suspension balance (MSB). Use of a magnetic suspension balance enables measurement of adsorption quantity under various conditions. Also, this unit is capable of determining the density of measured gas by measuring the weight of a sinker.
{ "warc_headers": { "warc-record-id": "<urn:uuid:1c9b864d-ae21-4094-b72e-2fd3fce27953>", "warc-date": "2021-11-27T04:45:25Z", "content-type": "text/plain", "content-length": 315, "warc-type": "conversion", "warc-identified-content-language": "jpn,eng,dan", "warc-refers-to": "<urn:uuid:2736f4ba-a14b-4ac3-aa3c-481552892cea>", "warc-target-uri": "https://i2cner.kyushu-u.ac.jp/equipment/month.php?year=2017&month=12&day=19&area=47&room=59", "warc-block-digest": "sha1:DIKUZQRS2BYHC3F7A4USKEPFWPVA4K7S" }, "identification": { "label": "en", "prob": 0.88153076171875 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.88153076171875 } ] }
492.6
315
https://i2cner.kyushu-u.ac.jp/equipment/month.php?year=2017&month=12&day=19&area=47&room=59
i2cner.kyushu-u.ac.jp
1.009524
[ [ 564955176864, 564955177182 ] ]
null
true
[ 431992417, 423623925, 430857911, 429736220, 412910351 ]
false
2,608,946
As a writer, your biggest fear is not having anything to write about. There’s nothing worse than having the ambition, the drive, the excitement to write, and then sitting in front of your keyboard and finding there’s nothing there. Your fingers sit motionless on top of the keyboard almost as if they’ve never typed anything before while your brain madly scrambles for something, anything, to … Continue reading A Surplus Of Content- Discussing The Batman, Black Phone, Cowboy Bebop & Everything In Between Kevin Carey October 19, 2021 October 19, 2021 Leave a comment Sidebar Search for: Follow Us Facebook Twitter Instagram Archives Archives Select Month November 2021 (3) October 2021 (6) September 2021 (6) August 2021 (5) July 2021 (9) June 2021 (9) May 2021 (10) April 2021 (13) March 2021 (13) February 2021 (12) January 2021 (11) December 2020 (8) November 2020 (4) October 2020 (9) September 2020 (11) August 2020 (14) July 2020 (12) June 2020 (12) May 2020 (11) April 2020 (14) March 2020 (19) February 2020 (16) January 2020 (17) December 2019 (17) November 2019 (7) October 2019 (11) September 2019 (13) August 2019 (16) July 2019 (20) June 2019 (18) May 2019 (20) April 2019 (20) March 2019 (20) February 2019 (13) January 2019 (19) December 2018 (15) November 2018 (14) October 2018 (17) September 2018 (14) August 2018 (20) July 2018 (17) June 2018 (12) May 2018 (15) April 2018 (17) March 2018 (15) February 2018 (13) January 2018 (16) December 2017 (13) November 2017 (17) October 2017 (16) September 2017 (13) August 2017 (16) July 2017 (15) June 2017 (14) May 2017 (22) April 2017 (18) March 2017 (20) February 2017 (15) January 2017 (19) December 2016 (21) November 2016 (17) October 2016 (13) September 2016 (21) August 2016 (21) July 2016 (14) June 2016 (17) May 2016 (22) April 2016 (24) March 2016 (25) February 2016 (26) January 2016 (27) December 2015 (14) I Am Geek Tweets My Tweets Blog at WordPress.com. Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
{ "warc_headers": { "warc-record-id": "<urn:uuid:b94572cc-f006-441c-96b8-8ac014471195>", "warc-date": "2021-11-27T06:30:15Z", "content-type": "text/plain", "content-length": 2043, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:daaafcbd-4723-4b6b-9636-d2b58088663d>", "warc-target-uri": "https://iamgeek32.org/tag/ozark-season-4-part-1/", "warc-block-digest": "sha1:AM6ZTGHQ45YJXZJFTJIFK7LADYF5BMWQ" }, "identification": { "label": "en", "prob": 0.9152523279190063 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.9121015667915344 }, { "label": "en", "prob": 0.9723820090293884 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9888052940368652 }, null, null, null, { "label": "en", "prob": 0.9486562013626099 } ] }
16,084.9
2,035
https://iamgeek32.org/tag/ozark-season-4-part-1/
iamgeek32.org
0
[]
null
false
[]
true
2,608,947
Our family's journey with autism and Soma RPM (Rapid Prompting Method) and learning all about our son, Ryan, after unlocking his voice through a letter board after 8 years of silence. Body Control With Autism and a Haiku Posted bystephcurry12 July 31, 2015 August 1, 2015 Posted inUncategorized We had a streak going. We had been in the pool every day (with the exception of the first night arriving here) and I wasn’t sure how long we would keep the streak alive. Well on Wednesday, Randy had to work late, I was not feeling my best, and Ryan’s hands were very badly scraped/scuffed up from “wall walking” the edge of the pool. His hands were at the point of bleeding and on Tuesday we were having a lot of trouble stopping the bleeding due to the thin skin on his finger tips. I thought that it would be best to take a break from the pool because of all of the above reasons. I spoke with Ryan about it and he replied I AM NOT FEELING GOOD ANYWAY. “So is it okay to skip the pool today?” YES. Well two minutes later, Ryan brings me his bathing suit. “Why did you bring me your bathing suit if you agreed that it was okay to skip the pool?” NOT SURE WHY I DID THAT. “What should I do then?” JUST IGNORE IT. About five minutes later, he came up to me and started vocalizing (which usually comes out something like ba ba ba) and he was pointing to the door to the patio for the pool. I said, “Ryan we agreed that we are skipping the pool today. Why are you pointing at the door?” YES TO AUTISM RANDOM POINTING. He then did it again. AUTISM MAKES ME DO IT. “So you understand that we are not going in the pool today?” YES. Another one of the things that Ryan does often that is perplexing to us is to bring an adult his favorite brand of seasoning, Tony Chachere’s, when he wants to eat. He usually does this more than once a day. We assume that he wants some sort of item that he wants to put the seasoning on, but sometimes we will heat something up and he refuses it. The other day, he brought the seasoning to me. I asked him, “What do you want to eat?” I gave him choices that might go with the seasoning like chicken, bacon, hot dogs and he replied NOT VERY HUNGRY. “Why did you bring me the seasoning?” I JUST NEED A SMALL SNACK. “So something like crackers or pretzels?” YES. It was time for our morning lesson today. Sometimes, Ryan will let me know that he needs a little more time before the lesson and I try and respect that. He does this with the letter board. Well today I asked him if he was ready for the lesson. YES TO THE LESSON NOW. The problem was that he would not go to the room with the table. He laid down on the floor and was dead weight. He would not get up. I tried to pick him up but I couldn’t. I tried again and failed. I then took his iPad and brought it to the room. He finally got up and followed me to the table. I went ahead with the lesson first and then I asked him about it. “If you were ready to do the lesson with me, why was it so hard for you to come to the table?” YES TO HARD. YES TO MY BODY NOT COOPERATING WITH ME. “So is it okay for me to take your iPad and bring it to the table or to try and pick you up to get to the table?” YES TO DOING THAT. Now the outside observer would definitely think that he did not want to do the lesson but it is quite the opposite. Ryan always wants to learn. He gets upset if we miss a lesson. Last week he had a poor night of sleep so he ended up sleeping most of the day. We were not able to get a lesson in because we had plans in the evening. I explained this to him and his reply was AUTISM ALWAYS INTERRUPTS MY LIFE. So today we did a lesson on poems since Ryan has recently expressed an interest in poems. We talked about Haiku poems and their origin. We talked about the rules of haiku poems (5-7-5 format) and syllables. I never taught Ryan syllables. He spelled out that he knew what they were already. I quizzed him on a few words and he got them all right. I asked him where he learned about syllables. NOT SURE. Since I knew that he understood the concept, I then asked him if he wanted to write one himself. YES. So we started and he spelled NOT SURE WHAT TO WRITE ABOUT. I gave him some suggestions like the pool, moving, his iPad, family, and (I wasn’t sure about this one) autism. He chose Family. My Family Family has me. Really love them too, too much. Need them in my life. Share this: Twitter Facebook Like this: Like Loading... Posted bystephcurry12 July 31, 2015 August 1, 2015 Posted inUncategorized Post navigation Previous Post Previous post: Ryan’s Recent Workshop With Soma Mukhopadhyay Next Post Next post: Meltdowns 5 thoughts on “Body Control With Autism and a Haiku” jarkraus8464 says: July 31, 2015 at 3:02 pm Oh my. Tears for his haiku. How beautiful. LikeLike Reply Ali says: August 2, 2015 at 4:53 pm Thanks so much for sharing this. LikeLike Reply Amy Fidler says: August 8, 2015 at 7:45 pm yes! all the tears. reading about these experiences is also giving me a lot of insight into my son who is on the high functioning (and verbal) end… but not able to articulate some of these feelings /awareness as well as Ryan. LikeLike Reply Linda Teplitz says: August 19, 2015 at 4:39 pm Ryan may enjoy reading a fellow typer’s poetry. My son David wrote some beautiful poetry when he was Ryan’s age. It can be found at davidteplitz.com. Unfortunately, David stopped writing poetry after puberty. I don’t know why, he says he just doesn’t feel it any more. Sadly, we have not updated this website in ten years. Life is just so busy… LikeLiked by 1 person Reply Mark Grabowski says: September 16, 2020 at 3:58 pm I tell people that our thoughts don’t always translate to our physical actions. When your mind wants you to snap your fingers and you do it, you don’t think about it but when you have autism, your fingers won’t snap if your mind says to. This is the beginning of understanding autistic behavior. There are times when Ryan will want to stay in the room and indicate yes, but he leaves the room and indicates no. He calls me “meaningful Mark“. He says “Mark gets me“… I. Love. That.
{ "warc_headers": { "warc-record-id": "<urn:uuid:7e4c005a-3e13-423e-af22-f75b7bfabaf2>", "warc-date": "2021-11-27T05:02:02Z", "content-type": "text/plain", "content-length": 6194, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:91acbaf0-0f08-4fe0-8fa0-57c10f6e842c>", "warc-target-uri": "https://iaminmyhead.com/2015/07/31/body-control-with-autism-and-a-haiku/?like_comment=2760&_wpnonce=3587edd981", "warc-block-digest": "sha1:U6OLJQ6HGIIRNTN2QCK5OQ6AWSSHNES4" }, "identification": { "label": "en", "prob": 0.9361605048179626 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9612493515014648 }, { "label": "en", "prob": 0.827360212802887 }, { "label": "en", "prob": 0.9158740639686584 }, { "label": "en", "prob": 0.9885386228561401 }, { "label": "en", "prob": 0.9824234843254089 }, { "label": "en", "prob": 0.987229585647583 }, { "label": "en", "prob": 0.9942033886909485 }, { "label": "en", "prob": 0.9960294365882874 }, { "label": "en", "prob": 0.9927695989608765 }, { "label": "en", "prob": 0.878521203994751 }, { "label": "en", "prob": 0.99997478723526 }, { "label": "en", "prob": 0.9727910757064819 }, { "label": "en", "prob": 0.995067834854126 }, null, null, null, null, null, { "label": "en", "prob": 0.9158740639686584 }, null, { "label": "en", "prob": 0.8858426809310913 }, null, { "label": "en", "prob": 0.9298956990242004 }, null, { "label": "en", "prob": 0.8428117632865906 }, null, { "label": "en", "prob": 0.9927987456321716 }, { "label": "en", "prob": 0.9817599058151245 }, null, null, { "label": "en", "prob": 0.9074370861053467 }, { "label": "en", "prob": 0.939373254776001 }, { "label": "en", "prob": 0.9884374141693115 }, null, null, null, { "label": "en", "prob": 0.9399701356887817 }, { "label": "en", "prob": 0.9760210514068604 }, null, null, null, { "label": "en", "prob": 0.965962290763855 }, { "label": "en", "prob": 0.9572451114654541 }, { "label": "en", "prob": 0.9849377870559692 }, null, null, { "label": "en", "prob": 0.9646734595298767 }, { "label": "en", "prob": 0.9166396260261536 } ] }
654.3
6,106
https://iaminmyhead.com/2015/07/31/body-control-with-autism-and-a-haiku/?like_comment=2760&_wpnonce=3587edd981
iaminmyhead.com
1.001638
[ [ 564955177184, 564955183300 ] ]
null
true
[ 431992419 ]
false
2,608,948
Last week we posted about the Parents’ Education Program which is one of the ways the New Jersey Courts help parents who are going through a divorce or separation address custody and parenting time issues. The Parents’ Education Program provides parents with an introduction to the Court system and to the concepts connected with how to successfully make one household into two. Few issues are as emotionally charged as those dealing with children. The New Jersey Courts not only recognize this but offer parents Custody and Parenting Time Mediation to help them to control their own future and that of the children. It is generally accepted that families are happier if they are the ones making the plans. Custody and Parenting Time Mediation give the parties not only the opportunity to do make the plans, but the assistance of a trained mediator to assist them. The mediator addresses the different types of custody – legal and physical. Most often joint legal custody is recommended. Joint legal custody allows both parents to have equal say in significant issues such as health, education and general welfare. Both parents have a say regardless of whom the children live with the majority of the time. It is important to remember that divorcing your spouse does not mean divorcing your children. Both parents can be meaningfully involved in their children’s lives while living in separate houses, sometimes when living in separate states. Physical custody is connected to where the children spend their time. Whomever has the children the majority of the time has physical custody. That parent is designated at the Parent of Primary Residence and the other parent is designated as the Parent of Alternate Residence. The mediator will help the parties reach an agreement on weekday schedules, holiday schedules, summer vacations and birthdays. As well as any other event that might be significant to that family. An important part of mediation is its flexibility. Different families have different needs. There is no one plan fits all. Through mediation each family can craft a plan that serves them best. If mediation is successful, the mediator will prepare a Memorandum of Understanding, which will be sent to the parties, or their attorneys if they are represented by counsel. If the Memorandum of Understanding is accepted by the parties it will be incorporated into a Custody and Parenting Time Consent Order. This allows the parties to focus on other aspects of their litigation knowing that the issues surrounding their children have been resolved. There is substantial financial and emotional savings to the parties if they can resolve custody and parenting time through mediation. If you have any questions about custody and parenting time we at Iandoli & Edens, LLC will be happy to discuss your concerns with you, please call our firm at 908-879-9499.
{ "warc_headers": { "warc-record-id": "<urn:uuid:bcaf7ffe-76e1-4318-873f-43eda06ff129>", "warc-date": "2021-11-27T04:58:17Z", "content-type": "text/plain", "content-length": 2875, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:fc6f1f5c-045a-47a9-bf1e-fdd90879bd6a>", "warc-target-uri": "https://iandoliedensfamilylaw.com/2018/04/02/mediating-easter/", "warc-block-digest": "sha1:EWY4DUUKJFY5ON4AIJSTA3BR3AF7KYV3" }, "identification": { "label": "en", "prob": 0.963888943195343 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9666837453842163 }, { "label": "en", "prob": 0.9674491882324219 }, { "label": "en", "prob": 0.975630521774292 }, { "label": "en", "prob": 0.9635680913925171 }, { "label": "en", "prob": 0.8934326767921448 } ] }
331.3
2,867
https://iandoliedensfamilylaw.com/2018/04/02/mediating-easter/
iandoliedensfamilylaw.com
0
[]
null
true
[]
false
2,608,949
Celebrating the Day of the Kings | IBA Boston | Inquilinos Boricuas en Acción empowers and engages individuals and families to improve their lives through high-quality affordable housing, education, and arts programs. Menu mobile About Us Learn About IBA Who We Are Staff Directory Board of Directors Our Partners Sponsors Links Access Webmail Employment Opportunities Annual Reports Contact Us Programs Preschool Youth Development College and Financial Empowerment Arts Program Resident Services Community Technology Center Sustainable Housing & Development Events Events Festival Betances Tito Puente Latin Music Series Blog DONATE Cart Hear From Us Blog Categories Advice Culture People Education Uncategorized Editorial Advocacy Affordable Housing Music Preschool Youth Resident Services Financial Empowerment Arts Tech Center On December 15, 2014 In Culture, Editorial Celebrating the Day of the Kings In some countries, as in Puerto Rico, the most anticipated day by children at Christmas time comes with the celebration of Three Kings' Day, also known as "Feast of the Epiphany". Children don’t typically receive presents from Baby Jesus or Santa during Christmas in these countries, but from the three Kings on the 6th of January, who travel around the world on their beautiful camels. At IBA, we are happy to keep this tradition alive and celebrate this day in the homes of Puerto Rican families as well as those from other Hispanic countries. The night of January 5th, children put a box with grass under their beds or next to their bedroom door, and wait for the kings to arrive on their camels. Sometime during the night, the Kings come quietly; and while their camels eat the grass, they leave the gifts in the empty boxes. The next morning, the house is filled with joy with children enjoying their gifts. In the evening, families prepare a traditional dinner with family and friends. The story of the three Kings, Melchor, Gaspar, and Baltazar, has its origin in the stories of Jesus' birth. The story tells that the Kings came from the East on camels guided by the brightness of the star of Bethlehem. The kings arrived from Asia to Bethlehem after 13 days of travel to bring the newborn Savior gold, frankincense and myrrh as gifts. In Puerto Rico, it is only 16 days after Three Kings' Day that the holiday season ends with the famous Octavitas and festivities of San Sebastián Street in the city of San Juan. Some continue these parties as an extension of Christmas. This is why the Christmas holiday in Puerto Rico is known for being one of the longest in the world. Other Puerto Ricans celebrate the Promise of Kings during these holidays, a tradition in which a devotee asks for the intervention of a saint in a time of need. The person claims the Saints and makes the commitment to pay a promise for a granted favor. During this celebration the devotee's family also gathers to pray and sing carols. This event is also celebrated in the kitchen where delicious dishes (like rice with pigeon peas, sucker on the rod, pickled green banana and Coquito, a rich Puerto Rican eggnog made with coconut cream, white rum, evaporated milk, condensed milk, cinnamon and vanilla) are prepared to celebrate and enjoy with family. ...
{ "warc_headers": { "warc-record-id": "<urn:uuid:605df082-3032-4a09-b9ad-9c37f7918d62>", "warc-date": "2021-11-27T05:49:29Z", "content-type": "text/plain", "content-length": 3247, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:073f5684-9ee8-4dd9-b3a9-bf9ec22d3150>", "warc-target-uri": "https://ibaboston.org/blog/celebrating-the-day-of-the-kings", "warc-block-digest": "sha1:B2XDACYELGNNA6TFJXBSSN7HTU6HE6Y5" }, "identification": { "label": "en", "prob": 0.818149983882904 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8497356176376343 }, null, null, null, { "label": "en", "prob": 0.8324150443077087 }, { "label": "en", "prob": 0.8259999752044678 }, { "label": "en", "prob": 0.9459108710289001 }, null, { "label": "en", "prob": 0.8016711473464966 }, { "label": "en", "prob": 0.8766340017318726 }, null, null, { "label": "en", "prob": 0.8770071864128113 }, null, null, { "label": "en", "prob": 0.9521645903587341 }, null, { "label": "en", "prob": 0.8570390343666077 }, null, null, null, null, { "label": "en", "prob": 0.9663405418395996 }, { "label": "en", "prob": 0.9663405418395996 }, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9819713830947876 }, { "label": "en", "prob": 0.9361534714698792 }, null, null, { "label": "en", "prob": 0.9744852185249329 }, null, null, { "label": "en", "prob": 0.9521645903587341 }, { "label": "en", "prob": 0.829853355884552 }, null, null, null, null, { "label": "en", "prob": 0.9921558499336243 }, null, null, { "label": "en", "prob": 0.9689803719520569 } ] }
376.6
3,243
https://ibaboston.org/blog/celebrating-the-day-of-the-kings
ibaboston.org
0
[]
null
false
[]
false
2,608,950
You can tell when you have arrived at an individual book or document because its title, or an image of the front cover, appears at the top left of the page. In some collections, a table of contents appears, while in others (eg. when the paged image option is used) just the page number is shown, along with a box that allows you to select a new page and go forward and backward. In the table of contents, the current section heading is in bold face, and the table is expandable -- click on the folders to open or close them; click on the open book at the top to close it. Underneath is the text of the current section. When you have read through it, there are arrows at the bottom to take you on to the next section or back to the previous one. Below the title or front-cover image are some buttons. Click on EXPAND DOCUMENT to expand out the whole text of the current section, or book. If the document is large, this could take a long time and use a lot of memory! Click on EXPAND CONTENTS to expand out the whole table of contents so that you can see the titles of all chapters and subsections. Click on DETACH PAGE to make a new browser window for this document. (This is useful if you want to compare documents, or read two at once.) Open this bookshelf Go to the previous/next section How to search for particular words From the search page, you make a query in these simple steps: Specify what items you want to search Say whether you want to search for all or just some of the words Type in the words you want to search for Click the Begin Search button When you make a query, the titles of twenty matching documents will be shown. There is a button at the end to take you on to the next twenty documents. From there you will find buttons to take you on to the third twenty or back to the first twenty, and so on. Click the title of any document, or the little button beside it, to see it. A maximum of 50 is imposed on the number of documents returned. You can change this number by clicking the PREFERENCES button at the top of the page. Search Terms Whatever you type into the query box is interpreted as a list of words or phrases called "search terms." A term is a single word containing only letters and digits, or a phrase consisting of a sequence of words enclosed in double quotes ("..."). Terms are separated by white spaces. If any other characters such as punctuation appear, they serve to separate terms just as though they were spaces. And then they are ignored. You can't search for words that include punctuation. For example, the query Agro-forestry in the Pacific Islands: Systems for Sustainability (1993) will be treated the same as Agro forestry in the Pacific Islands Systems for Sustainability 1993 Query type There are two different kinds of query. Queries for all of the words. These look for documents (or chapters, or titles) that contain all the words you have specified. Documents that satisfy the query are displayed, in build order. Queries for some of the words. Just list some terms that are likely to appear in the documents you are looking for. Documents are displayed in order of how closely they match the query. When determining the degree of match, the more search term occurrences a document contains, the closer it matches; terms which are rare in the collection as a whole are more important than common ones; short documents match better than long ones. Use as many search terms as you like--a whole sentence, or even a whole paragraph. If you specify only one term, documents will be ordered by its frequency of occurrence. Scope of queries In most collections you are given a choice of different indexes to search. For example, there might be author or title indexes. Or there might be chapter or paragraph indexes. Generally, the full matching document is returned regardless of which index you search. If documents are books, they will be opened at the appropriate place. Changing your preferences When you click the PREFERENCES button at the top of the page you will be able to change some features of the interface to suit your own requirements. Collection preferences Some collections comprise several subcollections, which can be searched independently or together, as one unit. If so, you can select which subcollections to include in your searches on the Preferences page. Language preferences Each collection has a default presentation language, but you can switch to a different language if you like. You can also alter the encoding scheme used by Greenstone for output to the browser -- the software chooses sensible defaults, but with some browsers it may be necessary to switch to a different encoding scheme to ensure correct character display. All collections allow you to switch from the standard graphical interface format to a textual one. This is particularly useful for visually impaired users who use large screen fonts or speech synthesizers for output. Presentation preferences Depending on the particular collection, there may be several options you can set that control the presentation. Collections of Web pages allow you to suppress the Greenstone navigation bar at the top of each document page, so that once you have done a search you land at the exact Web page that matches without any Greenstone header. To do another search you will have to use your browser's "back" button. These collections also allow you to suppress Greenstone's warning message when you click a link that takes you out of the digital library collection and on to the Web itself. And in some Web collections you can control whether the links on the search results page take you straight to the actual URL in question, rather than to the digital library's copy of the page. Search preferences You can switch to an "advanced" query mode which allows you to combine terms using & (for "and"), | (for "or"), and ! (for "not"), using parentheses for grouping if desired. This allows you to specify more precise queries. It is possible to get a large query box, so that you can easily do paragraph-sized searching. It is surprisingly quick to search for large amounts of text. You can turn on the search history feature, which shows you your last few queries. This makes it easy to repeat slightly modified versions of previous queries. Finally, you can control the number of hits returned, and the number presented on each screenful. Legal | Crèdits | Contacte | OAI Records | Admin Biblioteca digital desenvolupada pel Servei de Biblioteca i Documentació, unitat de Digitalització i Accés Obert.
{ "warc_headers": { "warc-record-id": "<urn:uuid:ea6f2fb1-6f78-4317-968c-df6306614e49>", "warc-date": "2021-11-27T04:53:17Z", "content-type": "text/plain", "content-length": 6549, "warc-type": "conversion", "warc-identified-content-language": "eng,cat", "warc-refers-to": "<urn:uuid:381e5950-fdb7-4c45-b892-93bc1e0e1358>", "warc-target-uri": "https://ibdigital.uib.es/greenstone/library/collection/espanaNueva/page/help;jsessionid=5A686AF4B8EA1654E4DCADC0E9F30957", "warc-block-digest": "sha1:HRF4KLWXGTG7XOIOIJHMLVXYKU5RCVN3" }, "identification": { "label": "en", "prob": 0.7833247184753418 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.9243682622909546 }, { "label": "en", "prob": 0.9627475738525391 }, { "label": "en", "prob": 0.8777401447296143 }, { "label": "en", "prob": 0.8056724667549133 }, null, { "label": "en", "prob": 0.8644320964813232 }, null, null, { "label": "en", "prob": 0.9000546932220459 }, { "label": "en", "prob": 0.9627928137779236 }, null, { "label": "en", "prob": 0.9215669631958008 }, { "label": "en", "prob": 0.8774929046630859 }, null, { "label": "en", "prob": 0.9713918566703796 }, null, null, { "label": "en", "prob": 0.9943314790725708 }, null, null, { "label": "en", "prob": 0.9801627993583679 }, { "label": "en", "prob": 0.9327102899551392 }, { "label": "en", "prob": 0.9611546993255615 }, { "label": "en", "prob": 0.8466644883155823 }, { "label": "en", "prob": 0.9909629225730896 }, null, { "label": "en", "prob": 0.9520169496536255 }, { "label": "en", "prob": 0.9422506093978882 }, { "label": "en", "prob": 0.8654890656471252 }, { "label": "en", "prob": 0.9373818039894104 }, null, { "label": "en", "prob": 0.8935984969139099 }, null, { "label": "en", "prob": 0.9469096660614014 }, null, { "label": "en", "prob": 0.8367681503295898 }, null, { "label": "en", "prob": 0.9116058945655823 }, { "label": "en", "prob": 0.8325834274291992 }, null, null, { "label": "en", "prob": 0.955704391002655 }, { "label": "en", "prob": 0.9576948285102844 }, { "label": "en", "prob": 0.9365589618682861 }, null, { "label": "ca", "prob": 0.9854905009269714 } ] }
400.8
6,545
https://ibdigital.uib.es/greenstone/library/collection/espanaNueva/page/help;jsessionid=5A686AF4B8EA1654E4DCADC0E9F30957
ibdigital.uib.es
0
[]
null
false
[]
true
2,608,951
The Ibn Sina Institute in Sarajevo was founded in 1996. The main aim of this Institute is the study and research in the field of humanities and widening of cooperation in science, research and culture between Iranian and Bosnian scholars, thinkers and cultural-scientific institutes in the Balkans and the Western World. Save Save SFbBox by website University of Sarajevo University of Tehran Institute for History Faculty for Islamic Studies Iranian institute for Pshilosophy (IRIP) National Institute of Iran Dehkhoda Lexicon Institut Save Save Save Save Save Save The book "Islam in the cultural identity of Europe" has been promoted the Gazi Husrev-bey Library in Sarajevo Details Published: 16 April 2019 On Monday, April 15, 2019, starting at 14:00 in the Great Hall of the Gazi Husrev-bey's Library in Sarajevo, the book by academician Rešid Hafizovic "Islam in the Cultural Identity of Europe" was promoted. The hosts of the promotion were the publishers of this work Science Research Institute "Ibn Sina" in Sarajevo and Gazi Husrev-bey's library. Read more ... A two-day International Symposium "Religion and the Nations" was held in Zagreb Details Published: 01 April 2019 On Friday and Saturday, 29 and 30 March, 2019, at the Islamic Center in Zagreb, the International Symposium "Religion and the Nations" was held. More than thirty works by authors from Croatia, Bosnia and Herzegovina, Slovenia, the Vatican and Iran were presented at the symposium. The Symposium was organized by Mešihat of the Islamic Community in Croatia, Medzlis Islamic Community Zagreb, the Institute of Science and Research "Ibn Sina", the Faculty of Philosophy and Religious Studies of the University of Zagreb, the European Academy of Science and Arts and the Bosniak Academy of Sciences. Read more ... The book "40 years of the Islamic Revolution in Iran" has been published Details Published: 26 March 2019 On the occasion of the fortieth anniversary of the Islamic Revolution in Iran, the Science and Research Institute "Ibn Sina" in Sarajevo published a monograph from Hajrudin Somun and Zlatko Dizdarevic, a doyen of Bosnian-Herzegovinian diplomacy and journalism. Read more ... Publich lecture on the occasion of 40th anniversary of the Islamic Revolution in Iran Details Published: 28 February 2019 On Wednesday, February 27, 2019, a panel discussion on the topic "Forty Years of the Islamic Revolution in Iran" was held at the amphitheater of the Scientific Research Institute "Ibn Sina" in Sarajevo, starting at 6 pm. Main topics were roots, ideas and achievements of the Revolution, as well as its reflections on Iranian, regional, and global socio-historical and political event Read more ... An invitation to the public lecture On the occasion of the 40th anniversary of the Islamic Revolution in Iran Details Published: 21 February 2019 On Wednesday, February 27, 2019 On the occasion of the 40th anniversary of the Islamic Revolution in Iran, a public lecture will be held at the premises of the Science and Research Institute "Ibn Sina" in Sarajevo starting at 6 pm. Read more ... Page 6 of 25 1 2 3 ... 5 6 7 8 9 ... Online library/biblioteka Munir Drkić The multilingualism in Masnavi of Jalaluddn Rumi Marko P. Đurić The Bible and the Qur'an to one Gog Dr. Rouhollah Ghaderi Kangavari Islam and Human rigts Hajrudin Somun Zlatko Dizdarević A strategic analysis of the imposed war in Yemen The Ibn Sina Institute in Sarajevo was founded in 1996. The main aim of this Institute is the study and research in the field of humanities and widening of cooperation in science, research and culture between Iranian and Bosnian scholars, thinkers and cultural-scientific institutes in the Balkans and the Western World.
{ "warc_headers": { "warc-record-id": "<urn:uuid:69bb519e-38f0-4668-9a8d-2fd46cbcbfa5>", "warc-date": "2021-11-27T04:53:11Z", "content-type": "text/plain", "content-length": 3740, "warc-type": "conversion", "warc-identified-content-language": "eng,bos", "warc-refers-to": "<urn:uuid:cbc8bbd5-f544-43b4-910d-38d6f9552055>", "warc-target-uri": "https://ibn-sina.net/index.php/en/?start=25", "warc-block-digest": "sha1:YVWRXYWNUXZJ5FAKKH2VQCD3BIBPGOQP" }, "identification": { "label": "en", "prob": 0.7941251397132874 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9456462264060974 }, null, null, { "label": "en", "prob": 0.9972081184387207 }, { "label": "en", "prob": 0.8031787276268005 }, { "label": "en", "prob": 0.8719380497932434 }, null, { "label": "en", "prob": 0.8202766180038452 }, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9663046598434448 }, null, { "label": "en", "prob": 0.9672952890396118 }, { "label": "en", "prob": 0.9602629542350769 }, null, { "label": "en", "prob": 0.9759865999221802 }, null, { "label": "en", "prob": 0.9559810757637024 }, { "label": "en", "prob": 0.9355015754699707 }, null, { "label": "en", "prob": 0.976496696472168 }, null, { "label": "en", "prob": 0.9886165857315063 }, { "label": "en", "prob": 0.8025732636451721 }, null, null, null, { "label": "en", "prob": 0.990986168384552 }, { "label": "en", "prob": 0.972444474697113 }, null, { "label": "en", "prob": 0.8100898861885071 }, null, { "label": "en", "prob": 0.9914482235908508 }, { "label": "en", "prob": 0.9215950965881348 }, null, { "label": "en", "prob": 0.8243924379348755 }, null, null, null, { "label": "sh", "prob": 0.8840561509132385 }, null, null, null, null, null, { "label": "sh", "prob": 0.8840561509132385 }, null, null, null, null, { "label": "en", "prob": 0.9285269975662231 }, null, null, null, null, { "label": "en", "prob": 0.9009053111076355 }, { "label": "en", "prob": 0.9456462264060974 } ] }
632.5
3,734
https://ibn-sina.net/index.php/en/?start=25
ibn-sina.net
0.172469
[ [ 564955186177, 564955186498 ], [ 564955189596, 564955189919 ] ]
null
true
[ 167489252, 111630150, 431992423 ]
false
2,608,952
The paper takes on new questions about the expansion of the Brazilian continental shelf beyond the nowadays 200 nautical miles from its coastal baselines establishes by United Nations Convention on the Law of the Sea (UNCLOS) and the questions about oil and gas exploration from the seabed and the pre-salt region on the offshore coast. The huge new oil reserves discovered in very deep waters off Brazilian coast could turn the country into one of the biggest oil producers in the world and transform Brazil into a sizable exporter and win it a seat at the table of the world’s oil cartel. The UNCLOS, the international sea treaty, stipulates that continental shelf could be extended to a maximum 350 nautical miles, which would allow Brazil exploring and exploiting natural resources, oil and gas, in the outer continental shelf. For this to become reality some important steps have to be given and be study. First the Brazilian submission to the Commission on Limits of the Continental Shelf (CLCS), using as a criteria for determining the outer continental shelf, Article 76 and Annex II of UNCLOS. The CLCS can make recommendations regarding the information on an outer limit delineation required to be submitted to it by a coastal state. Besides that, it is important to analyze the effects of Article 82 of UNCLOS, that coastal states with shelf areas beyond 200 nautical miles would “make payments or contributions in kind in respect of the exploitation of non-living resources of the continental shelf” beyond 200 nm. These payments or contributions are made to the International Seabed Authority (ISA), which is to distribute the revenues to the developing, the least developed and land-locked countries. Therefore, there are important questions on the expansion on Brazilian continental shelf over sovereign rights for exploring and exploiting natural resources in this area and in relation with international community.
{ "warc_headers": { "warc-record-id": "<urn:uuid:480c5ce4-8571-4bae-a7e7-ad1312a9ab16>", "warc-date": "2021-11-27T06:35:19Z", "content-type": "text/plain", "content-length": 1937, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:b1344e9b-2f27-47de-952b-49ab50eeb08f>", "warc-target-uri": "https://ica2012.univie.ac.at/index.php?id=117157&no_cache=1&L=%271%20arachni_xss_in_tag%3Dd417557df7e3fbbb2cc9b49e5a1fc9f9%20blah%3D&tx_univietablebrowser_pi1%5Bbackpid%5D=117156&tx_univietablebrowser_pi1%5Bfkey%5D=1106&tx_univietablebrowser_pi1%5Buid%5D=10611", "warc-block-digest": "sha1:KIRBL64U7AN52UYZWYWJGAEA2DH7FX2K" }, "identification": { "label": "en", "prob": 0.9214879870414734 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9214879870414734 } ] }
249.5
1,931
https://ica2012.univie.ac.at/index.php?id=117157&no_cache=1&L=%271%20arachni_xss_in_tag%3Dd417557df7e3fbbb2cc9b49e5a1fc9f9%20blah%3D&tx_univietablebrowser_pi1%5Bbackpid%5D=117156&tx_univietablebrowser_pi1%5Bfkey%5D=1106&tx_univietablebrowser_pi1%5Buid%5D=10611
ica2012.univie.ac.at
0
[]
null
false
[]
false
2,608,953
Happy Easter! Easter the past two years has been anything but normal due to the pandemic. Parents have had to do their best to keep Easter family traditions going even though celebrating with extended family and friends is still being frowned upon. The kids always enjoy dying Easter eggs, going on Easter egg hunts, making … Read more Categories parenting 13 Comments Blue’s Clues Inspired Deviled Eggs March 31, 2021 by icecreamnstickyfingers Have you dyed Easter eggs with your kids yet? Dying Easter eggs is one of the most popular Easter family traditions that has been passed down from generation. But what do you do with all the leftover hard-boiled eggs? Do you make egg salad sandwiches, top your salads with egg slices or crumbles, add to … Read more Categories Food 12 Comments DIY Eucalyptus and Peppermint Sugar Scrub March 31, 2021 by icecreamnstickyfingers Do you suffer from allergies? Spring allergies are in full bloom and it has my allergies going crazy. Even though I take a daily antihistamine, it doesn’t always stop my sinuses from feeling the effects of all the pollen floating through the air. When my allergies are flaring up, I found that this Eucalyptus and … Read more Categories Beauty Leave a comment Easter Family Traditions to Start this Year March 25, 2021 by icecreamnstickyfingers Are you scrambling to find items to put in your child’s Easter basket? There are always so many pre-made Easter baskets that you can buy already made up by theme. However, these are usually filled with junk toys or items that your child won’t play with. The average family spends $150 dollars to just fill their children’s … Read more Categories parenting 12 Comments Free Printable Sea Creature Activity Sheets March 23, 2021 by icecreamnstickyfingers Does your little one love sea creatures? Which one does your child love the most a whale, crab, turtle, fish, or another sea creature? My son loves to go to the beach and spot his favorite sea creatures. If you don’t live near the beach, teaching your child about the animals that can be found … Read more Categories parenting Leave a comment How to Make a Dino Suncatcher March 18, 2021 by icecreamnstickyfingers Spring is here! The trees are lined with pretty blooms, the weather keeps drastically changing, and spring break is almost over with. Boohoo! Have your kids had their spring break yet? Are you looking for some fun ideas to keep your child busy? We have shared several fun craft ideas already. You can make Blue’s … Read more Categories Movies, parenting Leave a comment Best Way to Teach Your Child About Emotions March 16, 2021 by icecreamnstickyfingers Toddlers throw temper tantrums or have a meltdown because they don’t know how to properly communicate how they are feeling. Tantrums and meltdowns typically start when your child can’t get what they want. But that isn’t the only time it can happen. As a parent, it can be super embarrassing when your child decides to … Read more Categories Movies, parenting Leave a comment Easy Unicorn Sugar Cookies March 16, 2021 March 11, 2021 by icecreamnstickyfingers Last week, we went to the grocery store to pick up a few items that we needed. As I was walking down the isle with the flour, sugar, chocolate chips, and other desserts, my eye was drawn to the unicorn chocolate chips. I tossed them into my cart so that I could make some delicious … Read more Categories Food Leave a comment Preschool St. Patrick’s Day Playdough Mats March 11, 2021 by icecreamnstickyfingers Do your preschoolers enjoy playing with playdough? Playdough is a great stem activity and your child is learning while they play. Your child can use the playdough to mold it into shapes, use a rolling pan and cookie cutters to make fake cookies, or even use these fun St. Patrick’s day playdough printable worksheets. Item’s … Read more Categories parenting Leave a comment Blue’s Clues DIY Drum Craft March 10, 2021 March 9, 2021 by icecreamnstickyfingers Are you looking for a fun craft to make with your Blue’s Clue fan? Blue has done it again and has a DIY Drum craft that your child. The DIY Drum craft with Blue was inspired by the new DVD that was released February 2, 2021. Items Needed to Make The Blue’s Clues DIY Drum … Read more Categories Movies, parenting Tags Blue's Clues Leave a comment Post navigation Older posts Newer posts ← Previous Page1 … Page3 Page4 Page5 … Page28 Next → Search for: Pages About Us Disclosure Privacy Policy Subscribe to Our Blog! Subscribe * indicates required Email Address * First Name Last Name Birthday / ( mm / dd ) Recent Posts Frugal Tips to Hygge Your Home For the Winter Free Halloween Dot to Dot Activity Sheets Blue’s Clues Celebration Milkshake Best High School Class Ring Alternatives 3 Tips for Staying Safe in the Sun We Do Partner with Amazon Services LLC Associates Program The owner of this website is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon properties including, but not limited to, amazon.com, endless.com, myhabit.com, smallparts.com, or amazonwireless.com.
{ "warc_headers": { "warc-record-id": "<urn:uuid:58d4c6a4-4827-4b42-9564-a9301691dd38>", "warc-date": "2021-11-27T04:53:33Z", "content-type": "text/plain", "content-length": 5244, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:540db905-f409-47b5-b48f-8602f7ceb0b8>", "warc-target-uri": "https://icecreamnstickyfingers.com/page/4/", "warc-block-digest": "sha1:ZXJSJXKC5FKLGMLXXLS3234L36YLXLSD" }, "identification": { "label": "en", "prob": 0.7580181956291199 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9831427931785583 }, null, null, { "label": "en", "prob": 0.9364150166511536 }, { "label": "en", "prob": 0.929696798324585 }, null, null, { "label": "en", "prob": 0.9364150166511536 }, { "label": "en", "prob": 0.941175103187561 }, null, { "label": "en", "prob": 0.8244941830635071 }, { "label": "en", "prob": 0.9536298513412476 }, { "label": "en", "prob": 0.9768752455711365 }, null, null, { "label": "en", "prob": 0.9560495018959045 }, { "label": "en", "prob": 0.9326338171958923 }, null, null, { "label": "en", "prob": 0.9403340220451355 }, { "label": "en", "prob": 0.9720674753189087 }, null, null, { "label": "en", "prob": 0.9488149285316467 }, { "label": "en", "prob": 0.8856191039085388 }, null, null, { "label": "en", "prob": 0.9714180827140808 }, { "label": "en", "prob": 0.9806641936302185 }, null, null, { "label": "en", "prob": 0.9496468901634216 }, { "label": "en", "prob": 0.9365097284317017 }, null, null, { "label": "en", "prob": 0.9607941508293152 }, { "label": "en", "prob": 0.9842213988304138 }, null, null, { "label": "en", "prob": 0.8535478711128235 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "fr", "prob": 0.8004553318023682 }, { "label": "en", "prob": 0.8328146934509277 }, null, null, null, { "label": "en", "prob": 0.8766669034957886 }, { "label": "en", "prob": 0.8275538086891174 }, { "label": "en", "prob": 0.8711445927619934 }, { "label": "en", "prob": 0.9411255717277527 } ] }
1,096
5,182
https://icecreamnstickyfingers.com/page/4/
icecreamnstickyfingers.com
0
[]
null
false
[]
true
2,608,954
Awards for Drs. Alberto Curto, Philipp Hauke and Marc Jofre. The ICFO PhD Thesis Award, now in its fifth year, aims to recognize particularly distinguished theses presented at ICFO, whose research progress at the institute has proven to be highly creative and ambitious. This year, awards were given to three students who defended their thesis in 2013, for their contributions to Experimental Physics, Theoretical Physics and Industrial research. The winners of the ICFO Thesis Award are: Dr. Alberto Curto who did his PhD at ICFO with Prof. Niek van Hulst, for his contributions to experimental research. Dr. Philipp Hauke who did his PhD at ICFO with Prof Maciej Lewenstein, for his contribution to theoretical research. Dr. Marc Jofre who did his PhD at ICFO with Prof. Valerio Pruneri, for his contribution to industrial research. We congratulate Albert, Philipp and Marc for the dedication, hard work, and scientific insight that have earned them this ICFO PhD Thesis Award.
{ "warc_headers": { "warc-record-id": "<urn:uuid:837077ae-fdfe-44e1-b00c-b2163c05ffb6>", "warc-date": "2021-11-27T05:15:23Z", "content-type": "text/plain", "content-length": 979, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:0ed5a371-81eb-4fcd-ba79-7dff4454069e>", "warc-target-uri": "https://icfo.es/newsroom/news/article/2562", "warc-block-digest": "sha1:DBR6NHB5NRRXNC7KNTK5VFHHSLQFZULG" }, "identification": { "label": "en", "prob": 0.9674849510192871 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9597285985946655 }, { "label": "en", "prob": 0.9655993580818176 }, { "label": "en", "prob": 0.9844333529472351 }, { "label": "en", "prob": 0.988273561000824 }, { "label": "en", "prob": 0.98865807056427 }, { "label": "en", "prob": 0.9453252553939819 } ] }
522.1
979
https://icfo.es/newsroom/news/article/2562
icfo.es
0
[]
null
false
[]
false
2,608,955
Beach House takes advantage of its location on a narrow strip of land between ocean and marsh along Revere’s coastline, engaging great water views for all 234 apartments. The “S-shaped” plan carves out rooftop courtyards facing both east and west, and capturing both morning and evening sun. A tracery of decks, highlighted in an ocean blue color, playfully capture corners and array in wave-like forms within the courtyards. Resident amenities array around these courtyards and include a pool, a rooftop terrace with scenic ocean views, designated grilling areas, a 2,000-square-foot gym and a movie room.
{ "warc_headers": { "warc-record-id": "<urn:uuid:da9fc66a-0958-4ec7-8f66-794e42e04929>", "warc-date": "2021-11-27T05:49:45Z", "content-type": "text/plain", "content-length": 612, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:61feec5f-9274-4676-8fb5-95c4863b6dbe>", "warc-target-uri": "https://iconarch.com/beach-house", "warc-block-digest": "sha1:57GXDBKUGN53BKSOH4OFK7KXFHKP7J35" }, "identification": { "label": "en", "prob": 0.9375464916229248 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9375464916229248 } ] }
467
606
https://iconarch.com/beach-house
iconarch.com
0
[]
null
false
[]
false
2,608,956
Part of The IDEAL Concept and magnetically compatible with our wallets and mounts Swedish design, always on trend Perfectly fits your phone to provide protection and a great look Compatible with: iPhone SE/8/7/6/6s SKU: IDFCHS-I7-86 IDEAL > Printed Case 79.9940 AUD Golden Glamour iPhone 6/6s Add to cart 1 year warranty Fast delivery Extended returns until 31/1/22 White marble is incredibly stylish, and its combination of white and light grey pairs perfectly to combine with different accent colors. The marble is often characterized by the floating texture that occurs from the movement that is created when limestone is exposed to pressure and high temperatures. “Golden Glamour” represents the original movement along with elements of glittering gold. A timeless and glamorous case that is guaranteed to bring elegance to any piece in your wardrobe. SUBSCRIBE TO OUR NEWSLETTER Subscribe to our newsletter and be the first to hear about exclusive offers and product releases. You can unsubscribe at any time, and we always keep your information safe and secure. Send I hereby agree to the terms and conditions for digital communication in accordance with the privacy policy. Customer service Contact us FAQ Returns About IDEAL OF SWEDEN About us Sustainability Care Guide Open positions Corporate Information Terms and conditions Stores Privacy policy Become an Ambassador Choose country: Australia AustraliaAustriaBelgiumCanadaDanskDeutschEspañolEUFrançaisGlobalHong KongItalianoJapanKoreaNederlandsNorskPolskiRussiaSaudi ArabiaSingaporeSuomiSvenskaSwitzerlandUnited Arab EmiratesUnited KingdomUnited StatesΕλληνικά Accessories of Attraction IDEAL OF SWEDEN’s products are designed and developed in Sweden, a pioneering country in both creativity and new thinking, and sustainable environmental aspects. We have developed a unique ecosystem of compatible magnetic products such as mobile cases, wallets, power banks, lightning cables, and different kinds of mounts which all make the use of mobile devices easier. Our product collection is made to be adjusted to different situations and occasions without sacrificing design or style. We constantly update our products so that we can complete current trends within interior and fashion and we always have quality, functionality, and high standard as our prime keywords.
{ "warc_headers": { "warc-record-id": "<urn:uuid:1c9152b3-d93e-4486-8961-d271681655ea>", "warc-date": "2021-11-27T06:08:00Z", "content-type": "text/plain", "content-length": 2342, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:93061055-5f36-4384-a6d8-64bba5d31d1a>", "warc-target-uri": "https://idealofsweden.com.au/p/fashion-case-hannalicious-iphone-66s-golden-glamour-w", "warc-block-digest": "sha1:52MPTB5A47GDD6L42URFENSZYTML2NT7" }, "identification": { "label": "en", "prob": 0.6944333910942078 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9155240058898926 }, { "label": "en", "prob": 0.8638563752174377 }, null, null, null, { "label": "en", "prob": 0.8140243291854858 }, null, null, null, { "label": "en", "prob": 0.8495318293571472 }, null, null, null, { "label": "en", "prob": 0.9542554020881653 }, null, { "label": "en", "prob": 0.9482182264328003 }, { "label": "en", "prob": 0.9486904740333557 }, null, { "label": "en", "prob": 0.9346817135810852 }, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8933761715888977 }, null, null, null, null, null, null, { "label": "en", "prob": 0.8445732593536377 }, { "label": "en", "prob": 0.9436792135238647 } ] }
1,024.7
2,326
https://idealofsweden.com.au/p/fashion-case-hannalicious-iphone-66s-golden-glamour-w
idealofsweden.com.au
0
[]
null
false
[]
true
2,608,957
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
{ "warc_headers": { "warc-record-id": "<urn:uuid:4269bd77-9004-4228-b377-3677739b7d31>", "warc-date": "2021-11-27T06:35:28Z", "content-type": "text/plain", "content-length": 116, "warc-type": "conversion", "warc-identified-content-language": "deu,eng", "warc-refers-to": "<urn:uuid:898d3c3f-799c-4b19-9a09-a115e15aea50>", "warc-target-uri": "https://ifr-ev.de/tag/digitale-soziale-medien/", "warc-block-digest": "sha1:IGC2D6R37SARCALGEJ54HF25EI5DYFPM" }, "identification": { "label": "en", "prob": 0.8898295760154724 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8898295760154724 } ] }
779.2
116
https://ifr-ev.de/tag/digitale-soziale-medien/
ifr-ev.de
0
[]
null
false
[]
true
2,608,958
(Bloch & Schneider) (formerly Chrysophrys auratus or Pagurus major); SPARIDAE FAMILY; also called pink snapper, Widely distributed off the southern half of Australia, Lord Howe and Norfolk Islands, and the northern two thirds of New Zealand. To avoid confusion with snappers in the family Lutjanidae, the American Fisheries Society refers to Pagrus auratus as a squirefish. In Australia, the names cockney, red bream, squire, and snapper or pink snapper are used for progressively larger fish. The name old man snapper refers to very large individuals with a distinctive bony hump on the head and a fleshy bulge on the snout. The coloration of fresh caught snapper is generally reddish pink with a golden sheen, but color varies somewhat with habitat. Reef dwelling fish are much darker reddish brown where open water fish are a brighter pink, and snapper from soft muddy bottoms can be pale silvery pink. They inhabit a variety of habitats at all ages, and a moderate depth range as adults. They are coastal fish, commonly found from 20 100 meters but may be right at the surface or down to at least 656 ft (200 m). They reportedly attains a weight of 43 lb (19.5 kg). Fishing methods vary from surfcasting and jetty fishing to drift fishing, jigging or anchoring and using burley either presented at the surface or attached to an anchor chain. Hooks vary with the size of the fish targeted, from 4/0 for small snapper to 8/0 for real monsters. The hook must be razor sharp for the hard mouthed snapper. They are omnivorous feeders, eating nearly any kind of marine animals, making bait selection fairly easy. Pilchards, skipjack tuna, kahawai, bonito, soldier crabs, or something tough like octopus or cuttlefish work well, but the best baits (and burley) should be reasonably fresh.
{ "warc_headers": { "warc-record-id": "<urn:uuid:c5646a5d-0197-42da-a769-a61c8d5fb9ce>", "warc-date": "2021-11-27T05:39:54Z", "content-type": "text/plain", "content-length": 1785, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:7e84739e-d88b-4f0d-a046-859741b7b65d>", "warc-target-uri": "https://igfa.org/game-fish-database/?search_type=SpeciesID&search_term_1=221", "warc-block-digest": "sha1:LP4VLDRMR4E5CFNMPBJBAIIVWZIGZZ7M" }, "identification": { "label": "en", "prob": 0.9122861623764038 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.8077999949455261 }, { "label": "en", "prob": 0.9554850459098816 }, { "label": "en", "prob": 0.8959078192710876 }, { "label": "en", "prob": 0.9227823615074158 }, { "label": "en", "prob": 0.9669483304023743 }, { "label": "en", "prob": 0.9041457772254944 } ] }
430.5
1,785
https://igfa.org/game-fish-database/?search_type=SpeciesID&search_term_1=221
igfa.org
0
[]
null
false
[]
false
2,608,959
NOT FOR DISTRIBUTION, DIRECTLY OR INDIRECTLY, IN WHOLE OR IN PART OR INTO THE UNITED STATES, CANADA, AUSTRALIA, JAPAN, THE REPUBLIC OF IRELAND OR SOUTH AFRICA OR TO U.S. PERSONS Weiss Korea Opportunity Fund Ltd. (the “Company”) (a closed-ended investment scheme incorporated with limited liability under the laws of Guernsey with registered number 56535) LEI 213800GXKGJVWN3BF511 Publication of Net Asset Value (“NAV”) Date of Release 15th September 2021 Name NAV per share (Pence Per Share) ISIN NAV DATE Weiss Korea Opportunity Fund Ltd. 254.51 GG00B933LL68 14th September 2021 Commentary: As at 14th September 2021, the Company’s net assets were £176.39 million. Important Notice: The Net Asset Value figure in this announcement is an estimate, and is based on unaudited estimated valuations. Estimated results, performance or achievements may differ materially from any actual results, performance or achievements. No person has authority to give any representations or warranties (express or implied) as to, or in relation to, the accuracy, reliability or completeness of the information in this release, and all liability therefor is expressly disclaimed. Accordingly, none of the Company, the Investment Manager, the Administrator, or any of its/their respective members, directors, officers, agents, employees or advisers take any responsibility for, or will accept any liability whether direct or indirect, express or implied, contractual, tortious, statutory or otherwise, in respect of, the accuracy or completeness of the information or for any loss, howsoever arising, from the use of this release. Except as required by applicable law, the Company expressly disclaims any obligations to update or revise the above estimates to reflect any change in expectations, new information, subsequent events or otherwise. Dividends: As noted in the Admission Document, dividends from Korean preferred shares are not accounted for or accrued in the NAV until dividends are received by the Company. Recent changes to dividend policies of certain companies owned by the fund, such as increasing dividend levels or more frequent dividend payouts, may make it more difficult to accurately estimate dividend amounts in a given period prior to that dividend being received by the Company. As a result of the foregoing, the NAV published above may not reflect all income contractually due to the Company as at the stated NAV date. Please refer to the Admission Document for more information regarding the announcement and payment of Korean dividends. Enquiries: Northern Trust International Fund Administration Services (Guernsey) Limited Andy Le Page Tel: +44 (0) 1481 745405 Copyright r 15 PR Newswire Weiss Korea Opportunity (LSE:WKOF) Historical Stock Chart From Oct 2021 to Nov 2021 Weiss Korea Opportunity (LSE:WKOF) Historical Stock Chart From Nov 2020 to Nov 2021 Weiss Korea Opportunity (LSE:WKOF) Intraday Stock Chart Saturday 27 November 2021 Your Recent History LSE GKP Gulf Keyst.. LSE QPP Quindell FTSE UKX FTSE 100 LSE IOF Iofina FX GBPUSD UK Sterlin.. Stocks you've viewed will appear in this box, letting you easily return to quotes you've seen previously.
{ "warc_headers": { "warc-record-id": "<urn:uuid:1127ae05-16ff-413f-bda2-b06fdd380e23>", "warc-date": "2021-11-27T05:23:33Z", "content-type": "text/plain", "content-length": 3180, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:f02f1bcf-685a-44f0-9ec3-8d073fda04f5>", "warc-target-uri": "https://ih.advfn.com/stock-market/london/WKOF/stock-news/86058229/weiss-korea-opportunity-fund-net-asset-values", "warc-block-digest": "sha1:EDTZWPIYPWTWQRAUETQV52SYDGM7YIZR" }, "identification": { "label": "en", "prob": 0.6665467619895935 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ null, null, null, { "label": "en", "prob": 0.9898961186408997 }, { "label": "en", "prob": 0.9604880213737488 }, null, null, null, { "label": "en", "prob": 0.9683197736740112 }, null, null, { "label": "en", "prob": 0.9854386448860168 }, { "label": "en", "prob": 0.9539381861686707 }, { "label": "en", "prob": 0.9922744631767273 }, null, { "label": "en", "prob": 0.8692882657051086 }, null, { "label": "en", "prob": 0.9662759304046631 }, { "label": "en", "prob": 0.922930896282196 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9617763757705688 }, null, null, { "label": "en", "prob": 0.9662640690803528 }, null, null, { "label": "en", "prob": 0.9300782084465027 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9523270726203918 }, null, null, null, null, { "label": "ja", "prob": 0.8813196420669556 }, null, null, { "label": "en", "prob": 0.9860514402389526 } ] }
1,166.4
3,169
https://ih.advfn.com/stock-market/london/WKOF/stock-news/86058229/weiss-korea-opportunity-fund-net-asset-values
ih.advfn.com
0.437362
[ [ 564955190166, 564955190271 ], [ 564955190718, 564955190843 ], [ 564955191252, 564955191377 ], [ 564955191534, 564955191642 ], [ 564955191760, 564955191912 ], [ 564955191923, 564955192197 ], [ 564955192208, 564955192312 ], [ 564955192349, 564955192471 ], [ 564955192825, 564955193096 ] ]
null
true
[ 417390739, 51976406, 431992431 ]
false
2,608,960
Designed by — Powered by — Hosted by — Copyright & DMCA — Disclaimer & Privacy Policy — Cookie Policy Follow @iheartwatsonnet All graphics and original content belong to iheartwatson.net. All images are copyright to the their respective owners, the webmasters claim no ownership and recieve no finacial gain for this site. We do not support stalkerazzi of any matter. For more information, please check our disclaimer.
{ "warc_headers": { "warc-record-id": "<urn:uuid:53143203-6b49-4c16-bf7e-c4234fb80893>", "warc-date": "2021-11-27T04:52:50Z", "content-type": "text/plain", "content-length": 428, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:180c8eab-7e08-448d-a345-3c73c4603ad9>", "warc-target-uri": "https://iheartwatson.net/gallery/displayimage.php?album=topn&cat=0&pid=42078", "warc-block-digest": "sha1:3Z3IRZH3B25EWCN2FTHNX4AQWEGEUZVP" }, "identification": { "label": "en", "prob": 0.8056643009185791 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9344764947891235 }, null, { "label": "en", "prob": 0.8201578855514526 } ] }
1,014.8
418
https://iheartwatson.net/gallery/displayimage.php?album=topn&cat=0&pid=42078
iheartwatson.net
1.035885
[ [ 564955193097, 564955193530 ] ]
null
true
[ 431992432 ]
false
2,608,961
IHPI builds upon and accelerates the outstanding health services research and health policy work of multiple University of Michigan centers, programs, and academic units across three campuses, as well as partners from local research groups. Breadcrumb Home Our Experts & Partners Share This Page image/svg+xml image/svg+xml image/svg+xml image/svg+xml rgb(255,255,255) rgb(255,255,255) Search the IHPI member directory below to explore the broad range of expertise in health services research and health policy represented by our members, or contact us at ihpifeedback@umich.edu.
{ "warc_headers": { "warc-record-id": "<urn:uuid:0b9a49be-136c-4c81-ae4d-92a21af78cfa>", "warc-date": "2021-11-27T06:26:27Z", "content-type": "text/plain", "content-length": 579, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:934b38d8-7505-4b15-b33b-7fd1fb8edd95>", "warc-target-uri": "https://ihpi.umich.edu/our-experts?f%5B0%5D=affiliation%3A1208&f%5B1%5D=population%3A982&f%5B2%5D=priorities%3A2669&f%5B3%5D=research%3A967&amp%3Bf%5B1%5D=research%3A949", "warc-block-digest": "sha1:OLXB3YXAU4YFUOAIXX6CI4G5V4QZF5WA" }, "identification": { "label": "en", "prob": 0.7180259227752686 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.9641591906547546 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9253606796264648 } ] }
1,430.8
579
https://ihpi.umich.edu/our-experts?f%5B0%5D=affiliation%3A1208&f%5B1%5D=population%3A982&f%5B2%5D=priorities%3A2669&f%5B3%5D=research%3A967&amp%3Bf%5B1%5D=research%3A949
ihpi.umich.edu
0
[]
null
false
[]
true
2,608,962
IHPI builds upon and accelerates the outstanding health services research and health policy work of multiple University of Michigan centers, programs, and academic units across three campuses, as well as partners from local research groups. Breadcrumb Home Our Experts & Partners Share This Page image/svg+xml image/svg+xml image/svg+xml image/svg+xml rgb(255,255,255) rgb(255,255,255) Search the IHPI member directory below to explore the broad range of expertise in health services research and health policy represented by our members, or contact us at ihpifeedback@umich.edu.
{ "warc_headers": { "warc-record-id": "<urn:uuid:7648cf15-3fe4-48bb-aeb1-e52b3fce7607>", "warc-date": "2021-11-27T06:45:12Z", "content-type": "text/plain", "content-length": 579, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:cd54a120-2498-42dd-847b-35ff8052ff92>", "warc-target-uri": "https://ihpi.umich.edu/our-experts?f%5B0%5D=appointment%3A1031&f%5B1%5D=research%3A939&amp%3Bf%5B1%5D=condition%3A747&amp%3Bamp%3Bf%5B1%5D=research%3A916", "warc-block-digest": "sha1:OMMMVWJPSCSCQQ35T4UKL4HJBMZBPU3F" }, "identification": { "label": "en", "prob": 0.7180259227752686 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.9641591906547546 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9253606796264648 } ] }
1,430.8
579
https://ihpi.umich.edu/our-experts?f%5B0%5D=appointment%3A1031&f%5B1%5D=research%3A939&amp%3Bf%5B1%5D=condition%3A747&amp%3Bamp%3Bf%5B1%5D=research%3A916
ihpi.umich.edu
0
[]
null
false
[]
true
2,608,963
IHUB GLOBAL is a proud supporter of VivaKids, a non-profit birthed in 2007 to serve the needs of underprivileged children in the Dominican Republic and around the world. Our entire community can be proud of making a difference in a child’s world with every iHUB! Meet The Team Meet The Team Below Are The Core Staff Members Of Our Team. iHub has gathered a team with a diverse, yet complementary, skillsets from marketing to manufacturing to serve our Affiliates and Hosts. Founder / CEO Rick Cotton Rick has started and built several companies including eXfuze (KZ1) which to date has done over 300 million in sales and growing. Rick is also passionate about serving children around the world. Rick served as a missionary for 10 years overseas in Ukraine, Venezuela, Mexico and Dominican Republic and has worked in over 40 countries. Rick has an extensive knowledge in what it takes to build a company on a solid foundation and leads the team with a passion for people and a vision to make iHub the leader in the world of IOT. Founder / VP Marketing Chuck Hanson I've had an amazing journey and my goal at this stage is to help as many people as I can live the kind of life that I've had. NO BOSS (except my wife & Rocky my dog!). I owned an advertising business for 16 years that I built from the ground up. I decided to sell that business in 1987 because I was exposed to NETWORK MARKETING. I have had the great fortune to live a dream life through my success all over the world. In mid 2020 I was introduced to HELIUM and the HELIUM HOTSPOT. After spending a few days looking at what I thought could be something that I had been looking for the past 50 years I asked my good friend Rick Cotton that I've known for 20+ years to take a look. He came back with the same conclusion - we've got to take this to all the people in the world we know!! So the journey begins. I know that I can eclipse what I've done in the past 33 years in the next 3-4 years because we not only have the perfect product we have the perfect opportunity and I look forward to serving as many people as I can in iHub. Co-Founder / VP of Business Development Michael Stern Michael has been an entrepreneur, network builder, consultant, advisor and owner in the direct sales and networking space for over 40 years. His passion has always been to find leading edge innovative products and technologies and successfully bringing them to market. He focuses on relationship building and teamwork to assist others in achieving their goals and dreams, as well as building empowering business relations, strategies and alliances to create mutual business success. He and his wife Esperanza have worked together building companies as well as their own for 25 years. Co-Founder / CTO John Crim John has a degree in Computer Science with over 20 Years experience in the Information Technology field. Building unique operations from start to finish. John has worked in fast growth companies understands the operations of how to integrate systems in a fast-paced environment. Goal driven to help over 2.5 Million kids struggling with hunger around the world through the love of Christ. Looking to create a legacy to fulfill the needs of others beyond what one person can do alone. Looking forward to building a strong team of passionate people wanting to make a difference in the world. CFO Ilija Cankovic Ilija Cankovic has been a financial professional with more than 15 years as a CFO for various companies. Before his financial executive positions Mr. Cankovic worked for Ernst Young and BDO as an auditor with practical experience in M&A and investor relations, performance management, corporate finance, financial reporting and capital management. Senior Software Developer Brandon Lis Brandon is a high-level full stack software and web application developer with experience in a multitude of languages / technologies ranging from PHP to Javascript. He specializes in highly scalable backend frameworks and complex database structures. He has vast experience with API’s and integrations across many industries such as crypto blockchains, medical (EMR’s) and laboratory (LIS), logistics, transportation, and financial systems. Along with app development, Brandon has over 15 years of experience in managing and administrating cutting-edge infrastructures and server virtualization.
{ "warc_headers": { "warc-record-id": "<urn:uuid:6bb8edf5-e500-41d9-bfe5-eb6867c1a62b>", "warc-date": "2021-11-27T05:15:40Z", "content-type": "text/plain", "content-length": 4356, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:08f8475f-6eec-442c-b6fc-f26143e5e336>", "warc-target-uri": "https://ihubcash.ihub.global/site/about-us/index.html", "warc-block-digest": "sha1:RYYRIZGUXDFTLH76POD6QK2H57ERTJAA" }, "identification": { "label": "en", "prob": 0.9298100471496582 }, "annotations": [ "header" ], "line_identifications": [ { "label": "en", "prob": 0.9620891809463501 }, { "label": "en", "prob": 0.9022678136825562 }, null, null, { "label": "en", "prob": 0.9511232972145081 }, { "label": "en", "prob": 0.9726150631904602 }, { "label": "en", "prob": 0.8545366525650024 }, null, { "label": "en", "prob": 0.9961246848106384 }, { "label": "en", "prob": 0.9866440892219543 }, { "label": "en", "prob": 0.9555814266204834 }, null, null, { "label": "en", "prob": 0.9925434589385986 }, { "label": "en", "prob": 0.9882451295852661 }, { "label": "en", "prob": 0.8427947759628296 }, null, { "label": "en", "prob": 0.9641027450561523 }, { "label": "en", "prob": 0.9763197302818298 }, { "label": "en", "prob": 0.9818446040153503 }, { "label": "en", "prob": 0.9997331500053406 }, { "label": "en", "prob": 0.8416664600372314 }, null, { "label": "en", "prob": 0.9187330603599548 }, { "label": "en", "prob": 0.978140115737915 }, { "label": "en", "prob": 0.9203580021858215 }, { "label": "en", "prob": 0.9328440427780151 }, { "label": "en", "prob": 0.8277780413627625 }, null, { "label": "en", "prob": 0.9738191962242126 }, null, null, { "label": "en", "prob": 0.8985461592674255 }, { "label": "en", "prob": 0.9343388676643372 }, { "label": "en", "prob": 0.9188738465309143 } ] }
419.8
4,350
https://ihubcash.ihub.global/site/about-us/index.html
ihubcash.ihub.global
0
[]
null
false
[]
true
2,608,964
It is commonly witnessed that two categories of people experience problems in regard to the acquisition of knowledge. The first category of people, are those who are hasty in disseminating the information they receive whether obtained through the internet, radio stations or self-study. They are totally disconcerned about verifying the authenticity of the information or fully comprehending it in its correct perspective. Generally mass confusion is created amongst the general public on account of the hastiness of this category. Story of a scholar There was once a scholar who forbade his neighbours from using his water to irrigate their gardens. When questioned regarding this, he presented the following Hadith of Rasulullah (Sallallahu Alayhi Wasallam) in substantiation: It is not permissible for one who believes in Allah and the Last Day to irrigate someone else’s crop with his own water. The Hadith actually implies that, if someone receives a pregnant captive woman in booty, then he is prohibited from copulating with her until she gives birth. The serious blunder caused by the scholar was squarely due to not understanding the Hadith in its correct perspective. The second category of people, are those who remain satisfied and content with the little knowledge they possess. They do not perceive the need to increase their knowledge of Deen, nor to refer to the Ulama. They feel quite complacent with the basic knowledge they have. Furthermore, due to their knowledge being unsound and incomplete, they perpetually remain in doubt. Tags Acquisition of Knowledge Hadith Malfoozaat Mufti Ebrahim Salejee Previous in category The Need for Understanding Deeni Issues in their Correct Perspective Next in category Two Sunnats became the Cause of Embracing Islam Related Articles The Great Virtue of Performing Qurbaani 2021/06/08 Showing Compassion to the Animals of Qurbaani 2021/06/06 Forgiveness with the First Drop of Blood 2021/06/05 Check Also Determining Success through Fulfilling the Command of Allah Ta‘ala Hazrat Moulana Muhammad Ilyaas (rahmatullahi ‘alaih) once mentioned the following: In todays’ times, there is … Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment Name * Email * Website Publications Whatsapp Broadcasts Subscribe to our WhatsApp broadcasts by messaging "Subscribe" to +27 60 522 0868 and saving this number to your contacts
{ "warc_headers": { "warc-record-id": "<urn:uuid:b96c2479-0ea2-4e7e-b5e9-271e8b7870ca>", "warc-date": "2021-11-27T06:18:51Z", "content-type": "text/plain", "content-length": 2433, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:95821f03-9201-46ed-82d0-91715bdd748c>", "warc-target-uri": "https://ihyaauddeen.co.za/?p=169", "warc-block-digest": "sha1:6A464GLWTCGC6IYGGFNEHV5NXFAJCTDE" }, "identification": { "label": "en", "prob": 0.7759804725646973 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9539685845375061 }, { "label": "en", "prob": 0.934047520160675 }, { "label": "en", "prob": 0.9815858602523804 }, { "label": "en", "prob": 0.9733521938323975 }, { "label": "en", "prob": 0.9765807390213013 }, { "label": "en", "prob": 0.9894238710403442 }, { "label": "en", "prob": 0.978015661239624 }, null, { "label": "en", "prob": 0.8891376256942749 }, { "label": "en", "prob": 0.9424148797988892 }, null, null, null, null, null, { "label": "en", "prob": 0.863063633441925 }, null, null, null, null, { "label": "en", "prob": 0.8027464151382446 }, { "label": "en", "prob": 0.9563198685646057 }, null, null, null, null, null, null, { "label": "en", "prob": 0.8882668018341064 } ] }
797.7
2,423
https://ihyaauddeen.co.za/?p=169
ihyaauddeen.co.za
0.198927
[ [ 564955195483, 564955195965 ] ]
null
true
[ 431992436 ]
false
2,608,965
The International Journal of Arts & Sciences’ (IJAS) international conference will be hosted at the University of London Student Central, Malet Street, London WC1E 7HY, UK, from 8 to 11 November 2016. We thank the University of London for making their premises available for this annual event. We also thank Al Ain University of Science and Technology, in the United Arab Emirates, for sponsoring this event.
{ "warc_headers": { "warc-record-id": "<urn:uuid:b289b028-94c6-4d1e-9919-e3fcb99bc436>", "warc-date": "2021-11-27T06:19:32Z", "content-type": "text/plain", "content-length": 410, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:7397761a-99dc-4775-8e02-eafc3897c60a>", "warc-target-uri": "https://ijas2016uk.sched.com/list/descriptions/type/Education/FRANCE", "warc-block-digest": "sha1:MHNWUK4QHB5KRJEMCPVXN2UCIOCVQ225" }, "identification": { "label": "en", "prob": 0.8811236023902893 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8758512735366821 }, { "label": "en", "prob": 0.8947667479515076 } ] }
325.2
408
https://ijas2016uk.sched.com/list/descriptions/type/Education/FRANCE
ijas2016uk.sched.com
0
[]
null
false
[]
false
2,608,966
All prices are in CAD currency. Retail price does not include applicable taxes, shipping, or duties. Shipping calculated at check out. Pricing subject to change without notice. Your name Your email Your phone Your message Send message Home Gucci Gucci Trademark Heart Silver Necklace Facebook Pinterest Twitter Gucci Trademark Heart Silver Necklace SKU: 210000001660 $300 i / Add to cart $300 Description A timeless design, this necklace features a heart pendant engraved with the Gucci trademark. Crafted from 925 sterling silver, the jewelry piece reflects the House's romantic narrative. Pendant: 0.7'' x 0.6'' Length adjustable from 17.7" to 18.9" Made in Italy Gucci guarantees, internally and within its supply chain, respect for standards of Social & Environmental Responsibility in line with its sustainability strategy Material Sterling silver Share More information View images Shipping & Returns We will always strive to ship items out as quickly as possible. The majority of items shown on our website with prices are in stock. Please allow 1-2 days for us to ship the item out. If the item is not in stock we will inform you. FREE Shipping Options* Pick up in store. Local delivery (up to 15km radius). Free shipping via Canada Post on orders $300+ within Canada. Free shipping via FedEx on orders $1000+ within Canada. Free shipping via FedEx on orders $1500+ within the USA. Other Shipping Options* $25.00 Canada Post charge for orders under $300 in Canada. $37.00 Canada Post charge for orders being sent to the USA. $71.00 FedEx charge for orders under $1000 in Canada. $83.00 FedEx charge for orders under $1500 in the USA. *Options will be presented at check out based upon the value of the order. Taxes may apply. Return Policy For Online Purchases If you are unhappy with your purchase in any way, we offer a full refund 10 days from the date of receiving your purchase. We also offer 30 days from the date of receiving your purchase to let us know you would like to exchange the item. See below for exceptions to this return policy. Due to the nature of online purchases, we simply require you to let us know that you will be returning/exchanging the item, and we understand that you may not be able to get the item back to us within this time period. Once you have let us know that you will be returning/exchanging the item, a sales associate will help you through the next steps. For the month of December, any online purchase will be considered a gift - unless otherwise stated - and the return policy will start as of December 25. Please note that is is on the purchaser to get the item(s) back to us. We do not supply return shipping labels. Return Policy For In-Store Purchases If you are unhappy with your purchase, you have 10 days to bring it back to our store from the date of purchase. Alternatively, you have 30 days from the date of purchase to bring the item back for a full exchange. Please see below for exceptions to this return policy. Requirements For A Refund/Exchange Item must be returned in its original condition. The item cannot have been worn, sized, changed, or altered in any way. Special order items are exempt from this return policy. If applicable, the box and papers and warranty cards must be with the item in their original condition, unaltered from their original state. Please make sure you bring the following to receive your refund/exchange: The original receipt. The original credit card/debit card that was used for the purchase. If you paid by cash, a company cheque will be made out to you. This may take up to 5 business days to process. If you received a gift certificate or any gift with purchase, please return with the item(s). Exceptions To The Return Policy In general, special orders are not included in the return policy. Any item that has been sized or altered at the time of purchase. Due to the personal nature of jewellery, any items that have been worn or used are considered to be a final sale and not eligible for the return policy. Please note that the return policy does not apply to special orders or their respective deposits. Money left as a deposit for a future item is considered non-refundable. NO RETURNS OR EXCHANGES ON GIFT CARD PURCHASES. Terms of Service OVERVIEW This website is operated by IJL. Throughout the site, the terms “we”, “us” and “our” refer to IJL. IJL offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here. By visiting our site and/or purchasing something from us, you engage in our “Service” and agree to be bound by the following terms and conditions (“Terms of Service”, “Terms”), including those additional terms and conditions and policies referenced herein and/or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content. Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service. Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes. Our store is hosted on Shopify Inc. They provide us with the online e-commerce platform that allows us to sell our products and services to you. SECTION 1 - ONLINE STORE TERMS By agreeing to these Terms of Service, you represent that you are at least the age of majority in your state or province of residence, or that you are the age of majority in your state or province of residence and you have given us your consent to allow any of your minor dependents to use this site. You may not use our products for any illegal or unauthorized purpose nor may you, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws). You must not transmit any worms or viruses or any code of a destructive nature. A breach or violation of any of the Terms will result in an immediate termination of your Services. SECTION 2 - GENERAL CONDITIONS We reserve the right to refuse service to anyone for any reason at any time. You understand that your content (not including credit card information), may be transferred unencrypted and involve (a) transmissions over various networks; and (b) changes to conform and adapt to technical requirements of connecting networks or devices. Credit card information is always encrypted during transfer over networks. You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by us. The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms. SECTION 3 - ACCURACY, COMPLETENESS AND TIMELINESS OF INFORMATION We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk. This site may contain certain historical information. Historical information, necessarily, is not current and is provided for your reference only. We reserve the right to modify the contents of this site at any time, but we have no obligation to update any information on our site. You agree that it is your responsibility to monitor changes to our site. SECTION 4 - MODIFICATIONS TO THE SERVICE AND PRICES Prices for our products are subject to change without notice. We reserve the right at any time to modify or discontinue the Service (or any part or content thereof) without notice at any time. We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of the Service. SECTION 5 - PRODUCTS OR SERVICES (if applicable) Certain products or services may be available exclusively online through the website. These products or services may have limited quantities and are subject to return or exchange only according to our Return Policy. We have made every effort to display as accurately as possible the colors and images of our products that appear at the store. We cannot guarantee that your computer monitor's display of any color will be accurate. We reserve the right, but are not obligated, to limit the sales of our products or Services to any person, geographic region or jurisdiction. We may exercise this right on a case-by-case basis. We reserve the right to limit the quantities of any products or services that we offer. All descriptions of products or product pricing are subject to change at anytime without notice, at the sole discretion of us. We reserve the right to discontinue any product at any time. Any offer for any product or service made on this site is void where prohibited. We do not warrant that the quality of any products, services, information, or other material purchased or obtained by you will meet your expectations, or that any errors in the Service will be corrected. SECTION 6 - ACCURACY OF BILLING AND ACCOUNT INFORMATION We reserve the right to refuse any order you place with us. We may, in our sole discretion, limit or cancel quantities purchased per person, per household or per order. These restrictions may include orders placed by or under the same customer account, the same credit card, and/or orders that use the same billing and/or shipping address. In the event that we make a change to or cancel an order, we may attempt to notify you by contacting the e‑mail and/or billing address/phone number provided at the time the order was made. We reserve the right to limit or prohibit orders that, in our sole judgment, appear to be placed by dealers, resellers or distributors. You agree to provide current, complete and accurate purchase and account information for all purchases made at our store. You agree to promptly update your account and other information, including your email address and credit card numbers and expiration dates, so that we can complete your transactions and contact you as needed. For more detail, please review our Returns Policy. SECTION 7 - OPTIONAL TOOLS We may provide you with access to third-party tools over which we neither monitor nor have any control nor input. You acknowledge and agree that we provide access to such tools ”as is” and “as available” without any warranties, representations or conditions of any kind and without any endorsement. We shall have no liability whatsoever arising from or relating to your use of optional third-party tools. Any use by you of optional tools offered through the site is entirely at your own risk and discretion and you should ensure that you are familiar with and approve of the terms on which tools are provided by the relevant third-party provider(s). We may also, in the future, offer new services and/or features through the website (including, the release of new tools and resources). Such new features and/or services shall also be subject to these Terms of Service. SECTION 8 - THIRD-PARTY LINKS Certain content, products and services available via our Service may include materials from third-parties. Third-party links on this site may direct you to third-party websites that are not affiliated with us. We are not responsible for examining or evaluating the content or accuracy and we do not warrant and will not have any liability or responsibility for any third-party materials or websites, or for any other materials, products, or services of third-parties. We are not liable for any harm or damages related to the purchase or use of goods, services, resources, content, or any other transactions made in connection with any third-party websites. Please review carefully the third-party's policies and practices and make sure you understand them before you engage in any transaction. Complaints, claims, concerns, or questions regarding third-party products should be directed to the third-party. SECTION 9 - USER COMMENTS, FEEDBACK AND OTHER SUBMISSIONS If, at our request, you send certain specific submissions (for example contest entries) or without a request from us you send creative ideas, suggestions, proposals, plans, or other materials, whether online, by email, by postal mail, or otherwise (collectively, 'comments'), you agree that we may, at any time, without restriction, edit, copy, publish, distribute, translate and otherwise use in any medium any comments that you forward to us. We are and shall be under no obligation (1) to maintain any comments in confidence; (2) to pay compensation for any comments; or (3) to respond to any comments. We may, but have no obligation to, monitor, edit or remove content that we determine in our sole discretion are unlawful, offensive, threatening, libelous, defamatory, pornographic, obscene or otherwise objectionable or violates any party’s intellectual property or these Terms of Service. You agree that your comments will not violate any right of any third-party, including copyright, trademark, privacy, personality or other personal or proprietary right. You further agree that your comments will not contain libelous or otherwise unlawful, abusive or obscene material, or contain any computer virus or other malware that could in any way affect the operation of the Service or any related website. You may not use a false e‑mail address, pretend to be someone other than yourself, or otherwise mislead us or third-parties as to the origin of any comments. You are solely responsible for any comments you make and their accuracy. We take no responsibility and assume no liability for any comments posted by you or any third-party. SECTION 10 - PERSONAL INFORMATION Your submission of personal information through the store is governed by our Privacy Policy. To view our Privacy Policy. SECTION 11 - ERRORS, INACCURACIES AND OMISSIONS Occasionally there may be information on our site or in the Service that contains typographical errors, inaccuracies or omissions that may relate to product descriptions, pricing, promotions, offers, product shipping charges, transit times and availability. We reserve the right to correct any errors, inaccuracies or omissions, and to change or update information or cancel orders if any information in the Service or on any related website is inaccurate at any time without prior notice (including after you have submitted your order). We undertake no obligation to update, amend or clarify information in the Service or on any related website, including without limitation, pricing information, except as required by law. No specified update or refresh date applied in the Service or on any related website, should be taken to indicate that all information in the Service or on any related website has been modified or updated. SECTION 12 - PROHIBITED USES In addition to other prohibitions as set forth in the Terms of Service, you are prohibited from using the site or its content: (a) for any unlawful purpose; (b) to solicit others to perform or participate in any unlawful acts; (c) to violate any international, federal, provincial or state regulations, rules, laws, or local ordinances; (d) to infringe upon or violate our intellectual property rights or the intellectual property rights of others; (e) to harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability; (f) to submit false or misleading information; (g) to upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the Service or of any related website, other websites, or the Internet; (h) to collect or track the personal information of others; (i) to spam, phish, pharm, pretext, spider, crawl, or scrape; (j) for any obscene or immoral purpose; or (k) to interfere with or circumvent the security features of the Service or any related website, other websites, or the Internet. We reserve the right to terminate your use of the Service or any related website for violating any of the prohibited uses. SECTION 13 - DISCLAIMER OF WARRANTIES; LIMITATION OF LIABILITY We do not guarantee, represent or warrant that your use of our service will be uninterrupted, timely, secure or error-free. We do not warrant that the results that may be obtained from the use of the service will be accurate or reliable. You agree that from time to time we may remove the service for indefinite periods of time or cancel the service at any time, without notice to you. You expressly agree that your use of, or inability to use, the service is at your sole risk. The service and all products and services delivered to you through the service are (except as expressly stated by us) provided 'as is' and 'as available' for your use, without any representation, warranties or conditions of any kind, either express or implied, including all implied warranties or conditions of merchantability, merchantable quality, fitness for a particular purpose, durability, title, and non-infringement. In no case shall IJL Store, our directors, officers, employees, affiliates, agents, contractors, interns, suppliers, service providers or licensors be liable for any injury, loss, claim, or any direct, indirect, incidental, punitive, special, or consequential damages of any kind, including, without limitation lost profits, lost revenue, lost savings, loss of data, replacement costs, or any similar damages, whether based in contract, tort (including negligence), strict liability or otherwise, arising from your use of any of the service or any products procured using the service, or for any other claim related in any way to your use of the service or any product, including, but not limited to, any errors or omissions in any content, or any loss or damage of any kind incurred as a result of the use of the service or any content (or product) posted, transmitted, or otherwise made available via the service, even if advised of their possibility. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, our liability shall be limited to the maximum extent permitted by law. SECTION 14 - INDEMNIFICATION You agree to indemnify, defend and hold harmless IJL Store and our parent, subsidiaries, affiliates, partners, officers, directors, agents, contractors, licensors, service providers, subcontractors, suppliers, interns and employees, harmless from any claim or demand, including reasonable attorneys’ fees, made by any third-party due to or arising out of your breach of these Terms of Service or the documents they incorporate by reference, or your violation of any law or the rights of a third-party. SECTION 15 - SEVERABILITY In the event that any provision of these Terms of Service is determined to be unlawful, void or unenforceable, such provision shall nonetheless be enforceable to the fullest extent permitted by applicable law, and the unenforceable portion shall be deemed to be severed from these Terms of Service, such determination shall not affect the validity and enforceability of any other remaining provisions. SECTION 16 - TERMINATION The obligations and liabilities of the parties incurred prior to the termination date shall survive the termination of this agreement for all purposes. These Terms of Service are effective unless and until terminated by either you or us. You may terminate these Terms of Service at any time by notifying us that you no longer wish to use our Services, or when you cease using our site. If in our sole judgment you fail, or we suspect that you have failed, to comply with any term or provision of these Terms of Service, we also may terminate this agreement at any time without notice and you will remain liable for all amounts due up to and including the date of termination; and/or accordingly may deny you access to our Services (or any part thereof). SECTION 17 - ENTIRE AGREEMENT The failure of us to exercise or enforce any right or provision of these Terms of Service shall not constitute a waiver of such right or provision. These Terms of Service and any policies or operating rules posted by us on this site or in respect to The Service constitutes the entire agreement and understanding between you and us and govern your use of the Service, superseding any prior or contemporaneous agreements, communications and proposals, whether oral or written, between you and us (including, but not limited to, any prior versions of the Terms of Service). Any ambiguities in the interpretation of these Terms of Service shall not be construed against the drafting party. SECTION 18 - GOVERNING LAW These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of Canada. SECTION 19 - CHANGES TO TERMS OF SERVICE You can review the most current version of the Terms of Service at any time at this page. We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes. SECTION 20 - CONTACT INFORMATION Questions about the Terms of Service should be sent to us at hello@IJL.ca. You May Also Like Recently Viewed OUR STORY Independent Jewellers Ltd. - IJL - gives Winnipeg access to the most iconic brands in the world for engagement rings, wedding bands, luxury watches and other fine jewellery. Family-owned and operated since 1937, shop online or visit our brand new jewellery store at 493 Notre Dame Ave. for the best selection and after sale service for all your diamond, gold, silver and custom jewellery dreams.
{ "warc_headers": { "warc-record-id": "<urn:uuid:11e82800-cf15-4b66-b913-9e6a6c16e9c9>", "warc-date": "2021-11-27T06:16:48Z", "content-type": "text/plain", "content-length": 23121, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:92e3da7b-8401-4fa0-b5ae-03c2a9057bf1>", "warc-target-uri": "https://ijl.ca/collections/gucci/products/gucci-necklace-with-gucci-trademark-heart-223512", "warc-block-digest": "sha1:IZV6LSWDVMC66H7XRKSIVCSDQRD7GDJ2" }, "identification": { "label": "en", "prob": 0.8418018221855164 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.9757691025733948 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8595320582389832 }, { "label": "en", "prob": 0.9258379340171814 }, { "label": "en", "prob": 0.9564733505249023 }, null, null, null, null, null, { "label": "en", "prob": 0.9669144153594971 }, null, null, null, { "label": "en", "prob": 0.8947730660438538 }, { "label": "en", "prob": 0.8842566609382629 }, { "label": "en", "prob": 0.8625123500823975 }, null, { "label": "en", "prob": 0.887647807598114 }, { "label": "en", "prob": 0.8898907899856567 }, { "label": "en", "prob": 0.8970673084259033 }, { "label": "en", "prob": 0.8573340177536011 }, { "label": "en", "prob": 0.9268320798873901 }, null, { "label": "en", "prob": 0.9613645076751709 }, { "label": "en", "prob": 0.9438880681991577 }, { "label": "en", "prob": 0.9219747185707092 }, { "label": "en", "prob": 0.9605916738510132 }, null, { "label": "en", "prob": 0.9221152663230896 }, null, { "label": "en", "prob": 0.978954553604126 }, { "label": "en", "prob": 0.9621744751930237 }, { "label": "en", "prob": 0.8688221573829651 }, { "label": "en", "prob": 0.9594799876213074 }, { "label": "en", "prob": 0.9818493723869324 }, { "label": "en", "prob": 0.8451234698295593 }, { "label": "en", "prob": 0.9814479947090149 }, { "label": "en", "prob": 0.9187010526657104 }, null, { "label": "en", "prob": 0.9546335339546204 }, { "label": "en", "prob": 0.9828023314476013 }, { "label": "en", "prob": 0.948645830154419 }, { "label": "en", "prob": 0.9279041886329651 }, null, { "label": "en", "prob": 0.8338992595672607 }, null, { "label": "en", "prob": 0.9538082480430603 }, { "label": "en", "prob": 0.9167512059211731 }, { "label": "en", "prob": 0.928866446018219 }, { "label": "en", "prob": 0.9146497845649719 }, { "label": "en", "prob": 0.9741266965866089 }, null, { "label": "en", "prob": 0.9641332626342773 }, { "label": "en", "prob": 0.9213321208953857 }, null, { "label": "en", "prob": 0.8729187846183777 }, null, { "label": "en", "prob": 0.9719135761260986 }, { "label": "en", "prob": 0.9523535370826721 }, { "label": "en", "prob": 0.9307011365890503 }, { "label": "en", "prob": 0.9151116013526917 }, null, { "label": "en", "prob": 0.9157603979110718 }, { "label": "en", "prob": 0.9105715751647949 }, null, { "label": "en", "prob": 0.9672149419784546 }, { "label": "en", "prob": 0.8375130295753479 }, { "label": "en", "prob": 0.8652713298797607 }, null, { "label": "en", "prob": 0.9375659823417664 }, { "label": "en", "prob": 0.9768682718276978 }, { "label": "en", "prob": 0.9357983469963074 }, { "label": "en", "prob": 0.9429099559783936 }, null, { "label": "en", "prob": 0.9389652013778687 }, { "label": "en", "prob": 0.9533176422119141 }, { "label": "en", "prob": 0.8725152015686035 }, null, { "label": "en", "prob": 0.9444130659103394 }, { "label": "en", "prob": 0.8795825839042664 }, { "label": "en", "prob": 0.976982593536377 }, { "label": "en", "prob": 0.9665719270706177 }, null, { "label": "en", "prob": 0.9483357071876526 }, { "label": "en", "prob": 0.9621778726577759 }, { "label": "en", "prob": 0.9505519270896912 }, null, { "label": "en", "prob": 0.9013016819953918 }, null, { "label": "en", "prob": 0.9315073490142822 }, null, { "label": "en", "prob": 0.9474369287490845 }, null, { "label": "en", "prob": 0.8786505460739136 }, { "label": "en", "prob": 0.8782241344451904 }, null, { "label": "en", "prob": 0.8465755581855774 }, null, { "label": "en", "prob": 0.8607221245765686 }, { "label": "en", "prob": 0.961882472038269 }, { "label": "en", "prob": 0.9209352731704712 }, { "label": "en", "prob": 0.9262891411781311 }, { "label": "en", "prob": 0.877026379108429 }, null, { "label": "en", "prob": 0.9106433987617493 }, null, { "label": "en", "prob": 0.8833481669425964 }, null, { "label": "en", "prob": 0.8739094734191895 }, { "label": "en", "prob": 0.9526130557060242 }, { "label": "en", "prob": 0.968337893486023 }, null, { "label": "en", "prob": 0.8203758001327515 }, { "label": "en", "prob": 0.9193742871284485 }, { "label": "en", "prob": 0.9091199040412903 }, null, { "label": "en", "prob": 0.9328216314315796 }, null, { "label": "en", "prob": 0.8750696182250977 }, { "label": "en", "prob": 0.9094711542129517 }, null, { "label": "en", "prob": 0.9246955513954163 }, { "label": "en", "prob": 0.9313898086547852 }, { "label": "en", "prob": 0.9972928762435913 }, null, { "label": "en", "prob": 0.9017431139945984 } ] }
441.6
23,081
https://ijl.ca/collections/gucci/products/gucci-necklace-with-gucci-trademark-heart-223512
ijl.ca
0.984099
[ [ 564955195967, 564955196243 ], [ 564955196618, 564955219056 ] ]
null
true
[ 431992438 ]
false
2,608,967
Home About us Editorial board Ahead of print Current issue Search Archives Submit article Instructions Subscribe Contacts Login Enter captcha code Enter the code shown Reload Why is this required? We can provide desired results with guaranteed correctness only to humans. Therefore, we need to verify that you are a human and not a computer. This website has been inundated with requests from remote servers instead of people, which caused a high load. By forcing this captcha on you, we can ensure that we offer you desired results.
{ "warc_headers": { "warc-record-id": "<urn:uuid:fbc50815-0ac8-4dfc-9630-f0b04890ac67>", "warc-date": "2021-11-27T04:59:54Z", "content-type": "text/plain", "content-length": 533, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:7f5e84ce-e3c4-4170-a4ce-aa2d4a15c958>", "warc-target-uri": "https://ijsocialrehab.com/showcaptcha.asp?RedirectUrl=searchresult&search=Eagle%26", "warc-block-digest": "sha1:GDGLLVCKDCHXU6CGRBFNHHAWADAHYYVV" }, "identification": { "label": "en", "prob": 0.6507660150527954 }, "annotations": [ "short_sentences" ], "line_identifications": [ null, null, null, null, { "label": "en", "prob": 0.9939406514167786 }, { "label": "en", "prob": 0.9605110287666321 } ] }
839.8
533
https://ijsocialrehab.com/showcaptcha.asp?RedirectUrl=searchresult&search=Eagle%26
ijsocialrehab.com
1.009381
[ [ 564955219057, 564955219595 ] ]
null
true
[ 431992439 ]
false
2,608,968
We use the latest technologies and platforms to build disruptive web products with robust backends & intuitive UI. Mobile Applications Designing and Developing iOS & Android apps that are custom built for your product’s requirements. Graphic Designing We are working at our level best to make your graphics professional and to give it a charming look. Logo Designing We are the leaders in logo designing because of the creative and innovative designs made by our team of talented designers. Domain & Hosting We provide Web Development & Domain Registration services to our customers with reliable service and dependable support as the foundation of our operation. Website Solutions We have a fully trained, skilled and experience staff at your disposal that will work with you and for you to build a website of your needs and liking. OUR FINEST MOMENTS Professional UX & UI Web Design Company We provide complete web design services to make your product to be successful in market with eye-catching outlook and appropriate web design. We also provide advance services in the field of web development, desktop applications, mobile application development (iPhone, Windows Phone and Android) etc. We specialize in projects that have beautiful design combined with interactive technology. If you want the best website possible that generates real results, allow us! READ MORE WE ARE FAMILY Get Work Done Faster by us, With Confidence We have a team of experienced and certified professionals ensuring the best user experience regarding all our services. We know our job doesn't end on delivery of a product. We love our customers and continuous client servicing is one of our top most priorities. Our Mission is to provide quality and cost effective services of web solutions to build a high-quality brand in online environment world wide.
{ "warc_headers": { "warc-record-id": "<urn:uuid:81cc9cbd-e281-4614-aebf-26598e65e906>", "warc-date": "2021-11-27T06:24:00Z", "content-type": "text/plain", "content-length": 1838, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:78d478e5-3e28-481f-a647-5af639d7e070>", "warc-target-uri": "https://ikonicwebs.com/?g8685f%2Fu16afbf884", "warc-block-digest": "sha1:CGNEPDNIYTK3O2COWZNSZ3TEAJ3QLNHA" }, "identification": { "label": "en", "prob": 0.8497576117515564 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.8169729709625244 }, null, { "label": "en", "prob": 0.9054709672927856 }, null, { "label": "en", "prob": 0.9805992841720581 }, null, { "label": "en", "prob": 0.9788798093795776 }, null, { "label": "en", "prob": 0.9458004236221313 }, null, { "label": "en", "prob": 0.990261971950531 }, null, null, { "label": "en", "prob": 0.9118970036506653 }, null, null, { "label": "en", "prob": 0.9027847051620483 }, { "label": "en", "prob": 0.9510128498077393 }, { "label": "en", "prob": 0.940858006477356 } ] }
703.7
1,836
https://ikonicwebs.com/?g8685f%2Fu16afbf884
ikonicwebs.com
0
[]
null
false
[]
true
2,608,969
We use the latest technologies and platforms to build disruptive web products with robust backends & intuitive UI. Mobile Applications Designing and Developing iOS & Android apps that are custom built for your product’s requirements. Graphic Designing We are working at our level best to make your graphics professional and to give it a charming look. Logo Designing We are the leaders in logo designing because of the creative and innovative designs made by our team of talented designers. Domain & Hosting We provide Web Development & Domain Registration services to our customers with reliable service and dependable support as the foundation of our operation. Website Solutions We have a fully trained, skilled and experience staff at your disposal that will work with you and for you to build a website of your needs and liking. OUR FINEST MOMENTS Professional UX & UI Web Design Company We provide complete web design services to make your product to be successful in market with eye-catching outlook and appropriate web design. We also provide advance services in the field of web development, desktop applications, mobile application development (iPhone, Windows Phone and Android) etc. We specialize in projects that have beautiful design combined with interactive technology. If you want the best website possible that generates real results, allow us! READ MORE WE ARE FAMILY Get Work Done Faster by us, With Confidence We have a team of experienced and certified professionals ensuring the best user experience regarding all our services. We know our job doesn't end on delivery of a product. We love our customers and continuous client servicing is one of our top most priorities. Our Mission is to provide quality and cost effective services of web solutions to build a high-quality brand in online environment world wide.
{ "warc_headers": { "warc-record-id": "<urn:uuid:4d3cc473-8074-41c5-a5d0-6355a852b200>", "warc-date": "2021-11-27T05:37:17Z", "content-type": "text/plain", "content-length": 1838, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:87440db1-61ef-49a3-9aa7-366cbf6169b5>", "warc-target-uri": "https://ikonicwebs.com/?g8908d%2Fu16adbe9093", "warc-block-digest": "sha1:CGNEPDNIYTK3O2COWZNSZ3TEAJ3QLNHA" }, "identification": { "label": "en", "prob": 0.8497576117515564 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.8169729709625244 }, null, { "label": "en", "prob": 0.9054709672927856 }, null, { "label": "en", "prob": 0.9805992841720581 }, null, { "label": "en", "prob": 0.9788798093795776 }, null, { "label": "en", "prob": 0.9458004236221313 }, null, { "label": "en", "prob": 0.990261971950531 }, null, null, { "label": "en", "prob": 0.9118970036506653 }, null, null, { "label": "en", "prob": 0.9027847051620483 }, { "label": "en", "prob": 0.9510128498077393 }, { "label": "en", "prob": 0.940858006477356 } ] }
703.7
1,836
https://ikonicwebs.com/?g8908d%2Fu16adbe9093
ikonicwebs.com
1.002179
[ [ 564955219597, 564955221437 ] ]
null
true
[ 431992441 ]
false
2,608,970
There is a battle between Mother Nature and Mother Nature. Our olive trees are growing and more trees are better for our carbon footprint offset. But we are also growing bugs , weeds, and some unwanted animals are living in my grove. So a balance is important. Although we are not certified organic, we practice sustainable agriculture. We are very sensitive to the overall environment. We only use an organic spray for the olive fly, which is one of the most dangerous pests for olives. The olive fly drills holes in the olives and lays their eggs. The worms hatch and eat the inside of the olive, destroying it. We would prefer not to have partially eaten olives to mill into oil. The lanes between the olive trees are mowed to develop a thatch, protect the soil from erosion and add nutrients. If we mow we do not have to till the soil nor use any weed killers. It is better for the environment. The areas around the base of the trees have to be cleared to protect the roots and avoid competition. As the trees get bigger, the trunks grow stronger and the roots reach deeper, we will have to do less and less intervention and the land will be better sustained. The trees will be happy and grow strong. Another great example of support for Mother Nature is our owl boxes. We have 4 at the Olive Farm and one at home, where our more mature grove thrives. The owls seem to like the boxes. They nested and hatched little ones last year. Owls need homes in the orchard and eat mice, gophers, moles and voles, and snakes. Mice and gophers eat trees and the roots of our trees are little as many are less than 5 years old. No roots, no trees and no olives for oil. The red tail hawks are plentiful and they follow the tractor when we are mowing. Lots of delicious mice and moles to catch. Next season our project will be bat boxes. Bats eat insects like mosquitoes DECANTING OLIVE OIL Olive oil, like wine, needs decanting. Even with two very powerful centrifuges some olive particulate matter remains suspended in the oil. Many people, ourselves included, love the thick rich flavorful Olio Nuovo, New Oil the first of the season. Right out of the centrifuge, it is thick, pungent, unctuous, and just wonderful. We all line up to taste the first oil of the season. The olio nuovo is spectacular in its freshness and richness and is only available during harvest and milling season, November to very early January. Decanting means letting the oil settle for 2-4 months and then siphoning off the clear oil leaving the sediment. The purpose of decanting is to remove the vegetal olive matter that can ferment and ruin the oil. If you do not decant the oil, you can taste a “winey” or “fusty” flavor that is not favorable. Following decanting, the oil then goes back into storage or is bottled. Our oil is stored in large glass containers or 55 gallon drums, depending on the volume. It is kept at a constant temperature of 61 F and in darkness until bottling. Just-in-time bottling allows the oil to be untouched and undisturbed, protecting the quality. This is very important so that the flavors are maintained and as little oxygen as possible is touching the oil. Air produces oxidation and degrades the oil. Light and high temperatures also degrade the oil. At home keep your oil in a relatively cool protected place, not right next to the hot stove. So early in March we decanted all the oils from this last harvest. We will bottle in the next month enough to sell and keep the remainder undisturbed until we need it for further sales. This is a serious process that protects the oil. The funny part of the whole process is how slippery the oil really is. There are inevitable drips from the siphoning tanks and hoses. We slip and slide and hoot and holler. Now add soap to help clean and we can slide from one end of the mill building to the other. Ultimately after we wash everything with biodegradable soap, the oil and soap go to a state-of-the-art filtration septic system and ultimately out to the trees for irrigation support. This is a good farming practice. WINTER IN THE GROVES A quiet time. The olives have been harvested; the trees are giving a sigh of relief- their work done for the year. They rest until the days grow longer and the weather warms. The little olives are already beginning to form from the new branches. Olives will only grow on each branch once. Correct pruning is so important to produce new growth and olives. Inside the mill, we are still cleaning the equipment and watching and tasting the oils. The trees are growing and our job is to re-tie, prune, and support the baby trees. The winds of Suisun Valley in early spring can reach 40 MPH and our little trees are learning to stand up by themselves. Last year our new citrus trees had every leaf blown off and they had to start all over again. This year they produced, so I guess it didn’t hurt them much. The rain made a pond in the frontage area with ducks having a fine time swimming in the drainage ditches. The local blue heron and white egrets are fishing for frogs in the drainage pond. Our local flock of geese and ducks watch us from the top of the Putah Canal, and “yell” at us as if they owned the place, I guess they do.
{ "warc_headers": { "warc-record-id": "<urn:uuid:61e38e45-fb2d-41e1-bd90-e2a7489e69d2>", "warc-date": "2021-11-27T06:07:16Z", "content-type": "text/plain", "content-length": 5230, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:317b1aed-d62f-491a-bc37-5e2df40de00f>", "warc-target-uri": "https://ilfiorello.com/mother-nature-vs-mother-nature/", "warc-block-digest": "sha1:UNWYWBRDQJDK44E3CNCF5F4TVNA2C6CD" }, "identification": { "label": "en", "prob": 0.9499430656433105 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9678018689155579 }, { "label": "en", "prob": 0.9388298392295837 }, { "label": "en", "prob": 0.9628552794456482 }, { "label": "en", "prob": 0.8881522417068481 }, null, { "label": "en", "prob": 0.9718146920204163 }, { "label": "en", "prob": 0.9419308304786682 }, { "label": "en", "prob": 0.9686517119407654 }, { "label": "en", "prob": 0.9502939581871033 }, null, { "label": "en", "prob": 0.9737452268600464 }, { "label": "en", "prob": 0.9503494501113892 } ] }
424
5,216
https://ilfiorello.com/mother-nature-vs-mother-nature/
ilfiorello.com
0
[]
null
false
[]
false
2,608,971
Categorized as . Tagged a.b. shaw photo, big sur, dulfer metal, esalen, july 2009, memmmmmmmories, superlatergram Post navigation Previous post found. Next post $ in the bank. Archives Archives Select Month October 2021 September 2021 August 2021 April 2021 March 2021 February 2021 April 2020 March 2020 February 2020 January 2020 November 2019 October 2019 May 2019 January 2019 December 2018 September 2018 August 2018 July 2018 June 2018 May 2018 April 2018 March 2018 February 2018 January 2018 December 2017 November 2017 September 2017 August 2017 July 2017 June 2017 May 2017 April 2017 March 2017 February 2017 January 2017 December 2016 November 2016 October 2016 September 2016 August 2016 July 2016 June 2016 May 2016 April 2016 March 2016 February 2016 January 2016 December 2015 November 2015 October 2015 September 2015 August 2015 July 2015 June 2015 May 2015 April 2015 March 2015 February 2015 January 2015 December 2014 November 2014 October 2014 September 2014 August 2014 July 2014 June 2014 May 2014 April 2014 March 2014 February 2014 January 2014 December 2013 November 2013 October 2013 September 2013 August 2013 July 2013 June 2013 May 2013 April 2013 March 2013 February 2013 January 2013 December 2012 November 2012 October 2012 September 2012 August 2012 July 2012 June 2012 May 2012 April 2012 March 2012 February 2012 January 2012 December 2011 November 2011 October 2011 September 2011 August 2011 July 2011 June 2011 May 2011 April 2011 March 2011 February 2011 January 2011 December 2010 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 December 2009 November 2009 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009
{ "warc_headers": { "warc-record-id": "<urn:uuid:0037fc98-b5b3-43f4-9216-e0996c605136>", "warc-date": "2021-11-27T04:51:18Z", "content-type": "text/plain", "content-length": 1762, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:1e00bf8f-bea0-4806-9ba8-e8af69409514>", "warc-target-uri": "https://ilikeyoulikeyou.com/2013/07/12/4-year-esalenniversary/", "warc-block-digest": "sha1:N2SSMOXQISSWGVS73V732X253JGR56KX" }, "identification": { "label": "en", "prob": 0.9152649641036987 }, "annotations": [ "short_sentences" ], "line_identifications": [ null, null, { "label": "en", "prob": 0.9148849844932556 }, { "label": "en", "prob": 0.9765772819519043 }, { "label": "en", "prob": 0.959178626537323 }, { "label": "en", "prob": 0.8544349074363708 }, null, { "label": "en", "prob": 0.9942564368247986 } ] }
32,594.4
1,762
https://ilikeyoulikeyou.com/2013/07/12/4-year-esalenniversary/
ilikeyoulikeyou.com
0
[]
null
false
[]
true
2,608,972
In InsideOut Coaching, Joe Ehrmann identifies four critical questions that every coach must ask themselves and be able to answer. The first is “Why do I coach?”, which we looked at in last week’s devotional blog. The second critical question for every coach is this: “Why do I coach the way I do?” Most of us coach the way we do simply because that’s the way we were coached. It’s what we know – for better or for worse – and so it’s what we do. Or perhaps we’ve adopted an approach because we’ve observed other coaches using it and they seem to be successful. But have we done the reflective work needed to consider the most important purpose we desire to accomplish through our coaching (the “Why do I coach?” question) – and whether the way we coach gives us the best chance to accomplish this purpose? It’s possible that we have a pretty good sense of the purpose for our coaching and yet the way we’re coaching actually works against this purpose. That’s why it’s so critical to think through our approach rather than merely defaulting to coaching the way we do because that’s how we were coached. The Apostle Paul makes a bold statement in 1 Corinthians 11:1 – “And you should imitate me, just as I imitate Christ.” This isn’t Paul saying, “Hey, I’m perfect just like Jesus was so you should be like me.” It’s more along the lines of Paul saying, “I’m committed not only to following Christ myself but also helping others follow him. As imperfect as I am, I want to model living as Jesus did so that you have a flesh-and-blood example of what this looks like.” What if this same desire drove the way we approach coaching? What if we could say, “What you see in me as your coach gives you a model of what it means to live for Christ”? This means that we’d intentionally approach coaching – how we treat players and fellow coaches and parents, how we speak, how we challenge, how we encourage, how we discipline, how we respond to players’ failures, how we love – in ways that imitate the life and teaching of Jesus. And we do this because our purpose in coaching is to honor Christ and be a channel through whom he can transform the lives of those we coach. What an incredible thing to be able to describe your coaching style in this way: “I coach the way I do because I love Christ and I want to give my players a model of Christlikeness that could potentially transform their lives.”
{ "warc_headers": { "warc-record-id": "<urn:uuid:12aa571e-8f15-4096-ae97-c4ffe4eb87aa>", "warc-date": "2021-11-27T04:51:20Z", "content-type": "text/plain", "content-length": 2468, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:c8b5fdc1-454e-4320-a5e2-305a212fc496>", "warc-target-uri": "https://illinilandfca.org/2019/08/21/why-do-i-coach-the-way-i-do/", "warc-block-digest": "sha1:Q7UHUBRGC2OJJ62QLXEZN63COUAFNAM6" }, "identification": { "label": "en", "prob": 0.9695410132408142 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9607817530632019 }, { "label": "en", "prob": 0.9839068055152893 }, { "label": "en", "prob": 0.9665868878364563 }, { "label": "en", "prob": 0.9794682860374451 }, { "label": "en", "prob": 0.9603648781776428 }, { "label": "en", "prob": 0.9744096994400024 } ] }
439.5
2,390
https://illinilandfca.org/2019/08/21/why-do-i-coach-the-way-i-do/
illinilandfca.org
0
[]
null
false
[]
true
2,608,973
It appears you are using an older version of your browser. While some functions will be available, IllinoisJobLink.com works best with a modern browser such as the ones provided by: Microsoft Mozilla Google Please download and install the latest version of the browser of your choice. We apologize for any inconvenience. Refine Search Last Update Today (0) Yesterday (0) 1 week (0) 2 weeks (0) 1 month (0) Job Search Enter your search criteria into the boxes below, then click the search icon or press Enter. In the What box, enter the job title, keywords, or job posting number. In the Where box, enter a ZIP or city and state. In the Within box enter the number of miles around the location entered. If either the Where or Within boxes are going to be used, then both boxes are required. To narrow your search results, use the “Refine Search” filters on the left by selecting a category. The number next to each filter indicates the number of results currently in the system using that filter, plus your current search criteria. If zero jobs meet the criteria, the filter will not display for selection. Results do not include indeed.com jobs. Filters can be removed by selecting the link you want to remove in the “Filtered By” section. Searches can be saved by entering a unique name in the Label field and selecting the “Save search as” button. Looking for a job now? See our COVID-19 Jobs. * Indicates a required field job should be... What Where Within Miles Filtered by ☒ City: Peoria ☒ Company: KINDRED NURSING CENTERS EAST LLC ☒ Green: No ☒ Source: External ☒ Date Posted: 2 weeks 0 - 0 of 0 matches in 0.008 seconds Legend Registered Apprenticeship EOE | Veterans' Priority | Privacy | Browser Help | Protect Yourself | About Us | FAQ | Accessibility Build: 56506a0c2 , 16.21.4 Your Session is About to Expire! Your session will expire in 120 seconds. Click the Continue button to keep your session open or click End Session to close it.
{ "warc_headers": { "warc-record-id": "<urn:uuid:19cf1ed9-71e8-4c91-96f5-a2ef9df134d7>", "warc-date": "2021-11-27T06:42:26Z", "content-type": "text/plain", "content-length": 1970, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:d2f403db-76bc-47d5-8d6f-9b26492e9aed>", "warc-target-uri": "https://illinoisjoblink.illinois.gov/ada/r/search/jobs?city=Peoria&company=KINDRED+NURSING+CENTERS+EAST+LLC&date_posted=2+weeks&green=0&is_subsequent_search=true&source=External", "warc-block-digest": "sha1:RAFSEIBNX5XTI5GCHGVQVRCKKJ42W6KA" }, "identification": { "label": "en", "prob": 0.6953322291374207 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9088550209999084 }, null, null, null, { "label": "en", "prob": 0.853384792804718 }, null, { "label": "en", "prob": 0.8070192933082581 }, null, null, null, null, null, null, { "label": "en", "prob": 0.8538001775741577 }, null, { "label": "en", "prob": 0.9327414035797119 }, { "label": "en", "prob": 0.9079480171203613 }, null, null, null, { "label": "en", "prob": 0.9959406852722168 }, null, null, null, { "label": "en", "prob": 0.9332075715065002 }, { "label": "en", "prob": 0.8678217530250549 }, null, null, { "label": "en", "prob": 0.831176221370697 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9106329083442688 }, { "label": "en", "prob": 0.8239839673042297 } ] }
1,699.3
1,948
https://illinoisjoblink.illinois.gov/ada/r/search/jobs?city=Peoria&company=KINDRED+NURSING+CENTERS+EAST+LLC&date_posted=2+weeks&green=0&is_subsequent_search=true&source=External
illinoisjoblink.illinois.gov
1.0077
[ [ 564955221438, 564955223401 ] ]
null
true
[ 431992445 ]
false
2,608,974
Add this cutest balloon Poodle silver pendant to your necklace, keychain, handbag, or anywhere you need instant Poodle cheer! Handmade with pure 925 sterling silver, featuring a super cute and shiny balloon poodle design. Get this beautiful Poodle pendant for yourself, or gift it to your Poodle-loving family and friends! View more Poodle Jewelry, or view more Poodle Lover Gifts. ---- Metal: Silver Shipping & Returns NOW SHIPPING to Doggo Moms and Dads WORLDWIDE! 😍 United States - 14 to 28 days with USPS UK - 10 to 15 days with Royal Mail Australia - 14 to 28 days with Australia Post Canada- 14 to 28 days with Canada Post Most Other Countries - 20 to 40 days Delivery with Package Tracking View Full Shipping Country List FRIENDLY RETURNS 🐶 Get a full refund if your purchase isn’t significantly as described or doesn’t arrive at your doorstep in 60 days. If the product delivered is significantly not as described, we’ll only need your help with a few photos so we can assess what went wrong. Our products may take a few weeks to deliver, but they do arrive, and will be sure to bring you and your loved ones daily smiles for years to come! 😃 View All iLoveMy.pet Reviews FAQs Will I receive my order? Yes, you most certainly will! We’ve delivered over 2,500 orders since 2019, to our most awesome doggo-loving customers in the United Statues, United Kingdom, Australia, Canada, and elsewhere around the world. Please see our verified reviews here - https://ilovemy.pet/pages/verified-reviews. How do I know my purchase is safe? While we offer you a full refund if your purchase is not as described or doesn’t arrive at your doorstep. You can also checkout via PayPal to automatically avail of PayPal Buyer Protection, which also assures you of the same from PayPal. Is my credit card information safe? Yes, it most certainly is! We receive or store no credit card information whatsoever. We use PayPal and Stripe as our payment gateways, both of whom are global leaders in online payments and security. Will anyone respond if I have a problem? Yes, absolutely! We pride ourselves in responding to our customers’ emails as soon as possible, most often within a few hours if not minutes. If you like, you can send us a message now and test our response time! :) You can reach us by filling out the form on this page - https://ilovemy.pet/pages/contact-us or email us at hello@ilovemy.pet. About Us WHY Shop on iLoveMy.Pet? 🤔 😍 Unique Products - We find and curate the cutest and most delightful gifts for Dog lovers. 🔒 100% Secure Purchase - We use PayPal as our payment gateway so all purchases are 100% secure and covered by PayPal Buyer Protection. 🛡️ 100% Money-Back Guarantee - Get a full refund if your order isn't significantly as described or doesn't arrive at your doorstep.
{ "warc_headers": { "warc-record-id": "<urn:uuid:40d3f9d3-fdfa-4093-9dab-f1e0ee0024c5>", "warc-date": "2021-11-27T06:18:18Z", "content-type": "text/plain", "content-length": 2825, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:21df7900-9e60-4468-8e16-3ec0940b8a17>", "warc-target-uri": "https://ilovemy.pet/products/balloon-poodle-love-silver-pendant", "warc-block-digest": "sha1:QLCK2GNYCF6L2AINP3AGWGCRTEMRQFVM" }, "identification": { "label": "en", "prob": 0.7719476222991943 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ null, { "label": "en", "prob": 0.8400843143463135 }, null, null, null, null, null, { "label": "en", "prob": 0.9199132919311523 }, { "label": "en", "prob": 0.8268588185310364 }, { "label": "en", "prob": 0.8737426400184631 }, { "label": "en", "prob": 0.8805409073829651 }, null, null, null, { "label": "en", "prob": 0.9679803848266602 }, { "label": "en", "prob": 0.9865648746490479 }, { "label": "en", "prob": 0.9764629602432251 }, null, null, { "label": "en", "prob": 0.9673805236816406 }, { "label": "en", "prob": 0.9902677536010742 }, { "label": "en", "prob": 0.8838571310043335 }, { "label": "en", "prob": 0.9382576942443848 }, { "label": "en", "prob": 0.9834181070327759 }, { "label": "en", "prob": 0.975091814994812 }, { "label": "en", "prob": 0.8901326656341553 }, { "label": "en", "prob": 0.8541803359985352 }, { "label": "en", "prob": 0.991593062877655 }, { "label": "en", "prob": 0.9048593640327454 }, { "label": "en", "prob": 0.9821239709854126 }, { "label": "en", "prob": 0.9175592064857483 }, { "label": "en", "prob": 0.9849845767021179 }, { "label": "en", "prob": 0.9838398098945618 }, { "label": "en", "prob": 0.8052881956100464 }, { "label": "en", "prob": 0.8671805262565613 }, null, null, { "label": "en", "prob": 0.9011921286582947 }, { "label": "en", "prob": 0.9112741947174072 }, { "label": "en", "prob": 0.9775296449661255 } ] }
1,124
2,790
https://ilovemy.pet/products/balloon-poodle-love-silver-pendant
ilovemy.pet
0
[]
null
false
[]
false
2,608,975
En cumplimiento con la Ley 34/2002, de servicios de la sociedad de la información, te recordamos que al navegar por este sitio estás aceptando el uso de cookiesAceptar Leer más Política de Cookies Cerrar Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Siempre activado Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information. Non-necessary Non-necessary Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
{ "warc_headers": { "warc-record-id": "<urn:uuid:482f99d7-e5a0-48bd-a146-7139fa273fbd>", "warc-date": "2021-11-27T05:20:42Z", "content-type": "text/plain", "content-length": 1392, "warc-type": "conversion", "warc-identified-content-language": "eng,spa", "warc-refers-to": "<urn:uuid:0012516d-f38f-41f8-94fd-bea120a2b6a4>", "warc-target-uri": "https://iluplax.es/trabajos/digital-signage-carteleria-digital/irregular/", "warc-block-digest": "sha1:WFQOJ5TYNYRNEZSLNKHSAQRLR7QM6MCF" }, "identification": { "label": "en", "prob": 0.7638962268829346 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "es", "prob": 0.9895466566085815 }, null, null, null, { "label": "en", "prob": 0.955476701259613 }, null, null, { "label": "es", "prob": 0.9434626698493958 }, { "label": "en", "prob": 0.9050174951553345 }, { "label": "en", "prob": 0.9211118817329407 }, { "label": "en", "prob": 0.9211118817329407 }, { "label": "en", "prob": 0.9330965280532837 } ] }
554.2
1,388
https://iluplax.es/trabajos/digital-signage-carteleria-digital/irregular/
iluplax.es
1.005764
[ [ 564955223403, 564955224799 ] ]
null
true
[ 431992447 ]
false
2,608,976
Medicine Central™ is a quick-consult mobile and web resource that includes diagnosis, treatment, medications, and follow-up information on over 700 diseases and disorders, providing fast answers—anytime, anywhere. Explore these free sample topics: Stomatitis Abruptio Placentae abacavir/dolutegravir/lamivudine Arthritis, Juvenile Idiopathic (Rheumatoid) -- The first section of this topic is shown below -- Basics Primary ciliary dyskinesia (PCD) is a rare autosomal recessive disorder of cilia structure, function, and biogenesis leading to neonatal respiratory distress, chronic oto-sino-pulmonary disease, infertility, and organ laterality defects: PCD was formerly referred to as immotile cilia syndrome, but because cilia in most of these patients are not immotile but stiff, uncoordinated, or ineffective at beating, the name of the disorder was changed. When concurrent with situs inversus, chronic rhinosinusitis, and chronic bronchitis leading to bronchiectasis, the disease is referred to as Kartagener syndrome. PCD differs from secondary ciliary dyskinesia, which refers to ciliary defects acquired secondary to epithelial injury (i.e., infection, inflammation). Cilia are typically found in the sinuses, ears, and lung and on sperm. Synonym(s): Kartagener syndrome Epidemiology Prevalence 1 in 15,000 to 60,000 live births, although this is likely an underestimate because PCD is an underdiagnosed disease Etiology and Pathophysiology Most of the deficits seen in PCD can be explained by impaired ciliary function: The respiratory manifestations of PCD (chronic otitis media, chronic rhinosinusitis, chronic bronchitis leading to bronchiectasis) reflect the impaired mucociliary clearance due to impaired ciliary motility. The airways become inflamed due to the inability to remove microorganisms and respiratory irritants. The neonatal respiratory distress common in PCD reflects the impaired ability of cilia to clear lung fluid during the transition from fetal to neonatal life. ~50% of patients with PCD have laterality defects including situs inversus totalis and heterotaxy, which are attributed to the dysfunction of embryologic nodal cilia during development. During embryogenesis, nodal cilia normally beat in a clockwise direction and generate a fluid gradient. In PCD, in contrast to the waveform sliding motion of 9 + 2 cilia, nodal motile 9 + 0 cilia beat with a vertical/rotational motion resulting in a leftward flow of extracellular fluid which is important for cell signaling during the development of normal human left–right asymmetry (1). Male infertility is common (~50%) and reflects the impairment in sperm motility. Similarly, infertility and subfertility are common in females and are thought to reflect impaired ciliary motility in the fallopian tubes. Reports have linked hydrocephalus to PCD; thought to be related to impaired ciliary function of ependymal cells Genetics Predominantly an autosomal recessive disease In rare cases, autosomal dominant or X-linked recessive inheritance has been described. A genetically heterogeneous disorder that can be caused by an inherited defect in a ciliary axonemal, membrane, matrix, or assembly protein So far, specific mutations have been identified in 12 genes (DNAI1, DNAH5, DNAH11, DNAAF1, DNAAF2, DNAI2, RSPH9, RSPH4A, NME8, CCDC39, CCDC40, and DNAL1). Commonly Associated Conditions Oral-facial-digital syndrome type I Transposition of the great vessels and other cardiovascular abnormalities Hydrocephalus Tracheoesophageal fistula Biliary atresia Pyloric stenosis Severe GERD Asplenia or polysplenia Midgut volvulus Epispadias -- To view the remaining sections of this topic, please log in or purchase a subscription -- Basics Primary ciliary dyskinesia (PCD) is a rare autosomal recessive disorder of cilia structure, function, and biogenesis leading to neonatal respiratory distress, chronic oto-sino-pulmonary disease, infertility, and organ laterality defects: PCD was formerly referred to as immotile cilia syndrome, but because cilia in most of these patients are not immotile but stiff, uncoordinated, or ineffective at beating, the name of the disorder was changed. When concurrent with situs inversus, chronic rhinosinusitis, and chronic bronchitis leading to bronchiectasis, the disease is referred to as Kartagener syndrome. PCD differs from secondary ciliary dyskinesia, which refers to ciliary defects acquired secondary to epithelial injury (i.e., infection, inflammation). Cilia are typically found in the sinuses, ears, and lung and on sperm. Synonym(s): Kartagener syndrome Epidemiology Prevalence 1 in 15,000 to 60,000 live births, although this is likely an underestimate because PCD is an underdiagnosed disease Etiology and Pathophysiology Most of the deficits seen in PCD can be explained by impaired ciliary function: The respiratory manifestations of PCD (chronic otitis media, chronic rhinosinusitis, chronic bronchitis leading to bronchiectasis) reflect the impaired mucociliary clearance due to impaired ciliary motility. The airways become inflamed due to the inability to remove microorganisms and respiratory irritants. The neonatal respiratory distress common in PCD reflects the impaired ability of cilia to clear lung fluid during the transition from fetal to neonatal life. ~50% of patients with PCD have laterality defects including situs inversus totalis and heterotaxy, which are attributed to the dysfunction of embryologic nodal cilia during development. During embryogenesis, nodal cilia normally beat in a clockwise direction and generate a fluid gradient. In PCD, in contrast to the waveform sliding motion of 9 + 2 cilia, nodal motile 9 + 0 cilia beat with a vertical/rotational motion resulting in a leftward flow of extracellular fluid which is important for cell signaling during the development of normal human left–right asymmetry (1). Male infertility is common (~50%) and reflects the impairment in sperm motility. Similarly, infertility and subfertility are common in females and are thought to reflect impaired ciliary motility in the fallopian tubes. Reports have linked hydrocephalus to PCD; thought to be related to impaired ciliary function of ependymal cells Genetics Predominantly an autosomal recessive disease In rare cases, autosomal dominant or X-linked recessive inheritance has been described. A genetically heterogeneous disorder that can be caused by an inherited defect in a ciliary axonemal, membrane, matrix, or assembly protein So far, specific mutations have been identified in 12 genes (DNAI1, DNAH5, DNAH11, DNAAF1, DNAAF2, DNAI2, RSPH9, RSPH4A, NME8, CCDC39, CCDC40, and DNAL1). Commonly Associated Conditions Oral-facial-digital syndrome type I Transposition of the great vessels and other cardiovascular abnormalities Hydrocephalus Tracheoesophageal fistula Biliary atresia Pyloric stenosis Severe GERD Asplenia or polysplenia Midgut volvulus Epispadias There's more to see -- the rest of this entry is available only to subscribers. Citation Domino, Frank J., et al., editors. "Primary Ciliary Dyskinesia." 5-Minute Clinical Consult, 27th ed., Wolters Kluwer, 2020. Medicine Central, im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia. Primary Ciliary Dyskinesia. In: Domino FJF, Baldor RAR, Golding JJ, et al, eds. 5-Minute Clinical Consult. Wolters Kluwer; 2020. https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia. Accessed November 27, 2021. Primary Ciliary Dyskinesia. (2020). In Domino, F. J., Baldor, R. A., Golding, J., & Stephens, M. B. (Eds.), 5-Minute Clinical Consult (27th edition). Wolters Kluwer. https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia Primary Ciliary Dyskinesia [Internet]. In: Domino FJF, Baldor RAR, Golding JJ, Stephens MBM, editors. 5-Minute Clinical Consult. Wolters Kluwer; 2020. [cited 2021 November 27]. Available from: https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia. * Article titles in AMA citation format should be in sentence-case Copy Download MLAAMAAPAVANCOUVER TY - ELEC T1 - Primary Ciliary Dyskinesia ID - 816288 ED - Domino,Frank J, ED - Baldor,Robert A, ED - Golding,Jeremy, ED - Stephens,Mark B, BT - 5-Minute Clinical Consult, Updating UR - https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia PB - Wolters Kluwer ET - 27 DB - Medicine Central DP - Unbound Medicine ER - Try the app for free! 1. Download the Medicine Central app by Unbound Medicine 2. Select Try/Buy and follow instructions to begin your free 30-day trial You can cancel anytime within the 30-day trial, or continue using Medicine Central to begin a 1-year subscription ($39.95) Grapherence® [↑8] Primary Ciliary Dyskinesia Basics Epidemiology Etiology and Pathophysiology Commonly Associated Conditions Diagnosis History Physical Exam Differential Diagnosis Diagnostic Tests & Interpretation Treatment Surgery ​/ ​Other Procedures Ongoing Care Patient Education Prognosis Additional Reading Codes ICD-10 ICD-9 SNOMED Clinical Pearls Authors Bibliography Grapherence® [↑8] Search PRIME PubMed Related Topics Kartagener Syndrome Nasal Polyps Bronchiectasis Cystic Fibrosis Asthma Renew my subscription We're glad you have enjoyed Medicine Central! As a thank-you for using our site, here's a discounted rate for renewal or upgrade.
{ "warc_headers": { "warc-record-id": "<urn:uuid:45209405-144d-4949-97b0-38e1dcddd90b>", "warc-date": "2021-11-27T06:28:26Z", "content-type": "text/plain", "content-length": 9516, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:947c0025-5ead-4d0e-8c18-88c157f80196>", "warc-target-uri": "https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia?q=Bronchiectasis", "warc-block-digest": "sha1:ICHTPTU27CKK4XL5FXA4USVEH2MO4REO" }, "identification": { "label": "en", "prob": 0.62726891040802 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.888203501701355 }, null, null, null, null, null, null, { "label": "en", "prob": 0.8434593677520752 }, { "label": "en", "prob": 0.983013927936554 }, { "label": "en", "prob": 0.890359103679657 }, { "label": "en", "prob": 0.9631176590919495 }, { "label": "en", "prob": 0.983492910861969 }, { "label": "en", "prob": 0.881345808506012 }, null, null, { "label": "en", "prob": 0.9657956957817078 }, null, { "label": "en", "prob": 0.9463199973106384 }, { "label": "en", "prob": 0.8096773028373718 }, { "label": "en", "prob": 0.893732488155365 }, { "label": "en", "prob": 0.9474812746047974 }, { "label": "en", "prob": 0.8449370861053467 }, null, { "label": "en", "prob": 0.8842052817344666 }, { "label": "en", "prob": 0.9178589582443237 }, { "label": "en", "prob": 0.900791585445404 }, null, { "label": "en", "prob": 0.9122856259346008 }, null, { "label": "en", "prob": 0.8450407385826111 }, null, null, { "label": "en", "prob": 0.8201096057891846 }, null, null, null, null, null, { "label": "en", "prob": 0.8279839158058167 }, null, { "label": "en", "prob": 0.8434593677520752 }, { "label": "en", "prob": 0.983013927936554 }, { "label": "en", "prob": 0.890359103679657 }, { "label": "en", "prob": 0.9631176590919495 }, { "label": "en", "prob": 0.983492910861969 }, { "label": "en", "prob": 0.881345808506012 }, null, null, { "label": "en", "prob": 0.9657956957817078 }, null, { "label": "en", "prob": 0.9463199973106384 }, { "label": "en", "prob": 0.8096773028373718 }, { "label": "en", "prob": 0.893732488155365 }, { "label": "en", "prob": 0.9474812746047974 }, { "label": "en", "prob": 0.8449370861053467 }, null, { "label": "en", "prob": 0.8842052817344666 }, { "label": "en", "prob": 0.9178589582443237 }, { "label": "en", "prob": 0.900791585445404 }, null, { "label": "en", "prob": 0.9122856259346008 }, null, { "label": "en", "prob": 0.8450407385826111 }, null, null, { "label": "en", "prob": 0.8201096057891846 }, null, null, null, null, null, { "label": "en", "prob": 0.958344042301178 }, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8295328617095947 }, { "label": "en", "prob": 0.8219504356384277 }, { "label": "en", "prob": 0.9155126214027405 }, { "label": "en", "prob": 0.8654127717018127 }, { "label": "en", "prob": 0.9041439890861511 }, null, null, null, null, { "label": "en", "prob": 0.9122856259346008 }, null, null, { "label": "en", "prob": 0.8303536772727966 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9196663498878479 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9041439890861511 }, null, { "label": "en", "prob": 0.8024309873580933 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9586171507835388 } ] }
661.6
9,498
https://im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/816288/all/Primary_Ciliary_Dyskinesia?q=Bronchiectasis
im.unboundmedicine.com
0.965572
[ [ 564955224800, 564955231852 ], [ 564955231875, 564955232059 ], [ 564955232083, 564955232298 ], [ 564955232350, 564955232602 ], [ 564955232625, 564955233022 ], [ 564955233056, 564955233670 ], [ 564955233706, 564955233879 ], [ 564955233924, 564955234053 ], [ 564955234160, 564955234315 ] ]
null
true
[ 431992448, 419437400 ]
false
2,608,977
Note from the Editors: This essay is part III and the final part of an online symposium on D’Annunzio, Nietzsche and Bronze Age Pervert. Read part I, here, and part II, here. Opinions expressed in this symposium do not necessarily represent the views of the publication. Friedrich Nietzsche: A Right Turn from Conservatism and Liberal Christianity “I mistrust all systematizers and I avoid them. The will to a system is a lack of integrity.” – Friedrich Nietzsche, Twilight of the Idols “First let us make the younger generation good pagans and afterwards let us make them Christians.” – C.S. Lewis The notion of a Nietzschean right-wing outside of conservatism should be fairly coherent for many. This, after all, is what figures like Bronze Age Pervert (BAP) are inspiring and igniting online – a Right which is not ‘classically liberal’, nor Republican, nor rooted in the Enlightenment, but rather invested in mythology, beauty, health, and national greatness. But another idea – the question of whether it is possible to be Christian and not liberal – should be considered an equally important issue. Liberal Christianity was exemplified by George W. Bush. The imperial elements of Christianity made subservient to his secular nation-building, during which the sacrifice of the oldest Christian communities were seen as necessary collateral damage for feminism and gay rights to emerge in the Middle East. Obama fulfilled the great promise of Bush II, allowing Christian charity to become a deranged, weaponized empathy in which abortion and gay marriage were the new acts of ‘love’ for the downtrodden. Wokeness itself is less some kind of neo-Marxism, and more a Christian heresy. The Puritans who founded Harvard and Yale as a vehicle for their Unitarian, Masonic, Deistic beliefs, have simply reached the endgame of their religion – a Gnostic hatred for our world and our spiritual and historic homelands. But despite Christians having long been at the heart of the Right, whether you can be both Christian and right-wing requires some introspection. Today the Pope is certainly not right-wing, and more of a Davos/Geneva man. The same can be said of all the ecclesial communities, at least in the West, who would surely have no problem in recognizing the teaching authority of this pope. But what does it mean that a man of the appetites of Trump was considerably more sympathetic to their vulnerabilities in the American system than the devout Bush? It means that Christians need to ensure they are not afflicted by their own heresy, to exorcise the liberalism which had made Christianity into an egalitarian acid of culture. The notion that Nietzsche can help in this cleansing may be regarded as fanciful for many. After all, that a thinker who literally described himself as the Antichrist can offer Christians anything of value sounds absurd. The immediate reaction would be to ask the obvious: Which Nietzsche? The Nietzsche who killed God? The Nietzsche who in the persona of Zarathustra declared himself to be the Übermensch, a being necessarily higher than any god or mere philosopher? The Nietzsche who declared himself beyond good and evil? But if Nietzsche is so important for a new, non-reactionary Right, we must at least entertain the idea that there might be a way for his thought to be reconciled with right-wing Christianity, particularly with those who have not abandoned their own essential teachings of authority and spiritual aristocracy. *** What does it mean to be right-wing? Today right-wing politics is not about ‘return’ or conserving, but rather about believing in what the throne and altar stood for. The passage out of the Dark Ages was not ‘Conservative’. Gothic architecture was not ‘Conservative’. Bach and Shakespeare were not ‘Conservative’. And Christianity itself was not ‘Conservative’. It was fulfillment, consummation, and partnership with an intervening Divine Energy, and it was Progressive in the true sense of the word. Nietzsche’s philosophy is in some sense analogical to this. He abhorred the sentimental Reich nationalism of Wagner. He did not want to conserve its sentimentality, but to blow it up. As his recent biographer, Sue Prideaux, writes: “The Kaiser and his Iron Chancellor Bismarck had famously forged the arch-conservative and repressive Second Reich on industrialisation, capitalism, unscrupulous expansionism, the Protestant Church, artistic conservatism and censorship. All this had coagulated into one massive, congested, sclerotic, nationalist, repressive and authoritarian world power – as Nietzsche had feared would happen. Even while the edges of Nietzsche’s mind were fraying, he had not let go his horror of the Second Reich.” But Prideaux goes too far. At the same time that Nietzsche was no conservative, he was also clearly no liberal or nihilist, despite the efforts of the likes of Jacques Derrida, Michel Foucault, and Walter Kauffman in this reaction. He was no liberal because he detested egalitarianism. He also detested Socialism – except as a great test for Europe. He was no liberal because he hated the liberal nation-building of his own time. He mocked Kantianism and utilitarianism and prophesied our own time, in which the last men would take revenge like great tarantulas in a new society built on the Great Resentment. When one has no real health, or strength to carry the truth of the will to power, he must denigrate the entire natural order to gain the power of a slave. Nietzsche’s great insight was that all the philosophical, moral, and religious systems of his day were founded on slave morality, a decadent will to truth only for the sake of parasitic power. This is why he focused on aspects of life exiled by the intelligentsia of his time – the importance of fresh air, the body, exercise, diet, art, and daily living. Likewise, the last thing that the new Right needs today are a new system, a new set of policies, or new arguments. No system can renew or inspire. This is also why it is not really necessary to read Nietzsche (or BAP for that matter) in the way one reads any other modern philosopher, of reading to discover and propagate systems, as his is not a philosophy of the university scholar formulating a system to win himself accolades. Instead, we read Nietzsche for wisdom and a healthy critique of decadence. As BAP says, there are portals – and portals lead into uplands, into eternity, into things greater. This is how Nietzsche can be a path forward, and why his approach to philosophy should be the essence of the new Right. The German philosopher presents us with great thought, accomplished on mountaintops, as he hiked the weak intellectualism out of his body, to shake us out of conservatism, whilst energizing an impulse towards creation. Practically, the new Right shouldn’t seek sentimental reverence for what is old and past – which ultimately leads nowhere – but embrace simple things; things that are already very popular with those outside the conservative/liberal trap: conservation of beauty, preservation of culture, ordered borders, denunciation of the current cultural orthodoxy, and revolt against the new Regime of safetyism. *** Is it not clear then why Christians should read Nietzsche? From a Christian point of view, of course, no earthly thing is absolutely essential, but that does not mean Providence does not offer gifts. After all, the Church historically made profitable use of the Pax Augustana, Greek culture, Aristotle, and the best of Pagan Europe. Justin Martyr in his First Apology to the Roman Emperor, Antoninus Pius, circa AD 156, writes: “We have been taught that Christ is the first-born of God, and we have declared above that He is the Word of whom every race of men were partakers; and those who lived reasonably are Christians, even though they have been thought atheists; as, among the Greeks, Socrates and Heraclitus, and men like them…” The same can be true of Nietzsche. Just as Aristotle corrected a Platonic tendency to flee the body, so does Nietzsche ask us once again to consider the fierce glories of earthly life and becoming. And just as the likes of Heraclitus were justified by Justin Martyr as pre-Christians, there is a good case for Christians to argue that Nietzsche lived not in a pre-Christian world, but a post-Christian world. Nietzsche wasn’t necessarily wrong in his famous statement “God is dead” – effectively he was dead to most of the inhabitants of the drab world of post-Christendom. As he would say, only where there are tombs are there resurrections. What Nietzsche and the faith of the Church fathers have in common is the idea that asceticism and charity is not abasement, or merely a cross, but a pathway to transfiguration. In the persona of Zarathustra, Nietzsche says the bridge to the Übermensch and path of true life for those who undergo to overcome nihilism and create their own values, is to transform three times: “Of three metamorphoses of the spirit I tell you: how the spirit becomes a camel; and the camel, a lion; and the lion, finally, a child.” To be the camel means to carry a great burden… perhaps a cross? The camel becomes the conquering lion, who can achieve a mastery – but this is not the end. To complete the path of the spirit, the ‘No’ of the lion must become the ‘Yes’ of the child… “The child is innocence and forgetting, a new beginning, a game, a self-propelled wheel, a first movement, a sacred ‘Yes.’ For the game of creation, my brothers, a sacred ‘Yes’ is needed.” Nietzsche famously said he could only believe in a god who dances. This is what the Church Fathers themselves believed, what John Damascene called perichoresis: the great movement within God. Instead of John Damascene, the West, even as it bombs Damascus, has embraced the Christianity of the ‘weak’ postmodern thought of another ‘John’ from Turin: Gianni Vattimo, who saw in Nietzsche’s death of God, not as a prelude to a resurrection, but the death of any positive content or ‘Yes’ in Christianity – a fulfillment of faith as pure kenosis, humiliation, and of cross with no resurrection in some decadent act of ‘love’ emptying of all being. Nietzsche by contrast exhorts us to become. *** Beneath this Christian and Nietzschean exhortation, is the supposition shared by both that humanity and the universe are destined for glory, if they overcome the threat of nihilism. This is what C.S. Lewis means when he says our generation needs to become pagan before it can become Christians. The weakness of Christ is only worth notice because of the strength from which it descends. This notion of humanity awaiting glorification and even deification cannot be taken from a mere reverence for whatever Reich we find ourselves in. It must be sought in the fire of the Logos, in the world of Value that supersedes conventional ethics. Lou Salomé, the philosophical companion who spurned Nietzsche’s romantic advances, recalled that in their conversations that they spoke of nothing but God. The philosopher’s breakdown in Turin, almost a re-enaction of an episode from Dostoevsky’s Crime and Punishment, itself speaks of a sympathy for Christians belied by some of his wilder rhetoric. What if the episode is the culmination of his philosophy of becoming, and not merely a personal failure or disease? While incompatibilities at some point may likely still arise, Nietzsche need not be an enemy of Christians. And Christians need not flounder in the liberalism of their brethren, and relinquish a role in the great challenge of our times. Nietzsche’s philosophy of the will to power and the achievement of the Übermensch may perhaps be a kind of postmodern recovery of the tradition traced from Heraclitus to the Church Fathers. If one reads closely, listens closely, one may eventually need to ask: is the will to power the will to God?
{ "warc_headers": { "warc-record-id": "<urn:uuid:0bf61fab-921d-46a6-8e02-676e6729933b>", "warc-date": "2021-11-27T04:43:11Z", "content-type": "text/plain", "content-length": 11987, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:6e021160-5555-4ce1-90b8-6936abc8c39d>", "warc-target-uri": "https://im1776.com/2021/11/09/the-will-to-christ/", "warc-block-digest": "sha1:DSV5WA7GRMUY6SVG4HOJLXYLQI6KDXKP" }, "identification": { "label": "en", "prob": 0.9381318688392639 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.855789303779602 }, null, { "label": "en", "prob": 0.9582829475402832 }, null, { "label": "en", "prob": 0.9078720211982727 }, null, { "label": "en", "prob": 0.9267907738685608 }, { "label": "en", "prob": 0.9266899228096008 }, { "label": "en", "prob": 0.9842478632926941 }, { "label": "en", "prob": 0.9490230083465576 }, { "label": "en", "prob": 0.9503875970840454 }, { "label": "en", "prob": 0.9636033773422241 }, { "label": "en", "prob": 0.9788585305213928 }, { "label": "en", "prob": 0.9872367978096008 }, { "label": "en", "prob": 0.9445074796676636 }, { "label": "en", "prob": 0.9654204845428467 }, null, { "label": "en", "prob": 0.9883701205253601 }, { "label": "en", "prob": 0.9672948122024536 }, { "label": "en", "prob": 0.9748406410217285 }, { "label": "en", "prob": 0.9825461506843567 }, { "label": "en", "prob": 0.9728646278381348 }, { "label": "en", "prob": 0.9622647166252136 }, { "label": "en", "prob": 0.968329906463623 }, { "label": "en", "prob": 0.9746353030204773 }, { "label": "en", "prob": 0.9315615296363831 }, null, null, { "label": "en", "prob": 0.9421936273574829 }, { "label": "en", "prob": 0.9937320947647095 }, { "label": "en", "prob": 0.8898423910140991 }, { "label": "en", "prob": 0.9873731136322021 }, { "label": "en", "prob": 0.9769974946975708 }, { "label": "en", "prob": 0.910392701625824 }, { "label": "en", "prob": 0.9452171325683594 }, { "label": "en", "prob": 0.9826416969299316 }, { "label": "en", "prob": 0.9527981877326965 }, { "label": "en", "prob": 0.9358318448066711 }, { "label": "en", "prob": 0.9631000757217407 }, { "label": "en", "prob": 0.9359826445579529 }, null, { "label": "en", "prob": 0.9492062926292419 }, { "label": "en", "prob": 0.9618682265281677 }, { "label": "en", "prob": 0.927945077419281 } ] }
298.4
11,837
https://im1776.com/2021/11/09/the-will-to-christ/
im1776.com
0.048239
[ [ 564955241937, 564955242250 ], [ 564955243268, 564955243403 ], [ 564955243663, 564955243786 ] ]
null
true
[ 431992449 ]
false
2,608,978
The ALA is made possible by contributions from its partners, is supported by NCRIS, is hosted by CSIRO, and is the Australian node of GBIF. Acknowledgement of Traditional Owners and Country The Atlas of Living Australia acknowledges Australia’s Traditional Owners and pays respect to the past and present Elders of the nation’s Aboriginal and Torres Strait Islander communities. We honour and celebrate the spiritual, cultural and customary connections of Traditional Owners to country and the biodiversity that forms part of that country.
{ "warc_headers": { "warc-record-id": "<urn:uuid:ee5ac612-d702-4b89-9c0f-72da280f1e5d>", "warc-date": "2021-11-27T06:00:09Z", "content-type": "text/plain", "content-length": 543, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:a6f12bae-1793-4ac5-95c1-4ccb6ba7e2b6>", "warc-target-uri": "https://images.ala.org.au/image/2981bea0-8c4a-4dd2-abfd-41cc23358ac3", "warc-block-digest": "sha1:MB3SX54YZEJ24TF6DBSLCUVDGD4UNBUF" }, "identification": { "label": "en", "prob": 0.9182658195495605 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9921593070030212 }, { "label": "en", "prob": 0.8398966193199158 }, { "label": "en", "prob": 0.9000473022460938 } ] }
140.8
539
https://images.ala.org.au/image/2981bea0-8c4a-4dd2-abfd-41cc23358ac3
images.ala.org.au
0
[]
null
false
[]
true
2,608,979
Bowdoin College holds copyright for materials created by the College or for which rights have been transferred to the College. For more information contact the George J. Mitchell Department of Special Collections & Archives, Bowdoin College Library: scaref@bowdoin.edu.
{ "warc_headers": { "warc-record-id": "<urn:uuid:af78147a-0378-4e4c-992e-043bb0bc1ee5>", "warc-date": "2021-11-27T06:34:23Z", "content-type": "text/plain", "content-length": 269, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:8eee1841-9451-42dc-814c-322cec1378db>", "warc-target-uri": "https://images.bowdoin.edu/omeka/items/show/4582", "warc-block-digest": "sha1:CNU2QTAKH64HWFZ5BKVWVVHTZYEUJT4H" }, "identification": { "label": "en", "prob": 0.9127733111381531 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9127733111381531 } ] }
265.2
269
https://images.bowdoin.edu/omeka/items/show/4582
images.bowdoin.edu
1.018587
[ [ 564955246200, 564955246474 ] ]
null
true
[ 431992451 ]
false
2,608,980
Colleges and Divisions / Division of Academic Affairs / 2019 / Sophomore Days of Service - DeKalb County Rehab and Nursing Center - 02-15-19
{ "warc_headers": { "warc-record-id": "<urn:uuid:f8892c6e-8bbb-488e-9a98-f174b5dad858>", "warc-date": "2021-11-27T06:30:34Z", "content-type": "text/plain", "content-length": 140, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:11b82dda-23eb-4846-9561-8af0ed9e1932>", "warc-target-uri": "https://images.media.niu.edu/picture.php?/347356", "warc-block-digest": "sha1:4RGHMCXVCW3ZXWV5LCL7XM2NZFUFVPU5" }, "identification": { "label": "en", "prob": 0.8060460686683655 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8060460686683655 } ] }
3,661.3
140
https://images.media.niu.edu/picture.php?/347356
images.media.niu.edu
0
[]
null
false
[]
true
2,608,981
If you're seeing this message, that means JavaScript has been disabled on your browser, please enable JS to make Imgur work.
{ "warc_headers": { "warc-record-id": "<urn:uuid:f061af2f-63fe-4f3f-ba6e-203e08072e18>", "warc-date": "2021-11-27T06:52:18Z", "content-type": "text/plain", "content-length": 124, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:c57fcbc4-6bff-4224-ab68-8f9e51ade1cd>", "warc-target-uri": "https://imgur.com/4ACCJPX", "warc-block-digest": "sha1:JBQTHQ2Z2EZNIAZ2GZ3EBBLE5ZCUL2CA" }, "identification": { "label": "en", "prob": 0.9479940533638 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9479940533638 } ] }
1,216.2
124
https://imgur.com/4ACCJPX
imgur.com
0
[]
null
false
[]
true
2,608,982
If you're seeing this message, that means JavaScript has been disabled on your browser, please enable JS to make Imgur work.
{ "warc_headers": { "warc-record-id": "<urn:uuid:36dd68bc-a35e-477c-9c32-b8d9add041db>", "warc-date": "2021-11-27T06:24:56Z", "content-type": "text/plain", "content-length": 124, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:c988fbbd-c7b9-4f8e-9541-56da850abbc0>", "warc-target-uri": "https://imgur.com/FBCmr0I", "warc-block-digest": "sha1:JBQTHQ2Z2EZNIAZ2GZ3EBBLE5ZCUL2CA" }, "identification": { "label": "en", "prob": 0.9479940533638 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9479940533638 } ] }
1,216.2
124
https://imgur.com/FBCmr0I
imgur.com
0
[]
null
false
[]
true
2,608,983
God has created and loves all that exists. God's deep and abiding love for the world is revealed most clearly in the life, death, and resurrection of Jesus Christ. God loves, saves, and forgives us by grace alone through faith in Jesus Christ. The Bible is the inspired Word of God and is the authoritative source and norm of our proclamation, faith, and life. God's Spirit speaks through the scriptures to create and sustain the Church for God's mission in the world. God works in and through the Church by the power of the Holy Spirit to redeem and restore all things. God offers the gifts of new life and forgiveness of sin through the sacraments of Baptism and Holy Communion.
{ "warc_headers": { "warc-record-id": "<urn:uuid:a739bf25-2689-4548-859b-e5f2683460e7>", "warc-date": "2021-11-27T05:44:47Z", "content-type": "text/plain", "content-length": 680, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:7014d5c8-83fd-424f-b4ef-fe3f7ee6fa36>", "warc-target-uri": "https://immanuelsalina.org/what-we-believe", "warc-block-digest": "sha1:5S2BINXWNXD6I6W2EPCXID7JX52H4P35" }, "identification": { "label": "en", "prob": 0.9453846216201782 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9648833274841309 }, { "label": "en", "prob": 0.9179753661155701 }, { "label": "en", "prob": 0.9447540044784546 }, { "label": "en", "prob": 0.9712501168251038 }, { "label": "en", "prob": 0.9134203791618347 } ] }
148.4
680
https://immanuelsalina.org/what-we-believe
immanuelsalina.org
0
[]
null
false
[]
false
2,608,984
More off this less hello salamander lied porpoise much over tightly circa horse taped so innocuously outside crud mightily rigorous plot life. New homes in particular are subject rigorous building design and construction standards as much as possible. As you’re tapping, scrolling, and swiping on your phone, you probably don’t give much thought to the fact that your apps are consuming electricity — just that they’re chipping away at your battery life. It’s engaging. It’s hopeful. It pushes the plot forward. Only a quarter of young adults are financially literate. You don’t want to overwhelm them with terrible advice. John Mcarthy Before you click away, disappointed that I brought up something as practical and boring as time management, hear me out. My intent is not to crush your spirits. Current Mobile Cloud The average U.S. iPhone owner uses 1–2 gigabytes of LTE data per month, according to some studies. That data comes at an energy cost that’s opaque, because we can’t see it directly. You can’t look to your peers in the industry, because all they’re going to tell you is that they are killing it, crushing it, changing the world. Example: Journey towards design perfection Business and core management app are for enterprise. The truth, of course, is that these people have been lying to you all along. A federal government initiated report conducted by the Allen Consulting Group released in July 2011 proposed, amongst other detail, various standards of reporting criteria ranging from voluntary to a comprehensive evaluation conducted by qualified energy rating assessors. The Happiness Hypothesis These simple survey measures seem credible. But according to psychologists, happiness and life satisfaction do not coincide. Life satisfaction has a cognitive component — individuals have to step back to assess their lives — while happiness reflects positive and negative emotions that fluctuate. In other words, happiness may be an element achieved by: The image should be dark, and not have a lot of contrast-y edges. The text has to be white — I dare you to find a counter-example that’s clean and simple. Seriously. Just one. Test it at every screen/window size to make sure it’s legible. The challenges and struggles of the hero’s journey exist for a reason: They help you and your business grow. Hip and Instagrammy, but a bit difficult to read. Almost all of the energy impact from this process is incurred by your mobile provider at the base station, which is part of a vast network of these towers deployed across countries to ensure there are no gaps in coverage. That sprawl requires massive amounts of energy. First Approach for Success The American Council for an Energy-Efficient Economy estimated in a 2012 study that the energy impact of data is far greater than previously anticipated. In real terms it is about 5.12 kilowatt hours per gigabyte of data consumed. It also uncovered where most of that cost is incurred: cloud providers. Sixty percent of Africans are under the age of 25. To see Africa through their eyes is to see a continent brimming with potential and opportunity: https://t.co/Sgxobv2iga pic.twitter.com/3NvQOwwTb5 — Bill Gates (@BillGates) September 10, 2018 Working extremely long hours every day of the week might seem exciting at first, but it always leads to burnout. The Dreamy Factors In order to get everyone on the same page, with the right incentives, we have to accomplish a few things: Return to investors. Our investors took a huge bet on us and they deserved to get a handsome return. Return to employees. Our team also took a big bet on us over the years by investing their time. They deserved a return as well. Stock options. If we weren’t planning to sell the company, giving employees stock options didn’t make sense. We needed a new way for the team to share in the success of the business. The “preference-based” perspective starts from the idea that people are better off when their reality matches better what they themselves consider to be important. Solid use of color, capitalization, and spacing. Preferences thus have a cognitive “valuational” component: they reflect people’s well-informed and well-considered ideas about what a good life is, not merely their market behaviour. Read: 20 Measures of Energy This does not coincide with subjective life satisfaction. Recall the example of patients with the locked-in syndrome reporting high levels of satisfaction because they have adapted to their situation. This does not mean that they would not prefer it. So it’s up to networks and cloud providers to push energy efficiency forward Every megabyte has a cost, even if it’s not readily visible, but it’s easy to forget that. From the solo developer to the cloud hoster, awareness and ownership of energy efficiency is key. Over to You I hope the contrast in these stories help to highlight what we’ve learned: Light comes from the sky. Smart phones are a massive energy drain. Buy ContentBerg for your blog. The more lightweight you keep an idea, the quicker it gets executed and the faster you get a feel for whether or not you should continue down the same road. We’d love to show you how to make a great living as a writer. Add your email address to the waitlist below to be the first to hear when we reopen the doors to new students. Like this: Like Loading... Beauty Fashion Lifestyle Top Leave a Reply Cancel reply Prev Next CONTACT Address: 6, Catholic Mission Street, Lagos Island, Lagos , Nigeria Phone: +234(0)8037750777 E-mail: [email protected] LATEST BLOG NEWS Do you know Sharpener and pencil?” October 19, 2021 Will I ever get married? April 1, 2021 First official day at the new office March 1, 2021 TAGS Beauty bipolar boldness brave Christianity Culture DIY facing your fear Fashion fear Featured Life Lifestyle Morning Music Outfits Photography Slider Top Travel
{ "warc_headers": { "warc-record-id": "<urn:uuid:71c3ab6a-990e-42c1-bdca-43471f3cf84f>", "warc-date": "2021-11-27T04:42:16Z", "content-type": "text/plain", "content-length": 5926, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:259a74f2-262e-4992-8fc1-57187c9a461c>", "warc-target-uri": "https://imoleayo.com/taking-a-short-walk/", "warc-block-digest": "sha1:NV7PJNWP7JW5G2PM62IDGUIQJN3BEWZL" }, "identification": { "label": "en", "prob": 0.8628124594688416 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9585601091384888 }, { "label": "en", "prob": 0.9637112021446228 }, { "label": "en", "prob": 0.8830297589302063 }, { "label": "en", "prob": 0.929474949836731 }, null, { "label": "en", "prob": 0.9822458028793335 }, null, { "label": "en", "prob": 0.8570933938026428 }, { "label": "en", "prob": 0.9704288244247437 }, null, { "label": "en", "prob": 0.929579496383667 }, { "label": "en", "prob": 0.9957922101020813 }, { "label": "en", "prob": 0.9742283821105957 }, null, { "label": "en", "prob": 0.9273499250411987 }, { "label": "en", "prob": 0.9392615556716919 }, { "label": "en", "prob": 0.9545573592185974 }, { "label": "en", "prob": 0.9660710096359253 }, { "label": "en", "prob": 0.9070722460746765 }, { "label": "en", "prob": 0.9305541515350342 }, { "label": "en", "prob": 0.9707341194152832 }, { "label": "en", "prob": 0.9577131271362305 }, { "label": "en", "prob": 0.8084539771080017 }, { "label": "en", "prob": 0.9269147515296936 }, { "label": "en", "prob": 0.9489374160766602 }, { "label": "en", "prob": 0.8997634053230286 }, { "label": "en", "prob": 0.8105097413063049 }, { "label": "en", "prob": 0.9722312688827515 }, null, { "label": "en", "prob": 0.9735734462738037 }, { "label": "en", "prob": 0.9797729849815369 }, { "label": "en", "prob": 0.9951171278953552 }, { "label": "en", "prob": 0.885947585105896 }, { "label": "en", "prob": 0.9458079934120178 }, { "label": "en", "prob": 0.8542511463165283 }, { "label": "en", "prob": 0.9120638966560364 }, null, { "label": "en", "prob": 0.9830368161201477 }, { "label": "en", "prob": 0.8352442979812622 }, { "label": "en", "prob": 0.9273170828819275 }, { "label": "en", "prob": 0.8453502058982849 }, { "label": "en", "prob": 0.8948283195495605 }, { "label": "en", "prob": 0.9429060220718384 }, { "label": "en", "prob": 0.8541420102119446 }, null, { "label": "en", "prob": 0.921583354473114 }, { "label": "en", "prob": 0.9580070972442627 }, null, null, null, { "label": "en", "prob": 0.8027464151382446 }, null, { "label": "en", "prob": 0.9912735223770142 }, null, { "label": "en", "prob": 0.887873649597168 }, null, null, null, { "label": "en", "prob": 0.9766942858695984 }, { "label": "en", "prob": 0.9089444875717163 }, { "label": "en", "prob": 0.9437456130981445 }, null, null ] }
632.4
5,862
https://imoleayo.com/taking-a-short-walk/
imoleayo.com
0
[]
null
false
[]
true
2,608,985
Two short years ago we created this message box on our home page, asking for your help to keep this site up and running. In that time, many of you have generously donated to our PayPal account and we are forever grateful. With your help, we've been able to make the necessary upgrades to our server to keep the site running more smoothly than ever! The meager ad revenue generated by this site isn't sufficient to cover the annual cost of running the server, and we who manage it have never made money from it. In an effort to continue serving the needs of aviation enthusiasts around the world, we continue to ask for donations to keep this site up and running. If you're still enjoying this website and would like to help us continue being the BEST site on the Internet for your aviation screenshot needs, please consider donating.
{ "warc_headers": { "warc-record-id": "<urn:uuid:e4fa75f9-ac5c-46ed-acbb-a38c43e30994>", "warc-date": "2021-11-27T06:03:40Z", "content-type": "text/plain", "content-length": 833, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:102ae778-71a0-457e-a7f8-c3513288d965>", "warc-target-uri": "https://impdb.org/index.php?title=Special:UserLogin&returnto=Special%3AWhatLinksHere%2FFile%3AVlcsnap-2015-12-25-18h29m26s63.jpg&printable=yes", "warc-block-digest": "sha1:5QXOX2UYX6O7B3FIVA6TPK6IOFVVBI5K" }, "identification": { "label": "en", "prob": 0.9685299396514893 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9643186330795288 }, { "label": "en", "prob": 0.9879475235939026 }, { "label": "en", "prob": 0.9633724689483643 } ] }
229.2
833
https://impdb.org/index.php?title=Special:UserLogin&returnto=Special%3AWhatLinksHere%2FFile%3AVlcsnap-2015-12-25-18h29m26s63.jpg&printable=yes
impdb.org
0
[]
null
false
[]
true
2,608,986
Gallery of Secretfun.in If you are interested to see our callgirl photo please my Whatsapp No. pin to me as Hi Vadodara and wait for 15 minutes to get photo.
{ "warc_headers": { "warc-record-id": "<urn:uuid:339d7a06-7e5c-4a59-b7e3-ff0a535c698b>", "warc-date": "2021-11-27T04:58:54Z", "content-type": "text/plain", "content-length": 157, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:18fe4e7a-1685-4980-8a03-e110e4fe4985>", "warc-target-uri": "https://in.admyurl.com/viewDetails/SECRET-FUN-BHUBANESWAR-ESCORT-CALL-GIRL-SERVICE/15388", "warc-block-digest": "sha1:D2NP3K2MN3N3R23E3BQOG6CKVWKWDB7I" }, "identification": { "label": "en", "prob": 0.912171483039856 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.912171483039856 } ] }
2,251.5
157
https://in.admyurl.com/viewDetails/SECRET-FUN-BHUBANESWAR-ESCORT-CALL-GIRL-SERVICE/15388
in.admyurl.com
0
[]
null
false
[]
false
2,608,987
Less than 5 kilometers Less than 20 kilometers Less than 50 kilometers Less than 100 kilometers No filter
{ "warc_headers": { "warc-record-id": "<urn:uuid:71fcb57d-fc01-4382-b689-149ed850bb85>", "warc-date": "2021-11-27T06:35:49Z", "content-type": "text/plain", "content-length": 105, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:d9b3addf-c134-4ba7-b5ef-9b9542d7805a>", "warc-target-uri": "https://in.bebee.com/jobs/kasauli/telecaller", "warc-block-digest": "sha1:ZAJG256IE5IGWRZDJDTT77IBOW2RSPO3" }, "identification": { "label": "en", "prob": 0.8358513712882996 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8358513712882996 } ] }
7,300.9
105
https://in.bebee.com/jobs/kasauli/telecaller
in.bebee.com
0
[]
null
false
[]
true
2,608,988
We scheduled delivery of same day flowers to my young granddaughter in the hospital. She had surgery the day before. Even though we paid the extra fee – the flowers were NEVER delivered!!! But what really infuriates me is that no one from FTD even bothered to let me know! I kept calling my daughter in law to see if the flowers and gift had been delivered and she said no. Finally at 6:15 PM on a Saturday I call FTD! I am told the flowers did not get delivered, would not be delivered but they will try to get to it on Monday! Are you kidding me??? If I had not called I never would have known this! I cannot believe the horrible customer service! My granddaughter is being released on Monday, she would not have even been there! And to top it off – they would have kept the extra fee for the same day Saturday delivery! How dishonest! Then when I tell the customer service rep to cancel the order; she proceeds to hound me to have it delivered on Monday and the will refund me $3.00 – Unbelievable!!!??? I will NEVER use this company again! This was important and they could have cared less! Post navigation ← Western Union They are scammers, they take your money before checking… ChristianMingle I spent over an 2 hours to you to allow a name you woul… →
{ "warc_headers": { "warc-record-id": "<urn:uuid:46473d1f-ade1-422c-98ce-a102891d7cb8>", "warc-date": "2021-11-27T05:57:06Z", "content-type": "text/plain", "content-length": 1272, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:e56c478e-3886-4e28-bad4-edaf65f2ce23>", "warc-target-uri": "https://incomplaintt.com/ftd-com-horrible-experiencewe-scheduled-delivery/", "warc-block-digest": "sha1:MIIV452APRX2ZVI7EHU4YRCFMR2YXK5T" }, "identification": { "label": "en", "prob": 0.9703954458236694 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9879418015480042 }, null, { "label": "en", "prob": 0.9397825598716736 } ] }
849.5
1,258
https://incomplaintt.com/ftd-com-horrible-experiencewe-scheduled-delivery/
incomplaintt.com
0
[]
null
false
[]
false
2,608,989
Its Sat/11/14/15 and we just left Red Lobster in Toms River, NJ. The NEW Ultimate Feast that we ordered was terrible and the lobster tail looked either burnt or rotted on the end. We ordered two of these dinners at $29.49 each. My husband got melted butter and lemon on his plate, but I did not. The food was not good at all. I barely got a tablespoon of rice on my plate. We have been going there since it opened. But if Red Lobster is starting to cut back on the quality of their food and still charge high prices, then we are no longer going to be a customer. The meals were lousy. Stop being so cheap and go back to the way it was. I should have refused to pay the bill. But that is not my style. Either improve on the food and how it is presented or can expect to tell everyone not to go there. It is to expensive to be served lousy food. I can be reached. I do expect to here from you. Post navigation ← Dish Network Called to request how to lower monthly charges. After a… Acura I purchased a 2016 RDX with the advanced package. The S… →
{ "warc_headers": { "warc-record-id": "<urn:uuid:f9c41595-4c36-4e07-ab45-5e730c1a8435>", "warc-date": "2021-11-27T06:06:01Z", "content-type": "text/plain", "content-length": 1052, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:733ac61c-4a02-44e0-bf54-7bfa2ebcd881>", "warc-target-uri": "https://incomplaintt.com/red-lobste-its-sat-11-14-15-and-we-just-left-red-lobster-in-toms-r/", "warc-block-digest": "sha1:BTHOOZDW5A77TNJECKYEWW5EGTUAI34K" }, "identification": { "label": "en", "prob": 0.9541114568710327 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9799078702926636 }, { "label": "en", "prob": 0.9900027513504028 }, null, { "label": "en", "prob": 0.863706648349762 } ] }
597.7
1,044
https://incomplaintt.com/red-lobste-its-sat-11-14-15-and-we-just-left-red-lobster-in-toms-r/
incomplaintt.com
0
[]
null
true
[]
false
2,608,990
If your knowledge of English is good, you can help with translating pages to other languages you know, so more people can understand it!
{ "warc_headers": { "warc-record-id": "<urn:uuid:66a35315-85ea-474b-87af-4d702ba231f5>", "warc-date": "2021-11-27T06:34:12Z", "content-type": "text/plain", "content-length": 136, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:41c82d9b-0afa-46fc-83fe-e766392b6872>", "warc-target-uri": "https://incubator.m.wikimedia.org/wiki/User_talk:Nazmul.t2", "warc-block-digest": "sha1:MHER4I4BHJV6TMI6RZVBTND5PB463YTU" }, "identification": { "label": "en", "prob": 0.9373408555984497 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9373408555984497 } ] }
405.4
136
https://incubator.m.wikimedia.org/wiki/User_talk:Nazmul.t2
incubator.m.wikimedia.org
1.022059
[ [ 564955247534, 564955247673 ] ]
null
true
[ 407103282, 431992462 ]
false
2,608,991
Household Consumption and Expenditure Surveys (HCES) 1 Apply Household Consumption and Expenditure Surveys (HCES) filter
{ "warc_headers": { "warc-record-id": "<urn:uuid:080c3d42-ad7d-4078-bbfb-0b5216faee54>", "warc-date": "2021-11-27T06:28:41Z", "content-type": "text/plain", "content-length": 120, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:b9901b38-8b0c-4064-bf05-175e6390e3b7>", "warc-target-uri": "https://inddex.nutrition.tufts.edu/data4diets/indicators?f%5B0%5D=field_guiding_framework_food_sec%3A11&f%5B1%5D=field_guiding_framework_level%3A20&f%5B2%5D=field_guiding_framework_food_sec%3A14&f%5B3%5D=field_data_source_collection%253Afield_data_source_term_%3A36&f%5B4%5D=field_guiding_framework_level%3A19", "warc-block-digest": "sha1:KTMKNM5TUHTV2372MBUKYQFU2XH63W7J" }, "identification": { "label": "en", "prob": 0.8104775547981262 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.8104775547981262 } ] }
568.8
120
https://inddex.nutrition.tufts.edu/data4diets/indicators?f%5B0%5D=field_guiding_framework_food_sec%3A11&f%5B1%5D=field_guiding_framework_level%3A20&f%5B2%5D=field_guiding_framework_food_sec%3A14&f%5B3%5D=field_data_source_collection%253Afield_data_source_term_%3A36&f%5B4%5D=field_guiding_framework_level%3A19
inddex.nutrition.tufts.edu
0
[]
null
false
[]
true
2,608,992
"This emergency number has WhatsApp instant messaging facility and may be accessed only for cals/messages by Indian nationals seeking emergency assistance" Home Videos About Us About Embassy Ambassador Previous Ambassadors Officers Right to Information List of Holidays Office Timings Contact Us Consulate General of India,Phuentsholing Nehru-Wangchuck Cultural Centre India-Bhutan Foundation Consular Services General Information Consular Services Passport Services Visa Services OCI Services Fees for Visa Services Fees for Passport & Consular Services International Driving Permit Indian Community Welfare Fund Ban on use of Thuraya/Irridium Satellite phone in India Revised ICWF charges with effect from 22.10.2018 Important Notice For PIO Card Holder Forms Consular Timings and Contacts Immigration related - guidelines for Indian nationals visiting Bhutan Overseas Voters How to enrol as an Overseas/NRI Elector National Voters' Service Portal Brochure for Overseas Electors Brochure for Service Voters Media Center Mission's Videos Press Release Press Release: India@75 Export Promotion of Electric Vehicles in Bhutan Press Release: India@75 Amrit Mahotsav Inter-Dzongkhag Quiz on Buddhism Press Release: India House Golf Tournament 2021 India-Bhutan Commerce Secretary Level meeting held in New Delhi on 3 November 2021 Press Release: Celebration of the 6th Ayurveda Day in Bhutan, 2 November 2021" Press Release: Re-opening of the India House Golf Club Press Release: India@75 #AmritMahotsav Exhibition of Apparel creations by Bhutanese Designers on the theme "The Buddhism thread that ties India and Bhutan Press Release: India@75 Amrit Mahotsav: Virtual Tour of the Buddhist Circuit in India organized by the Embassy of India and the Ministry of Tourism, Government of India Press Release: India@75 Art Competition held in collaboration with Sherubtse College Registration Form: #AmritMahotsav Apparel Design Competition woven around the theme 'The Buddhist Thread that ties India and Bhutan' Press Release: Relaxation of Visa and Travel Restrictions for Foreign Tourists with effect from 15 October 2021 Press Release: Startup Mentorship Program for Bhutanese entrepreneurs Press Release: India@75 Azadi Ka Amrit Mahotsav: -Gandhi Jayanti 2021 celebrations Virtual Signing Ceremony for the Implementing Arrangement on the Joint Development of a Small Satellite for Bhutan Press Release:Indian Technical and Economic Cooperation (ITEC) Programme Celebrations in Bhutan Press Release : Nu./Rs. 3.72 billion released by Government of India for Development Projects of Bhutan Press Release : Third Bhutan - India Development Cooperation Talks Online Hindi Classes for Bhutanese Officials and Tour Guides Press Release : Inauguration of a Motorable Bridge at Berdungma, Trashigang Hindi Divas Celebrations in Bhutan Press Release: Startup Mentorship Program for Bhutanese entrepreneurs Reconstruction of Wangdue Phodrang Dzong Press Release: India At 75 Cricket Cup Press Release: Announcement for the Ambassador's Scholarship Online Application (2021-2022) Press Release: Celebrations of the 75th Independence of India at the Embassy of India, Thimphu Press Release : Education Flagship Program Press Release: India@75 Special Week in Bhutan -Amrit Mahotsav celebrations - Videobyte competition: "What India Means to Me" Press Release: India@75 virtual conference on the Contribution of Assam in India’s Freedom Struggle, Connectivities and Synergies between Assam and Bhutan Press Release: India@75 Space Odyssey - Showcasing India's achievements in Space Technology India@75 Press Release: Brunel Medal handed over the Mangdechhu Hydroelectric Project Authority India@75: Special Week in Bhutan, 2-9 August 2021 Press Release: India@75 Ambassador's interaction with the National Women's Cricket Team of Bhutan India@75: Asadha Poornima Celebrations at the India House Estate Press Release: Grant of formal market access for Bhutan's agri-exports to India Press Release: Bhutan - India cooperation in Healthcare Finance Minister Smt Nirmala Sitharaman and Finance Minister of Bhutan Mr Lyonpo Namgay Tshering jointly launch BHIM-UPI in Bhutan Press Release: Launch of BHIM UPI in Bhutan Press Release: Virtual workshops for setting up an Entrepreneurship Development Centre in Bhutan Press Release: Bhutan - India Development Cooperation in the field of Cultural Heritage Press Release: Bilateral trade meeting to urgently facilitate Bhutan’s agri-exports to India Press Release: India@75 event - Special Prize Distribution Ceremony at India House Message from the External Affairs Minister of India, Dr. S. Jaishankar on the Passport Seva Diwas - 24 June 2021 Gift of a statue of Lord Buddha from the Government and people of India to the Government and the people of Bhutan Press Release: Signing ceremony of the MOU on Cooperation in the Areas of Environment between India and Bhutan Common Yoga Protocol - Dzongkha Press Release: India@75 Amrit Mahotsav: Plantation of saplings at the India House Estate on the eve of World Environment Day Transcript of the Question & Answer session of the India@75 online Talk and Screening of 'Sacred Buddhist Dance' film by Buddhist Scholar, Benoy Behl hosted by the Embassy of India, Thimphu on 25 May 2021 Press Release: Special Puja, Prayers and Offering at the Lhakhang, India House coinciding with Parinirvana Telephone Conversation between Prime Minister Shri Narendra Modi and H.E. Dr. Lotay Tshering, Prime Minister of Bhutan Film Festival to celebrate the 100th Birth Centenary of legendary film maker, Satyajit Ray from 7-9 May 2021 on the website of Films Division Press Release: Gift of Six Portable Digital X-Ray Machines to Bhutan Press Release : Government of India provides a grant of Nu./Rs. 1.204 billion towards key development projects in Bhutan Press Release: Provision of COVID-19 RT-PCR Test Kits to Bhutan India-Bhutan Development Partnership: Project Tied Assistance Projects DEVELOPMENT OF BONDEYMA INDUSTRIAL PARK Benefits for Naganglam Water Supply Scheme. Benefits of Kanglung Water Supply Scheme India-Bhutan Development Partnership: High Impact Community Development Projects Empowering Communities: Milk Processing Unit at Punakha Telephone Conversation between His Majesty the King of Bhutan and Prime Minister of India (Dzongkha) Telephonic conversation between Prime Minister and His Majesty The King of Bhutan. Interviews/Statements/Op-Eds India in Bhutanese Media Bhutan Today news report of 17 October 2021 regarding India@75 Art Competition held in collaboration with Sherubtse College, Kanglung on the occasion of the birth anniversary of the Third Druk Gyalpo Business Bhutan news report of 16 October 2021 regarding the India@75 Art Competition held at Sherubtse College, in honour of the Third Druk Gyalpo Bhutan Times report of 17 October 2021 regarding the India@75 Art Competition held in collaboration with Sherubtse College to honour the birth anniversary of the Third Druk Gyalpo The Journalist report of 17 October 2021 regarding the India@75 Art Competition held in collaboration with Sherubtse College as a tribute to the Third Druk Gyalpo Bhutan Today news report of 3 October 2021 on Gandhi Jayanti celebrations held on 2 October 2021 at the India House Estate Bhutan Today news article of 3 October 2021 on ITEC Day celebrations on 1 October 2021 organized by the Embassy of India, Thimphu The Journalist news article of 3 October 2021 on ITEC Day celebrations organized by the Embassy of India, Thimphu Bhutan Times news report of 3 October 2021 on Gandhi Jayanti celebrations and ITEC Day celebrations organized by the Embassy of India, Thimphu Kuensel News Report dated 22 September 2021 regarding India-Bhutan Development Cooperation Talks Kuensel report dated 27 September 2021 on the Virtual Signing Ceremony of the Implementing Arrangement Bhutan Today report dated 26 September 2021 on India-Bhutan cooperation in Space Technology Bhutan Times report dated 26 September 2021 on ISRO assisting Bhutan in its Space Journey Business Bhutan Report dated 25 September 2021 on the Joint Development of a Small Satellite for Bhutan Bhutan Today news report dated 5 September 2021 regarding India At 75 Cricket cup Bhutan Times news report dated 5 September 2021 regarding India At 75 Cricket cup Business Bhutan news report dated 4 September 2021 regarding India At 75 Cricket cup Business Bhutan video link dated 30 August 2021 regarding India At 75 Cricket Cup The Journalist newsreport dated 30 August 2021 regarding India At 75 Cricket Cup The Kuensel newsreport dated 30 August 2021 regarding India At 75 Cricket Cup Business Bhutan news report on the Ambassador's interaction with the National Women's Cricket Team of Bhutan as part of the India@75 Special Week Ambassador's Interview to Journalist Bhutan newspaper on the 75th Independence Day of India Business Bhutan news report of 7 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Bhutan Today news report of 8 August 2021 on the award of the prestigious ICE UK Brunel Medal to the Mangdechhu Hydropower Project during the India@75 Special Week in Bhutan Bhutan Today Report of 8 August 2021 on the India@75 Special Week in Bhutan, as part of #AmritMahotsav celebrations Journalist Bhutan report of 8 August 2021 on the India@75 Special Week in Bhutan as Amrit Mahotsav celebrations Journalist Bhutan report of 8 August 2021 on the Amrit Mahotsav celebrations in Bhutan organized by the Embassy of India, Thimphu in the run-up to the 75th Independence Day of India Journalist Bhutan report of 8 August 2021 on the award by the Institution of Civil Engineers UK of the prestigious Brunel Medal for excellence in Civil Engineering to the Mangdechhu Hydroelectric Power Project Business Bhutan report of 7 August 2021 on the India@75 Special Week in Bhutan, as part of Amrit Mahotsav celebrations Kuensel report of 6 August 2021 on the India@75 Special Week event: Award of the Brunel Medal Handed to the Mangdechhu Hydroelectric Project Kuensel report of 5 August 2021 on the interaction of ISRO Scientific Secretary R Umamaheshwaran with Bhutanese youth through a Special Webinar as part of the India@75 Special Week in Bhutan Kuensel photo story of 9 August 2021 on the prize distribution ceremony of the videobyte competition "What India Means To Me" hosted at India House as part of the India@75 Special Week in Bhutan Bhutan Times news report of 8 August on a Special Programme held at India House as part of the India@75 Special Week in Bhutan Bhutan Times Report of 8 August on the award of the ICE UK Brunel medal to the Mangdechhu Hydroelectric Power Project, a template of success of India-Bhutan cooperation in hydropower Kuensel photo story of 7 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Bhutan Times photo story of 8 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Bhutan Today news report of 25 July 2021 on the India@75 Asadha Poornima celebrations at India House. Journalist Bhutan news report of 25 July 2021 on the India@75 Asadha Poornima celebrations at India House. Bhutan Times report of 25 July on the India@75: Asadha Poornima Celebrations at India House on 24 July 2021 Bhutan Times news report dated 18 July 2021 on the launch of BHIM UPI App in Bhutan by the Finance Ministers of India and Bhutan Bhutan Times news report of 18 July 2021 on the Multi-Speciality Hospital to be constructed in Thimphu with GOI support and on GOI's exceptional gesture to allow agri exports from Bhutan Formal market access for Bhutan's agri-exports to India Bhutan Today newsreport dated 18 July 2021 titled Bhutan -India Cooperation in Healthcare The Journalist Newsreport dated 18 July 2021 titled Green light to import greens to India, exceptional measure to Bhutan by GoI Bhutan Times newsreport dated 18 July 2021 regarding Master Plan for 500 bed Multispecialty Hospital submitted to Government of India Business Bhutan newsreport dated 17 July 2021 regarding GoI grants nod to Bhutan's agri-exports to India Kuensel report of 16 July 2021 on the GOI's permission to allow import of seven vegetables as an exceptional measure for Bhutan GoI allows import of Seven vegetables as an exceptional measure for Bhutan Bhutan Times new article of 11 July 2021 traces the cooperation between India and Bhutan in the preservation and restoration of cultural heritage projects. Bhutan Times report of 4 July 2021 covers meeting of Ambassador Ruchira Kamboj with Bhutanese & Indian counterparts to forge a way forward to facilitate Bhutan’s Agri-exports to India. Business Bhutan report of 3 July 2021 covers discussions led by Ambassador Ruchira Kamboj with Bhutanese & Indian counterparts to forge a way forward to facilitate Bhutan’s Agri-exports to India. Kuensel report titled "Bhutan and India hold 3rd Plan talks virtually" - 29 June 2021 Ambassador's interview on the International Day of Yoga published in the Bhutan Times newspaper Bhutan Times news article of 27 June 2021 on the gift of a statue of Lord Buddha by India to Bhutan Journalist Bhutan news article of 27 June 2021 on the gift of a statue of Lord Buddha commissioned by ICCR for Bhutan Kuensel photo story of 28 June 2021 on the India@75 event - Special Prize Distribution ceremony held at India House on 26 June 2021 Bhutan Times news article of 28 June 2021 on the India@75 event - Special Prize Distribution ceremony held at India House on 26 June 2021 Bhutan Times report of 20 June 2021 regarding signing of MOU between India and Bhutan on cooperation in the Areas of Environment Kuensel newspaper photo story of 19 June 2021 regarding the virtual signing of an MOU on Cooperation in the Areas of Environment between India and Bhutan Bhutan Times newspaper report on the India@75 Amrit Mahotsav event: Plantation of saplings at the India House Estate on the eve of World Environment Day Ministry of Culture and International Buddhist Confederation confers the Vesak Samman to Dasho Karma Ura : Bhutan Today report of 27 May 2021 Government of India confers Vesak Samman on Dasho Karma Ura: BBS Report of 27 May 2021. Kuensel newspaper photo story of 22 April 2021 on the gift of a statue of Lord Buddha from the Government and people of India to the Government and people of Bhutan on the birth anniversary of Guru Rinpoche Article in Indian Media Article in Foreign Media e-Newsletter of EOI, Thimphu MonthThatWas Tenders CSIR - CECRI has invited tender for (No. 2021_CSIR_91488_1) for ION CHROMATOGRAPHY AND ACCESSORIES (FILE NUMBER / INDENT NUMBER CECRI 2021 19130 ) CSIR - CECRI has invited tender for (No. 2021_CSIR_90864_1) for FUEL CELL TEST STATIONS (FILE NUMBER / INDENT NUMBER CECRI 2021 21403 AND 17847) CSIR - CECRI has invited tender for (No. 2021_CSIR_91438_1) for ELECTROCHEMICAL WORKSTATIONS / ANALYSERS / POTENTIOSTAT - GALVANOSTAT AS PER DETAILS IN DOCUMENT (FILE NUMBER / INDENT NUMBER CECRI 2021 19903) CSIR - CECRI has invited tender for (No. 2021_CSIR_90937_1) for 60 MW LI ION BATTERY EQUIPMENT ON TURNKEY BASIS (FILE NUMBER / INDENT NUMBER CECRI 2021 21428) Notice inviting tender for supply and installation of Modular Kitchen arrangement at Embassy Residence of India House Estate, Thimphu Tender Notice: Renovation and modernization of the auditorium building with acoustic treatment, control room, flooring, lighting and sound system, construction of public toilet at India house, Thimphu Education and Scholarships Ambassador's Scholarship India-Bhutan Friendship Scholarships at IIT, Kanpur Nehru Wangchuck Scholarship Scheme ICCR Scholarship Under Graduate Scholarship Scheme ITEC / TCS CP Schemes SAARC Scholarship TCS Colombo Plan Lecturers on Deputation Nalanda University Scholarship Indian Institute of Technology, Gandhinagar Scholarships M. Tech Scholarships for Bhutanese students at IIT Hyderabad Professional Courses for Foreign Diplomats (PCFD) Students related information: Colleges/Institutions imparting Higher Education in Bhutan Economic and Commercial India-Bhutan Trade Relations Doing Business in Bhutan Bhutan Chamber of Commerce & Industry (BCCI) List of exporters in Bhutan by sector List of other businesse, services and industries FDI: Opportunities and procedures for Investment in Bhutan Link to Indian trade and industry Associations Development Partnership Key Projects Key Development projects in Bhutan supported by the Government of India Development Plan Assistance Kuensel News Report dated 22 September 2021 regarding India-Bhutan Development Cooperation Talks Press Release : Third Bhutan - India Development Cooperation Talks Press Release : Reconstruction of Wangdue Phodrang Dzong Press Release : Education Flagship Program Press Release: Inauguration of Information and Communications Technology (ICT) Lab in Rinchen Kuenphen Primary School, Thimphu Press Release: Bhutan - India Development Cooperation in the field of Cultural Heritage Third India-Bhutan Development Cooperation Talks held virtually on a digital platform on 28 June 2021 Press Release : Government of India provides a grant of Nu./Rs. 810.22 million towards key development projects in Bhutan Press Release : Government of India provides a grant of Nu./Rs. 1.204 billion towards key development projects in Bhutan Press release : Ground Breaking Ceremony “Salang Tendrel” for Pasakha Dry Port, Phuentsholing Press Release: Development Assistance of Rs./Nu. 850 million extended to Bhutan by the Government of India India-Bhutan Development Partnership: Project Tied Assistance Projects Press Release: Re-opening of the Paro Ta Dzong, National Museum of Bhutan Press Release : Ground Breaking Ceremony (Salang Tendrel) of the 65-Bedded Mother and Child Hospital Hydropower Projects India@75 Press Release: Brunel Medal handed over the Mangdechhu Hydroelectric Project Authority Government of India releases an amount of Nu./Rs. 164 million as grant to Druk Green Power Corporation (DGPC) towards its share in the Kholongchhu Hydroelectric Power Project Joint Venture. Press release : Punatsangchhu - 2 Hydroelectric Power Project hands over Mahseer Conservation and Fish Monitoring Centre, Wangdue Phodrang to the Royal Government of Bhutan. Press Release: Kholongchhu Hydroelectric Power Project in Trashiyangtse set to begin construction High Impact Community Development Projects Press Release : Nu./Rs. 3.72 billion released by Government of India for Development Projects of Bhutan Press Release : Inauguration of a Motorable Bridge at Berdungma, Trashigang PRESS RELEASE FOR 4th HICDPC MEETING Travel and Tourism Indians traveling to Bhutan Bhutanese traveling to India Contact Us India@75 Amrit Mahotsav Amrit Mahotsav India@75 : Rashtriya Ekta Divas Amrit Mahotsav India@75 : Gandhi Jayanti 2021 celebrations Amrit Mahotsav India@75 : India@75 celebrations-Virtual Tour of the Buddhist Circuit in India streamed by the Ministry of Tourism, Government of India Amrit Mahotsav India@75 : Exhibition of Apparel creations by Bhutanese Designers on the theme "The Buddhism thread that ties India and Bhutan" Amrit Mahotsav India@75 : Re-opening of the India House Golf Club Amrit Mahotsav India@75 : Celebration of the 6th Ayurveda Day in Bhutan, 2 November 2021 MEA: Amrit Mahotsav M/Culture: Amrit Mahotsav Amrit Mahotsav India @75: 75th Independence Day India@75 Amrit Mahotsav Cricket Cup India@75 Amrit Mahotsav Inter-Dzongkhag Quiz on Buddhism India@75 Export Promotion of Electric Vehicles in Bhutan Amrit Mahotsav: Celebrating Excellence in Engineering - award of the ICE UK Brunel Medal to the Mangdechhu Hydroelectric Project and commemoration of 50 years of India-Bhutan cooperation in hydropower Amrit Mahotsav: Virtual Conference on the contribution of Assam in India's Freedom Struggle Amrit Mahotsav India@75 Special Week: Ambassador's interaction with the Lady Dragons (National Women's Cricket Team) of Bhutan Amrit Mahotsav:Ambassador's interaction with the Lady Dragons (National Women's Cricket Team) of Bhutan. Amrit Mahotsav: India@75 Export Promotion of Indian Mangoes in Bhutan Amrit Mahotsav: Asadha Poornima Celebrations - Anniversary of the First Sermon of Lord Buddha at India House Amrit Mahotsav: Celebration of India's FinTech capability - Launch of the BHIM UPI App in Bhutan BBS reports the launch of BHIM App on 13 July 2021 Amrit Mahotsav: India@75 Online course on Gandhian Philosophy by Dr. Shobhana Radhakrishna Press Release: India @75- Online course on Gandhian Philosophy by Dr. Shobhna Radhakrishna Amrit Mahotsav: Special Prize Distribution Ceremony of India@75 Nationwide Quiz for Bhutanese school students at India House Press Release: India@75- Special Prize Distribution Ceremony of India @75 Nationwide quiz for Bhutanese School students at India House Amrit Mahotsav: Gift of a statue of Lord Buddha, commissioned by ICCR, to Bhutan to commemorate India@75 Amrit Mahotsav: India@75 Plantation of saplings at the India House Estate on the eve of World Environment Day Amrit Mahotsav: India@75 Inter-Dzongkhag Nationwide Quiz for school students of Bhutan Amrit Mahotsav: India@75 Online talk and screening of 'Sacred Buddhist Dance' film by Benoy Behl, Buddhist Scholar Amrit Mahotsav: India@75 - Launch of the Little Guru Sanskrit Language learning App in Bhutan Amrit Mahotsav India@75 Special Week: Virtual Conference on the contribution of Assam in India's Freedom Struggle Amrit Mahotsav India@75 Special Week: Virtual Conference on the contribution of Assam in India's Freedom Struggle Amrit Mahotsav:India@75 Online course on Gandhian Philosophy by Dr. Shobhna Radhakrishna. Amrit Mahotsav India@75 Special Week: Celebrating Excellence in Engineering - award of the ICE UK Brunel Medal to the Mangdechhu Hydroelectric Project and commemoration of 50 years of India-Bhutan cooperation in hydropower Amrit Mahotsav India@75 Special Week:Celebrating Excellence in Engineering -award of the ICE UK Brunel Medal to the Mangdechhu Hydroelectric Project and commemoration of 50 years of India-Bhutan cooperation in Hydropower. Amrit Mahotsav India@75 Special Week: Space Odyssey - Showcasing India's Achievements in Space Technology through a virtual webinar co-hosted with ISRO Amrit Mahotsav India@75 Special Week: Space Odyssey: Showcasing India's Achievements in Space Technology through a virtual Webinar co-hosted with ISRO. India House Golf Course Bhutan Today Report of 8 August 2021 on the India@75... Home › India in Bhutanese Media › Bhutan Today Report of 8 August 2021 on the India@75... India in Bhutanese Media Bhutan Times newspaper report on the India@75 Amrit Mahotsav event: Plantation of saplings at the India House Estate on the eve of World Environment Day Kuensel newspaper photo story of 19 June 2021 regarding the virtual signing of an MOU on Cooperation in the Areas of Environment between India and Bhutan Kuensel newspaper photo story of 22 April 2021 on the gift of a statue of Lord Buddha from the Government and people of India to the Government and people of Bhutan on the birth anniversary of Guru Rinpoche Bhutan Times news article of 27 June 2021 on the gift of a statue of Lord Buddha by India to Bhutan Journalist Bhutan news article of 27 June 2021 on the gift of a statue of Lord Buddha commissioned by ICCR for Bhutan Kuensel photo story of 28 June 2021 on the India@75 event - Special Prize Distribution ceremony held at India House on 26 June 2021 Bhutan Times news article of 28 June 2021 on the India@75 event - Special Prize Distribution ceremony held at India House on 26 June 2021 Ambassador's interview on the International Day of Yoga published in the Bhutan Times newspaper Bhutan Times report of 20 June 2021 regarding signing of MOU between India and Bhutan on cooperation in the Areas of Environment Kuensel report titled "Bhutan and India hold 3rd Plan talks virtually" - 29 June 2021 Bhutan Times report of 4 July 2021 covers meeting of Ambassador Ruchira Kamboj with Bhutanese & Indian counterparts to forge a way forward to facilitate Bhutan’s Agri-exports to India. Business Bhutan report of 3 July 2021 covers discussions led by Ambassador Ruchira Kamboj with Bhutanese & Indian counterparts to forge a way forward to facilitate Bhutan’s Agri-exports to India. Ministry of Culture and International Buddhist Confederation confers the Vesak Samman to Dasho Karma Ura : Bhutan Today report of 27 May 2021 Government of India confers Vesak Samman on Dasho Karma Ura: BBS Report of 27 May 2021. Bhutan Times new article of 11 July 2021 traces the cooperation between India and Bhutan in the preservation and restoration of cultural heritage projects. Kuensel report of 16 July 2021 on the GOI's permission to allow import of seven vegetables as an exceptional measure for Bhutan Bhutan Times news report dated 18 July 2021 on the launch of BHIM UPI App in Bhutan by the Finance Ministers of India and Bhutan Bhutan Times news report of 18 July 2021 on the Multi-Speciality Hospital to be constructed in Thimphu with GOI support and on GOI's exceptional gesture to allow agri exports from Bhutan GoI allows import of Seven vegetables as an exceptional measure for Bhutan Business Bhutan newsreport dated 17 July 2021 regarding GoI grants nod to Bhutan's agri-exports to India Formal market access for Bhutan's agri-exports to India Bhutan Today newsreport dated 18 July 2021 titled Bhutan -India Cooperation in Healthcare The Journalist Newsreport dated 18 July 2021 titled Green light to import greens to India, exceptional measure to Bhutan by GoI Bhutan Times newsreport dated 18 July 2021 regarding Master Plan for 500 bed Multispecialty Hospital submitted to Government of India Bhutan Times report of 25 July on the India@75: Asadha Poornima Celebrations at India House on 24 July 2021 Bhutan Today news report of 25 July 2021 on the India@75 Asadha Poornima celebrations at India House. Journalist Bhutan news report of 25 July 2021 on the India@75 Asadha Poornima celebrations at India House. Kuensel report of 6 August 2021 on the India@75 Special Week event: Award of the Brunel Medal Handed to the Mangdechhu Hydroelectric Project Kuensel report of 5 August 2021 on the interaction of ISRO Scientific Secretary R Umamaheshwaran with Bhutanese youth through a Special Webinar as part of the India@75 Special Week in Bhutan Kuensel photo story of 9 August 2021 on the prize distribution ceremony of the videobyte competition "What India Means To Me" hosted at India House as part of the India@75 Special Week in Bhutan Bhutan Times news report of 8 August on a Special Programme held at India House as part of the India@75 Special Week in Bhutan Bhutan Times Report of 8 August on the award of the ICE UK Brunel medal to the Mangdechhu Hydroelectric Power Project, a template of success of India-Bhutan cooperation in hydropower Kuensel photo story of 7 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Journalist Bhutan report of 8 August 2021 on the India@75 Special Week in Bhutan as Amrit Mahotsav celebrations Bhutan Times photo story of 8 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Journalist Bhutan report of 8 August 2021 on the Amrit Mahotsav celebrations in Bhutan organized by the Embassy of India, Thimphu in the run-up to the 75th Independence Day of India Journalist Bhutan report of 8 August 2021 on the award by the Institution of Civil Engineers UK of the prestigious Brunel Medal for excellence in Civil Engineering to the Mangdechhu Hydroelectric Power Project Bhutan Today Report of 8 August 2021 on the India@75 Special Week in Bhutan, as part of #AmritMahotsav celebrations Bhutan Today news report of 8 August 2021 on the award of the prestigious ICE UK Brunel Medal to the Mangdechhu Hydropower Project during the India@75 Special Week in Bhutan Business Bhutan report of 7 August 2021 on the India@75 Special Week in Bhutan, as part of Amrit Mahotsav celebrations Business Bhutan news report of 7 August 2021 on the India@75 Virtual Conference on the contribution of Assam in India's Freedom Struggle as well as on exploring Connectivities and Synergies between Assam and Bhutan as part of Amrit Mahotsav celebrations Business Bhutan news report on the Ambassador's interaction with the National Women's Cricket Team of Bhutan as part of the India@75 Special Week Ambassador's Interview to Journalist Bhutan newspaper on the 75th Independence Day of India Business Bhutan video link dated 30 August 2021 regarding India At 75 Cricket Cup The Journalist newsreport dated 30 August 2021 regarding India At 75 Cricket Cup The Kuensel newsreport dated 30 August 2021 regarding India At 75 Cricket Cup Business Bhutan news report dated 4 September 2021 regarding India At 75 Cricket cup Bhutan Today news report dated 5 September 2021 regarding India At 75 Cricket cup Bhutan Times news report dated 5 September 2021 regarding India At 75 Cricket cup Kuensel News Report dated 22 September 2021 regarding India-Bhutan Development Cooperation Talks Business Bhutan Report dated 25 September 2021 on the Joint Development of a Small Satellite for Bhutan Bhutan Times report dated 26 September 2021 on ISRO assisting Bhutan in its Space Journey Bhutan Today report dated 26 September 2021 on India-Bhutan cooperation in Space Technology Kuensel report dated 27 September 2021 on the Virtual Signing Ceremony of the Implementing Arrangement Bhutan Times news report of 3 October 2021 on Gandhi Jayanti celebrations and ITEC Day celebrations organized by the Embassy of India, Thimphu The Journalist news article of 3 October 2021 on ITEC Day celebrations organized by the Embassy of India, Thimphu Bhutan Today news report of 3 October 2021 on Gandhi Jayanti celebrations held on 2 October 2021 at the India House Estate Bhutan Today news article of 3 October 2021 on ITEC Day celebrations on 1 October 2021 organized by the Embassy of India, Thimphu Bhutan Times report of 17 October 2021 regarding the India@75 Art Competition held in collaboration with Sherubtse College to honour the birth anniversary of the Third Druk Gyalpo The Journalist report of 17 October 2021 regarding the India@75 Art Competition held in collaboration with Sherubtse College as a tribute to the Third Druk Gyalpo Business Bhutan news report of 16 October 2021 regarding the India@75 Art Competition held at Sherubtse College, in honour of the Third Druk Gyalpo Bhutan Today news report of 17 October 2021 regarding India@75 Art Competition held in collaboration with Sherubtse College, Kanglung on the occasion of the birth anniversary of the Third Druk Gyalpo
{ "warc_headers": { "warc-record-id": "<urn:uuid:2538305e-612b-4751-b1ba-f2d2c21d878a>", "warc-date": "2021-11-27T06:29:53Z", "content-type": "text/plain", "content-length": 31351, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:d3ceaa53-fe36-46f5-9346-a325a3497b4b>", "warc-target-uri": "https://indembthimphu.gov.in/pages.php?id=1010", "warc-block-digest": "sha1:K4WHJM5HXKLXUCAVNODKNUOCNU35R3HI" }, "identification": { "label": "en", "prob": 0.6257190704345703 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.9386852383613586 }, null, null, null, null, { "label": "en", "prob": 0.905829668045044 }, { "label": "en", "prob": 0.841097354888916 }, { "label": "en", "prob": 0.9480850696563721 }, null, { "label": "en", "prob": 0.8999729752540588 }, null, null, { "label": "en", "prob": 0.8130574822425842 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8277426958084106 }, null, null, { "label": "en", "prob": 0.8619673848152161 }, null, { "label": "en", "prob": 0.8155145645141602 }, null, { "label": "en", "prob": 0.9321096539497375 }, { "label": "en", "prob": 0.811500608921051 }, null, { "label": "en", "prob": 0.8169383406639099 }, { "label": "en", "prob": 0.9889434576034546 }, null, null, { "label": "en", "prob": 0.8397405743598938 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9142812490463257 }, { "label": "en", "prob": 0.9099723100662231 }, { "label": "en", "prob": 0.841094434261322 }, { "label": "en", "prob": 0.8486056923866272 }, { "label": "en", "prob": 0.807427167892456 }, { "label": "en", "prob": 0.895246148109436 }, null, { "label": "en", "prob": 0.9448233842849731 }, null, null, null, null, { "label": "en", "prob": 0.9015138745307922 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8566024303436279 }, null, null, null, null, null, { "label": "en", "prob": 0.8565473556518555 }, { "label": "en", "prob": 0.8330029249191284 }, null, { "label": "en", "prob": 0.8590630292892456 }, { "label": "en", "prob": 0.8266195058822632 }, { "label": "en", "prob": 0.9044086337089539 }, { "label": "en", "prob": 0.8587129712104797 }, { "label": "en", "prob": 0.8018089532852173 }, null, { "label": "en", "prob": 0.8697605133056641 }, null, { "label": "en", "prob": 0.8981449604034424 }, { "label": "en", "prob": 0.9476820230484009 }, { "label": "en", "prob": 0.9213213324546814 }, null, null, { "label": "en", "prob": 0.8715335726737976 }, { "label": "en", "prob": 0.8042250275611877 }, { "label": "en", "prob": 0.8853652477264404 }, { "label": "en", "prob": 0.9174398183822632 }, null, { "label": "en", "prob": 0.8526458144187927 }, null, null, null, null, { "label": "en", "prob": 0.8364247679710388 }, null, { "label": "en", "prob": 0.8241518139839172 }, { "label": "en", "prob": 0.9140191674232483 }, { "label": "en", "prob": 0.9296602606773376 }, { "label": "en", "prob": 0.8124817609786987 }, null, { "label": "en", "prob": 0.8942713737487793 }, { "label": "en", "prob": 0.9241740703582764 }, { "label": "en", "prob": 0.8955259919166565 }, { "label": "en", "prob": 0.93511962890625 }, { "label": "en", "prob": 0.9590471386909485 }, { "label": "en", "prob": 0.9518678188323975 }, { "label": "en", "prob": 0.9277814030647278 }, { "label": "en", "prob": 0.9156294465065002 }, null, { "label": "en", "prob": 0.8009260296821594 }, { "label": "en", "prob": 0.8381977677345276 }, { "label": "en", "prob": 0.9119068384170532 }, { "label": "en", "prob": 0.8422865867614746 }, { "label": "en", "prob": 0.8518025875091553 }, { "label": "en", "prob": 0.8473559617996216 }, { "label": "en", "prob": 0.8608110547065735 }, null, null, null, { "label": "en", "prob": 0.9092143177986145 }, { "label": "en", "prob": 0.8667643070220947 }, { "label": "en", "prob": 0.9309629201889038 }, { "label": "en", "prob": 0.898819088935852 }, { "label": "en", "prob": 0.8353022336959839 }, { "label": "en", "prob": 0.8357736468315125 }, { "label": "en", "prob": 0.8851811289787292 }, { "label": "en", "prob": 0.9020677804946899 }, { "label": "en", "prob": 0.8735023736953735 }, { "label": "en", "prob": 0.8698615431785583 }, { "label": "en", "prob": 0.903984785079956 }, { "label": "en", "prob": 0.9173901081085205 }, { "label": "en", "prob": 0.9348687529563904 }, { "label": "en", "prob": 0.8572231531143188 }, { "label": "en", "prob": 0.9299486875534058 }, { "label": "en", "prob": 0.9256157875061035 }, { "label": "en", "prob": 0.8365411758422852 }, { "label": "en", "prob": 0.8268777132034302 }, { "label": "en", "prob": 0.9346261620521545 }, { "label": "en", "prob": 0.9220834970474243 }, { "label": "en", "prob": 0.9278501868247986 }, { "label": "en", "prob": 0.8479986786842346 }, { "label": "en", "prob": 0.8646920323371887 }, { "label": "en", "prob": 0.9182232022285461 }, { "label": "en", "prob": 0.8680248856544495 }, { "label": "en", "prob": 0.8762320876121521 }, { "label": "en", "prob": 0.9400931000709534 }, { "label": "en", "prob": 0.8695309162139893 }, { "label": "en", "prob": 0.9183043837547302 }, { "label": "en", "prob": 0.8723911643028259 }, { "label": "en", "prob": 0.907785952091217 }, { "label": "en", "prob": 0.9542272686958313 }, { "label": "en", "prob": 0.9012371301651001 }, { "label": "en", "prob": 0.9242212176322937 }, { "label": "en", "prob": 0.9234625697135925 }, { "label": "en", "prob": 0.9274829030036926 }, { "label": "en", "prob": 0.9163768291473389 }, { "label": "en", "prob": 0.9517941474914551 }, { "label": "en", "prob": 0.9413018226623535 }, null, null, { "label": "en", "prob": 0.8175226449966431 }, { "label": "en", "prob": 0.9140451550483704 }, { "label": "en", "prob": 0.8757017850875854 }, { "label": "en", "prob": 0.8724319934844971 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8474019765853882 }, { "label": "en", "prob": 0.8695535659790039 }, { "label": "en", "prob": 0.9525983929634094 }, { "label": "en", "prob": 0.8909136652946472 }, null, null, { "label": "en", "prob": 0.9065375328063965 }, null, null, { "label": "en", "prob": 0.8451117873191833 }, null, null, null, { "label": "en", "prob": 0.8755593299865723 }, null, { "label": "en", "prob": 0.8411159515380859 }, { "label": "en", "prob": 0.8587549924850464 }, null, null, null, { "label": "en", "prob": 0.953984260559082 }, { "label": "en", "prob": 0.9401283860206604 }, { "label": "en", "prob": 0.8771815896034241 }, { "label": "en", "prob": 0.8881769180297852 }, { "label": "en", "prob": 0.8040924072265625 }, null, { "label": "en", "prob": 0.890449583530426 }, null, null, null, null, null, { "label": "en", "prob": 0.8645987510681152 }, null, { "label": "en", "prob": 0.911603569984436 }, { "label": "en", "prob": 0.8573404550552368 }, { "label": "en", "prob": 0.8526458144187927 }, null, { "label": "en", "prob": 0.845199704170227 }, null, null, null, null, null, { "label": "en", "prob": 0.9278478622436523 }, null, null, null, { "label": "en", "prob": 0.9015138745307922 }, null, { "label": "en", "prob": 0.8486562967300415 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8405938744544983 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8396493196487427 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9466541409492493 }, null, { "label": "en", "prob": 0.8303177356719971 }, null, { "label": "en", "prob": 0.8087121844291687 }, { "label": "en", "prob": 0.8544712662696838 }, null, null, { "label": "en", "prob": 0.8147554397583008 }, null, null, null, null, { "label": "en", "prob": 0.8238523006439209 }, { "label": "en", "prob": 0.8341167569160461 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9413018226623535 }, { "label": "en", "prob": 0.9140451550483704 }, { "label": "en", "prob": 0.9242212176322937 }, { "label": "en", "prob": 0.9234625697135925 }, { "label": "en", "prob": 0.9274829030036926 }, { "label": "en", "prob": 0.9163768291473389 }, { "label": "en", "prob": 0.9012371301651001 }, { "label": "en", "prob": 0.9517941474914551 }, { "label": "en", "prob": 0.9542272686958313 }, { "label": "en", "prob": 0.8723911643028259 }, { "label": "en", "prob": 0.907785952091217 }, null, { "label": "en", "prob": 0.8175226449966431 }, { "label": "en", "prob": 0.9183043837547302 }, { "label": "en", "prob": 0.9400931000709534 }, { "label": "en", "prob": 0.9220834970474243 }, { "label": "en", "prob": 0.9278501868247986 }, { "label": "en", "prob": 0.8695309162139893 }, { "label": "en", "prob": 0.8762320876121521 }, { "label": "en", "prob": 0.8479986786842346 }, { "label": "en", "prob": 0.8646920323371887 }, { "label": "en", "prob": 0.9182232022285461 }, { "label": "en", "prob": 0.8680248856544495 }, { "label": "en", "prob": 0.9346261620521545 }, { "label": "en", "prob": 0.8365411758422852 }, { "label": "en", "prob": 0.8268777132034302 }, { "label": "en", "prob": 0.8698615431785583 }, { "label": "en", "prob": 0.903984785079956 }, { "label": "en", "prob": 0.9173901081085205 }, { "label": "en", "prob": 0.9348687529563904 }, { "label": "en", "prob": 0.8572231531143188 }, { "label": "en", "prob": 0.9299486875534058 }, { "label": "en", "prob": 0.8357736468315125 }, { "label": "en", "prob": 0.9256157875061035 }, { "label": "en", "prob": 0.8851811289787292 }, { "label": "en", "prob": 0.9020677804946899 }, { "label": "en", "prob": 0.8353022336959839 }, { "label": "en", "prob": 0.898819088935852 }, { "label": "en", "prob": 0.8735023736953735 }, { "label": "en", "prob": 0.9309629201889038 }, { "label": "en", "prob": 0.9092143177986145 }, { "label": "en", "prob": 0.8667643070220947 }, null, null, null, { "label": "en", "prob": 0.8608110547065735 }, { "label": "en", "prob": 0.8518025875091553 }, { "label": "en", "prob": 0.8473559617996216 }, null, { "label": "en", "prob": 0.8422865867614746 }, { "label": "en", "prob": 0.9119068384170532 }, { "label": "en", "prob": 0.8381977677345276 }, { "label": "en", "prob": 0.8009260296821594 }, { "label": "en", "prob": 0.9156294465065002 }, { "label": "en", "prob": 0.9277814030647278 }, { "label": "en", "prob": 0.9590471386909485 }, { "label": "en", "prob": 0.9518678188323975 }, { "label": "en", "prob": 0.8955259919166565 }, { "label": "en", "prob": 0.93511962890625 }, { "label": "en", "prob": 0.9241740703582764 }, { "label": "en", "prob": 0.8942713737487793 } ] }
2,221.7
31,331
https://indembthimphu.gov.in/pages.php?id=1010
indembthimphu.gov.in
0
[]
null
false
[]
true
2,608,993
'+ ''+ ''; var overlay_html = generate_overlay("lr_popup", title, data); jQuery("body").append(overlay_html); }else{ if(!lr_num_pageviews) lr_num_pageviews = 0; if(lr_num_pageviews<=4){ //Prevent storing huge cookie values. lr_set_cookie( cookie_name, parseInt(lr_num_pageviews)+1, '180000000', "/"); } } } /*END GENERAL OVERLAY SCRIPTS*/ //show_lr_popup(); Register FAQ Posting Policy Today's Posts Mark Boards Read Advanced Search Find A Board Site Map Relationship Health Message Board HealthBoards Board Index > Relationship Health > B > boyfriend trying to control me Relationship Health Board Index Board Index > Relationship Health | 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z View Complete Thread on "How can I make it work(just married/8months pregnant)???" Here How can I make it work(just married/8months pregnant)??? Jul 12, 2005 I am new to this board but really could use some advice. I started dating James my husband last summer and we fell madly in love so quick it was like we are soul mates we are so alike and compatible as far as having relationship goes. Both of us were in school and very ambitious. We started talking about engagement 2 months into the relationship and did it in November with plans to finish school get married and have a family together. We never fought just bickered and resolved issues calmly, the best man I have ever had in my life. I found out I was pregnant on April 14th and we were completely shocked as I was on birth control that I only had a period every 4 months on(and took it on time every day I might add). When I went to the OBGYN a few days later and had an ultrasound I was really shocked to find out I was 20 weeks(5 mos.) pregnant!!!! :dizzy: Not only were we completely unprepared financially (neither of us make more than $300-$350 a week) but I saw my hopes for an education and leaving the impoverished rural town I grew up in fly out the window :wave: . Then after a couple days we both managed to swallow reality and were actually really happy to be blessed with a child so quickly and both see it as god granting our dreams to be together and have a family by default, so we got married May 11th started trying to figure out how to make our lives work(continue our educations/dreams and give our child the life we didn't have). Well James decided he would join the Air Force as they offer housing, healthcare, education and all kinds of other benefits and he could finish the 6wk boot camp and have me come live on base before the baby got here. Only when we get to the recruiter they say it will be at least September before he could ship out (our baby girl Kaylee Erica Crowe is due 9-7-05) so thats out of the question until at least December or January since I wouldn't have the heart to make him miss his little girls first couple of months. Now we are living at my Mother-in-laws since we don't have the money to buy this endless list of baby stuff(its alot!) and afford our own apartment and other bills at the same time. James does construction work but it isn't reliable as any day it rains or his boss doesn't work he doesn't either so it's barely enough for us to pay half the bills at his mom's house(another story completely we pay 1/2 the bills but also we have to buy groceries for his mom and 18 yr old sister even though they both make more individually than we do together, they just eat it all even my juice and health food for pregnancy and leave us with an empty fridge, they stay at a pool hall which his moms boyfriend of the month owns and party hard all the time etc. etc.) anyways he has halfway looked for a job to no success, he is going to be a computer programmer (if he can ever get out of this town to somewhere that uses computers and hires people for that) so he uses that for an excuse to sit in front of his computer all day long and ignore anything I have to say, stay up until 5 am and still expect my family to send more and more money to support both of us. I quit working a month ago because waiting tables was causing me excruciating back pain/sciatica since I have scholiosis so I guess he thinks he shouldn't have to work either? My family has tried to get me to come live with them until he can support me and provide a good environment for me to raise a baby (his moms house is smoked in and she and her daughter do drugs here so it wouldn't work even though James says they would quit) and I would like to since they are very well off financially and I would be so much less stressed etc. but I love him so much and don't want to ruin a perfectly good marriage because he can't leave for the air force until January and he has said it would probably be over if I moved and "left him". We have recently started fighting because of the stress and it hurts so bad to know that if things were different we would be sooo happy in this situation but we are getting distanced emotionally because of our different views and inability to come up with a solution. I feel trapped here where I don't know if I will have money or support to eat right or make it to doctor appointments every day and even though I love him it's like James has clammed up and broken under the stress of not being able to sup[port his family so now he is just numb and takes no action to help me in preparing for this baby. It's like he is a shell of the man he used to be and I know he won't be himself again until he goes in the Air Force and feels he is accomplishing something. I hope somebody out there has some advice and solutions I am so mad at him because I would sacrifice if I was in his position and work 2 fast food jobs if that is what it took (but he says he "can't do" that kind of work as if he's too good for it) and at the same time I feel sorry for him because I know he has had a stress free life so far ( I have lived in a big city and worked my butt off before just to survive since my parents haven't worked in 10+ yrs kicked me out when I was 16 etc. before but he has lived with his mom while in school and never had to be accountable) and he is like cracking under the pressure plus I know he will do very well in the military once he is in it just sucks right now and I love him too much to give up on him after 2 months of marriage. Please help me I really need some friendly support right now as I feel totally alone and all I can do is cry :( all the time and get called a ***** for not being happy with what I've got and for acting like I'm too good for my mother-in-laws son? I just want to give my baby a good home, start a family and be happy for the first time in a few months. Thanks for reading all this I know it's long and I'm sorry but I had to get alot off my chest and this isn't even half of it! Thanks for your time and what should I do? :confused: Lauren and James married 05-11-05 :D First Angel Due 09-07-05 :angel: Kaylee Erica Crowe View Complete Thread on "How can I make it work(just married/8months pregnant)???" Here All times are GMT -7. The time now is 11:01 PM. Terms of Use - About Us - Privacy - Cookie Policy - Health Disclaimer - FAQ - Tags - Site Map - Advertise With Us - Do Not Sell My Personal Information - Contact Us
{ "warc_headers": { "warc-record-id": "<urn:uuid:32366f9b-77c2-4519-a615-4fd807e6f582>", "warc-date": "2021-11-27T06:01:33Z", "content-type": "text/plain", "content-length": 7180, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:e4c2f5d7-462d-4bbc-8329-3d2541767919>", "warc-target-uri": "https://index.healthboards.com/relationship/303215/boyfriend-trying-to-control-me/", "warc-block-digest": "sha1:LEEARWXQ42QY4543X2MMERXEHRYD5FTC" }, "identification": { "label": "en", "prob": 0.8494043350219727 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ null, null, null, null, null, null, { "label": "en", "prob": 0.8242111802101135 }, null, { "label": "de", "prob": 0.999977707862854 }, null, { "label": "en", "prob": 0.9672231078147888 }, { "label": "en", "prob": 0.8188655376434326 }, { "label": "en", "prob": 0.81635582447052 }, null, null, { "label": "en", "prob": 0.8771740198135376 }, { "label": "en", "prob": 0.9925757050514221 }, { "label": "en", "prob": 0.974240779876709 }, null, null, null, null ] }
741.5
7,180
https://index.healthboards.com/relationship/303215/boyfriend-trying-to-control-me/
index.healthboards.com
0.131894
[ [ 564955247676, 564955248407 ], [ 564955254644, 564955254860 ] ]
null
true
[ 431992465 ]
false
2,608,994
MAVERICK TUBE CORPORATION (Business ID: 202108021511838) was incorporated on 08/02/2021 in Indiana. Their business is recorded as Foreign For-Profit Corporation. The Company's current operating status is Active
{ "warc_headers": { "warc-record-id": "<urn:uuid:5c996de5-e927-45ac-9422-fa6d52b2f42a>", "warc-date": "2021-11-27T05:59:48Z", "content-type": "text/plain", "content-length": 210, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:66cca4a9-ab58-4c11-b1d8-ee1a72dc3b6b>", "warc-target-uri": "https://indiana-company.com/co/maverick-tube-corporation", "warc-block-digest": "sha1:OMUSKAS7I7HOCWQQD65XKEPN7CKM2PQZ" }, "identification": { "label": "en", "prob": 0.9402486085891724 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9402486085891724 } ] }
2,422.3
210
https://indiana-company.com/co/maverick-tube-corporation
indiana-company.com
0
[]
null
false
[]
false
2,608,995
University of Zurich: Understanding Knotty Problems-Education in India | Latest Education News | Global Education News - India News Republic Saturday, November 27 2021 Breaking News Pakistan Promotes Massive Drugs to Raise Terrorism: J & K DGP Cryptography crashes when new Covid-19 variants appear After the 108MP camera, Motorola may launch the first smartphone with a 200MP camera Amitabh Bachchan: Amitabh Bachchan remembers the 114th anniversary of his father Harivansh Rai Bachchan’s birth and shares his invisible photos.Hindi movie news Malaika Arora, Akansha Ranjan and Kubra Sight show off yoga asanas and sweat together Equity, oil prices and US Treasury yields all reduce concerns about COVID variants. Bangladesh vs Pakistan 2021 Live Score, 1st Test, 2nd Day, The Haa Armado Choudhry Stadium Building Africa’s Resilience to Climate Change-Related Disasters – India Education | Latest Education News | Global Education News Novavax states that it manufactures the Covid-19 vaccine to protect it from the new “Omicron” variant. How Flipkart’s Strategic Acquisition of Sasta Sundar Can Transform e-pharmacy Games Sidebar Menu Breaking News India World Business Tech Entertainment Health Lifestyle Local Search for Random Article Home/Education/University of Zurich: Understanding Knotty Problems-Education in India | Latest Education News | Global Education News Education University of Zurich: Understanding Knotty Problems-Education in India | Latest Education News | Global Education News sujatachaturwediSeptember 10, 2021 Rebecca Saladin and Marc Seematter participated in an interview online from Plattenstrasse 54’s new office. After various temporary locations, the employee support office found a permanent home on the top floor of a typical stylish villa in Zurich-Hottingen. The two co-leaders of UZH’s employee services are clearly pleased with the new facility. “We are in the heart of the university district, but well away from the hustle and bustle of the UZH main building, where we have the privacy and relaxed atmosphere we need to work,” says Saladin. She wants people who come here for appointments to feel comfortable from the moment they walk the door, once or several times. “We believe that those seeking advice can more easily engage in counseling situations in a quiet and comfortable environment.” Seek expert support Saladin and Seematter know from experience how difficult it is for many to seek professional support when faced with work difficulties. “We all have some restraint when it comes to asking for help,” says Mark Seamatter, who provides legal advice and mediation in work-related disputes. Some are afraid to go into complete treatment, while others are worried that speaking will have formal internal measures, investigations, or widespread consequences. Psychologist Rebecca Saladin reassures us in this regard. In very complex situations, if people need longer-term support, turn to other services inside and outside UZH. “ Seematter is also keen to dispel all worries. “We are completely independent and everything that is said in our office is completely confidential. We are not to mention the experts and disciplinary bodies that direct UZH’s others and offices. , There is no obligation to provide information to other parties. Talking to us has no effect. “ Great demand for psychological counseling The Employee Support Office provides short-term counseling focused on three advisory services: psychological counseling for stressful work-related situations, legal advice on work-related issues, and arbitration and mediation between parties in work-related disputes. Intended as a service. Last year, 160 UZH staff from all faculties and various central services departments contacted the Employee Support Office for advice and support. Almost 50% of requests are psychological counseling and dominate office activities. In addition, there were purely requests for legal advice, most of which were related to questions about working conditions, the authority to issue directives, or potential or explicit dismissals. About 30% of requests required multifaceted advice and support. “Sometimes,” explains Mark Seamatter. “Legal issues are in the foreground, and in the background, personal or interpersonal issues also play a major role in scrutiny, while legal issues are involved during psychological counseling. And sometimes there is a need for mediation between the various parties to the dispute. “ Individual evaluation of the situation “People who rely on us for psychological counseling often find themselves in complex, problematic, or complex situations, so the first consultation is used to assess the situation and reveal details. “Rebecca Saladin says. In the first conversation, when employees explain the problem and Saladin listens and asks questions, it is often possible to identify the problem in a seemingly deadlock situation relatively quickly. “The second step is to develop a potential solution to the concerns raised.” For difficult work situations, psychologists look at both the structure, the work procedures and processes that involve people, and the areas of interpersonal relationships, especially communication with colleagues and bosses. The main questions she asks herself are: What is the room for maneuvering for those seeking advice? What measures can they take independently to improve the situation? And what steps are available to support employee self-empowerment and self-care? “People are often surprised at how much creative freedom and influence they actually have in the workplace.” According to Saladin, this is the main purpose of the employee support office, which allows people seeking help to follow a defined path independently and find unique solutions to difficult situations. Is to do so. University of Zurich: Understanding Knotty Problems-Education in India | Latest Education News | Global Education News Source link University of Zurich: Understanding Knotty Problems-Education in India | Latest Education News | Global Education News sujatachaturwediSeptember 10, 2021 Share Facebook Twitter LinkedIn Tumblr Pinterest Reddit Skype WhatsApp Telegram Viber Share via Email Print Related Articles Building Africa’s Resilience to Climate Change-Related Disasters – India Education | Latest Education News | Global Education News 19 mins ago Regarding Platinum Jubilee, Odisha CM reiterates its commitment to transform SCB into an AIIMS Plus institution. 40 mins ago 16-day activity against gender-based violence – Education in India | Latest Education News | Global Education News 41 mins ago Cuba Strengthens National Network of Biosphere Reserves – India Education | Latest Education News | Global Education News 1 hour ago Recent News Cryptography crashes when new Covid-19 variants appear 1 min ago After the 108MP camera, Motorola may launch the first smartphone with a 200MP camera 2 mins ago Amitabh Bachchan: Amitabh Bachchan remembers the 114th anniversary of his father Harivansh Rai Bachchan’s birth and shares his invisible photos.Hindi movie news 4 mins ago Malaika Arora, Akansha Ranjan and Kubra Sight show off yoga asanas and sweat together 5 mins ago Most Viewed Posts September 30, 2021 Want to send a message to yourself on WhatsApp?This is a step-by-step guide October 6, 2021 Hometown Cha-Cha-Cha maker demands Kim Seon-ho and Shin Min-a stirrer fans to stop visiting the actual filming location October 6, 2021 Android 12-based Oxygen OS 12 is now available on these OnePlus phones: What’s new Last Modified Posts Articles Auto Business Education Entertainment Health India Lifestyle Sports Tech Uncategorized World Recent Posts Pakistan Promotes Massive Drugs to Raise Terrorism: J & K DGP Cryptography crashes when new Covid-19 variants appear After the 108MP camera, Motorola may launch the first smartphone with a 200MP camera Amitabh Bachchan: Amitabh Bachchan remembers the 114th anniversary of his father Harivansh Rai Bachchan’s birth and shares his invisible photos.Hindi movie news Malaika Arora, Akansha Ranjan and Kubra Sight show off yoga asanas and sweat together © Copyright 2021, All Rights Reserved Home About Us Team Privacy Policy Terms of Service Contact Us Facebook Twitter WhatsApp Telegram Viber Back to top button Close Breaking News India World Business Tech Entertainment Health Lifestyle Local Search for: Popular Posts Tech Want to send a message to yourself on WhatsApp?This is a step-by-step guide September 30, 2021 Hometown Cha-Cha-Cha maker demands Kim Seon-ho and Shin Min-a stirrer fans to stop visiting the actual filming location
{ "warc_headers": { "warc-record-id": "<urn:uuid:a9a3bf76-4cf0-46d5-bf97-d87d5f7d4ee5>", "warc-date": "2021-11-27T04:40:13Z", "content-type": "text/plain", "content-length": 8677, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:b76c8614-ee6c-4cda-bce7-6b6014b5366a>", "warc-target-uri": "https://indianewsrepublic.com/university-of-zurich-understanding-knotty-problems-education-in-india-latest-education-news-global-education-news/456595/", "warc-block-digest": "sha1:DQ5G2X6TRT2AZG5T3G7XWHNJBFWMPT7F" }, "identification": { "label": "en", "prob": 0.6076902747154236 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ null, { "label": "en", "prob": 0.9543054699897766 }, null, null, null, null, { "label": "en", "prob": 0.9292215704917908 }, null, { "label": "en", "prob": 0.9193996787071228 }, null, null, { "label": "en", "prob": 0.8909031748771667 }, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9561851024627686 }, null, { "label": "en", "prob": 0.9822106957435608 }, null, null, { "label": "en", "prob": 0.8048620223999023 }, { "label": "en", "prob": 0.9361534714698792 }, null, null, { "label": "en", "prob": 0.835089921951294 }, { "label": "en", "prob": 0.9738701581954956 }, { "label": "en", "prob": 0.9344159960746765 }, { "label": "en", "prob": 0.976529061794281 }, { "label": "en", "prob": 0.900105357170105 }, { "label": "en", "prob": 0.9749162197113037 }, null, { "label": "en", "prob": 0.9700286984443665 }, { "label": "en", "prob": 0.940167248249054 }, { "label": "en", "prob": 0.9750508666038513 }, { "label": "en", "prob": 0.8245534896850586 }, { "label": "en", "prob": 0.9405869245529175 }, { "label": "en", "prob": 0.9744646549224854 }, { "label": "en", "prob": 0.9592682123184204 }, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9334861040115356 }, null, { "label": "en", "prob": 0.8108131885528564 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9292215704917908 }, null, null, null, { "label": "en", "prob": 0.9865679144859314 }, { "label": "en", "prob": 0.9541611671447754 }, null, { "label": "en", "prob": 0.9976497888565063 }, null, { "label": "en", "prob": 0.9976497888565063 }, null, { "label": "en", "prob": 0.8072291016578674 }, null, { "label": "en", "prob": 0.8328146934509277 }, null, null, null, { "label": "en", "prob": 0.9292215704917908 }, null, { "label": "en", "prob": 0.8568192720413208 }, null, null, null, null, { "label": "en", "prob": 0.8338992595672607 }, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9561851024627686 }, null, { "label": "en", "prob": 0.9822106957435608 }, null, null, null, null, { "label": "en", "prob": 0.9541611671447754 }, null ] }
958.1
8,606
https://indianewsrepublic.com/university-of-zurich-understanding-knotty-problems-education-in-india-latest-education-news-global-education-news/456595/
indianewsrepublic.com
0
[]
null
false
[]
false
2,608,996
Bisphosphonates are a relatively newer class of drugs which have been used for the prevention of skeletal related complications of age related osteoporosis or metastatic disease from carcinoma breast or multiple myeloma. Their role in the management of prostate cancer is still under evolution. We hereby review the ongoing and some published randomized trials to define the role of bisphosphonates in various stages of prostate cancer. Keywords: Bisphosphonates, prostate cancer, hormone resistant prostate cancer How to cite this article: Nayyar R, Gupta NP. Use of bisphosphonates in prostate cancer: Current status. Indian J Urol 2007;23:51-4 How to cite this URL: Nayyar R, Gupta NP. Use of bisphosphonates in prostate cancer: Current status. Indian J Urol [serial online] 2007 [cited 2021 Nov 27];23:51-4. Available from: https://www.indianjurol.com/text.asp?2007/23/1/51/30267 Bisphosphonates are a relatively newer class of drugs which have been used for the prevention of skeletal-related complications of age-related osteoporosis or metastatic disease from carcinoma breast or multiple myeloma. Their role in the management of prostate cancer is still under evolution. We hereby review the ongoing and some published randomized trials to define the role of bisphosphonates in various stages of prostate cancer. Since no curative therapy is available for patients with advanced carcinoma of the prostate, sooner or later such patients develop metastatic disease, most commonly to the bones. Between 1984 and 1991, 30 to 40% of men with prostate cancer presented with advanced disease, while at present, only 5% of men have metastases at initial presentation.[1] Bone involvement is a significant cause of morbidity and disability in these patients. Bisphosphonates is a relatively newer class of drugs which have been utilized routinely for bone involvement in patients with metastatic breast cancer and multiple myeloma. For these tumors they have been shown to reduce the risk of fractures and the need for palliative radiotherapy.[2] Their role in prostate cancer is relatively less well established. Presently their role in the treatment of prostate cancer is being assessed in several ongoing trials. They also have a potential role in treating and preventing androgen deprivation-induced osteoporosis. More recently, they are being used in combination regimens as part of multi-drug chemotherapy. Mechanism of action Bisphosphonates (previously called diphosphonates) are stable pyrophosphate analogs that have several actions including likely inhibition of osteoblast proliferation and differentiation, decreasing osteoclast differentiation and induction of apoptosis through caspase activation.[3] They decrease bone resorption, primarily through direct inhibition of osteoclast activity and proliferation. Most of the metastases in prostate cancer are osteosclerotic, but it has been shown that the abnormal osteoblastic bone formation within metastases is preceded by osteoclastic activation, which appears to be associated with bone pain. This provides the rationale for using bisphosphonates, which are powerful and selective inhibitors of osteoclastic bone resorption. They have also been shown to have anti-tumoral effects on prostate cancer cell lines.[4] The various available bisphosphonates are given in [Table - 1]. They have been classified as 1st, 2nd or 3rd generation agents, based on the type of side chain on the carbon atom, their relative antiresorptive potencies and when they were developed. With each new generation has come a 10- to 100-fold increase in antiresorptive potency. Bisphosphonates are poorly absorbed from the gastrointestinal tract. Typically, absorption ranges from 0.7% to 3% of an oral dose and is significantly reduced in the presence of calcium, other divalent cations or food or beverages other than plain water. Bisphosphonates are not metabolized. After binding to bone surfaces and exerting their effects on osteoclasts, they are retained in the bone for months or years and are slowly released with the process of bone turnover. The portion of absorbed drug that is not bound to bone is excreted by the kidney unchanged [Table - 1]. Role in preventing skeletal complications of androgen deprivation therapy in advanced nonmetastatic prostate cancer Although, normal men also have a gradual age-related loss of bone mineral density (BMD) of 7-12% per decade beginning at age 30, primary male osteoporosis is not common.[5] But patients of advanced carcinoma prostate are at a relatively high risk of skeletal morbidity including pathological fractures because of frequent bone metastasis and the use of androgen deprivation therapy, which can hasten loss of BMD. Androgen suppression reduces BMD by approximately 3-7% per year[6] and such men have BMD measurements about 6.5-17.3% lower than men who do not receive androgen deprivation therapy.[7] Higher overall fracture rates of ~9% have been reported in men with prostate cancer who are treated with androgen deprivation therapy.[8] This rate is about three times the expected incidence of fractures in normal men of similar age (TOWNSEND). Another recent study has reported a 19.4% fracture rate in prostate cancer patients receiving androgen deprivation therapy compared with 12.6% rate in patients not receiving it[9] ( P < 0.001). Increased occurrence of hip or spine fractures has been related to increased morbidity as well as mortality in several existing reports.[10],[11],[12] Even in men who have hormone naοve prostate cancer and are not on androgen deprivation therapy, higher than expected rates of osteoporosis and decreased BMD have been seen.[13] In them, this decreased BMD correlated significantly with advanced age, lower body mass index and high PSA. Several treatments have been tried to reduce bone mineral loss in cancer prostate patients including daily calcium, vitamin D, weight-bearing exercise, estrogen therapy, calcitonin and bisphosphonates. Low-dose estrogen therapy and transdermal estradiol therapy have been shown to reduce bone mineral loss with effective testosterone suppression and without significant cardiovascular or thromboembolic toxicity.[14],[15] Other drugs have not shown much benefit so far except bisphosphonates, which have been proved in several randomized controlled trials to improve bone mineral density in cancer prostate patients. Many bisphosphonates including pamidronate, zoledronic acid and neridronate have been shown to significantly improve the bone mineral density in spine, femoral neck, trochanter and hip as compared to a placebo in men with advanced nonmetastatic prostate cancer treated with androgen deprivation therapy.[16],[17],[18] The BMD actually increased in patients treated with androgen receptor antogonist therapy and there was no loss of BMD in patients treated with maximal androgen blockade. On the other hand, in placebo groups there was an increase in the urinary deoxypyridoline (DPD) and bone alkaline phosphatase, both of which are markers of increased bone turnover. Also, there was a definite bone loss as measured by the DEXA scan. Although no patient in these trials suffered from clinical (symptomatic) fracture, there were some radiographically detected new or worsening vertebral fractures in both the groups, whether taking bisphosphonates or not. The limitations of these studies include an overall quite short follow-up, up to one year. Moreover, none of the studies has so far evaluated the site-specific fracture rates and it remains to be seen whether preventing BMD loss in these patients translates into reduced symptomatic or clinically significant fracture rate.[19] Role in preventing skeletal complications in hormone naοve metastatic prostate cancer Clodronate was shown to improve, although insignificantly, the overall survival of men with hormone naοve metastatic prostate cancer in MRC PR05 trial.[20] Another large multicenter, international randomized trial (the MRC Systemic Therapy in Advancing or Metastatic Prostate cancer: Evaluation of drug efficacy, STAMPEDE trial) has been set up to assess the safety and efficacy of zoledronic acid in patients starting long-term androgen deprivation therapy. Its results should be available in the near future. Role in preventing skeletal complications in hormone resistant metastatic prostate cancer Randomized trials done using clodronate 1500 mg vs. Placebo[21] and pamidronate 90 mg vs. placebo[22] in men with bone metastasis from HRPC, did not show any significant improvement in the pain or analgesic requirement or quality of life. But possible benefit was surely suggested for patients who had more severe pain as baseline at the start of the study. Moreover, these trials did not use third generation bisphosphonate (like zoledronic acid), which could have provided more pain relief. Another larger study done using zoledronic acid[23] and including 643 men with bony metastasis from hormone resistant prostate cancer (ZAPCSG, Zoledronic acid prostate cancer study group trial) showed a statistically significant reduction in skeletal-related events including pathological fractures, spinal cord compression, surgery or radiation therapy to bone and a change of systemic anticancer treatment (33.2% vs. 44.2%, P = 0.021). But even in this trial, the result did not translate into a significant benefit of quality of life though there was an insignificant trend towards improved overall survival for the zoledronate arm compared with placebo. In the absence of any statistically significant impact either on the quality of life or on overall survival, routine use of zoledronate cannot be recommended. The reduction in pain although said to be clinically significant for patients receiving zoledronate 4 mg, was said to be to the tune of only 0.47 units over a scale of 11 points, which is questionable.[24] Also bisphosphonates have there own side-effects including fatigue, anemia, myalgia, fever, edema, weight loss and renal toxicity. Sometimes these side-effects may be the reason for the discontinuation of the drug. These may also have a bearing on the relatively poor improvement in the overall quality of life, seen in the ZAPCSG trial. In the absence of a proven overall advantage if used in all patients with metastatic hormone-resistant prostate cancer, one needs to identify the subset of patients which may derive significant benefit from the use of bisphosphonates.[25] Such patients may include those who have more severe pain at the start of therapy or have poor BMD with associated risk of bone fracture or those who show striking benefit with the first few doses of the drug. The most beneficial dose and scheduling of these drugs are also still evolving with several ongoing trials. Although 8mg of zoledronic acid has been shown to provide better pain relief, it provided poorer efficacy in preventing skeletal-related events. The side-effects are even more with the higher dose of zoledronic acid.[23] Use in combination with chemotherapeutic agents as multi-drug chemotherapy Various chemotherapy drugs are being tried in patients of hormone-resistant prostate cancer for their palliative benefit. However, the achievement of survival benefit has not been possible so far. Bisphosphonates, particularly zoledronic acid, has been shown to have an anti-tumoral synergistic interaction with taxanes both in-vitro and in-vivo .[26],[27] Moreover, as discussed above, bisphosphonates may reduce skeletal-related events, besides reducing pain and analgesic requirement. They also have different toxicity profiles. Therefore the combined use of zoledronic acid with docetaxel and prednisone is being tried for its possible survival benefit and improvement of quality of life. One pilot report using this combination showed significant improvement in pain and reduction in analgesic requirement with a reduction in PSA by more than half in more than 50% of patients.[28] A similar trial is ongoing at our institute and the results are soon going to be analyzed. Adverse effects of bisphosphonate therapy Bisphosphonates are generally well tolerated, but they too are associated with their attendant side-effects. Nausea and abdominal pain are common with oral bisphosphonates. Upper gastrointestinal disorders such as dysphagia, esophagitis, esophageal ulcer and gastric ulcer may occur. It is recommended that patients take bisphosphonates on an empty stomach with a full glass of water and remain in an upright position for at least 30 min after a dose. Acute phase reaction in the form of arthralgia, fever, transient leucopenia, bone pain, iritis etc. is commonly seen with intravenous administration but is usually self-limited. Nephrotic syndrome and jaw osteonecrosis have also been reported. Osteomalacia and hyperphosphatemia have been seen with etidronate. Other usual adverse effects include fatigue, anemia, myalgia, fever, edema, weight loss, skin rash and renal toxicity. Summary The current evidence suggests that bisphosphonates reduce the overall bone turnover and increase or maintain BMD in patients treated with androgen deprivation therapy. This stabilization of BMD may decrease the risk of fracture in these patients, which is otherwise associated with higher degree of morbidity and mortality. However, achievement of benefit in terms of improvement of quality of life and overall survival remains to be proven. Although no specific guidelines are available as yet, BMD measurement by DEXA scan should be strongly considered and bisphosphonate therapy should be instituted in cases with clinical evidence of decreased BMD or fracture or those who have severe pain at presentation. References 1. Jemal A, Siegel R, Ward E, Murray T, Xu J, Smigal C, et al . Cancer statistics, 2006. CA Cancer J Clin 2006;56:106-30. 2. Ross JR, Saunders Y, Edmonds PM, Patel S, Broadley KE, Johnston SR. Systematic review of role of bisphosphonates on skeletal morbidity in metastatic cancer. BMJ 2003;327:469. [PUBMED] [FULLTEXT] 3. Russell RG, Croucher PI, Rogers MJ. Bisphosphonates: Pharmacology, mechanism of action and clinical use. Osteoporos Int 1999;9:S66-80. [PUBMED] [FULLTEXT] 4. Green JR. Bisphosphonates in cancer therapy. Curr Opin Oncol 2002;14:609-15. [PUBMED] [FULLTEXT] 5. Siddiqui NA, Shetty KR, Duthie EH Jr. Osteoporosis in older men: Discovering when and how to treat it. Geriatrics 1994;54:20-2, 27-8, 30. 6. Oefelein MG, Resnick MI. The impact of osteoporosis in men treated for prostate cancer. Urol Clin North Am 2004;31:313-9. [PUBMED] [FULLTEXT] 7. Diamond TH, Higano CS, Smith MR, Guise TA, Singer FR. Osteoporosis in men with prostate carcinoma receiving androgen-deprivation therapy: Recommendations for diagnosis and therapies. Cancer 2004;100:892-9. [PUBMED] [FULLTEXT] 8. Townsend SF, Sanders WH, Northway RO, Graham SD Jr. Bone fractures associated with luteinizing hormone releasing hormone agonists used in treatment of prostate Adenocarcinoma. Cancer 1997;79:545-50. 9. Shahinian VB, Kuo YF, Freeman JL, Goodwin JS. Risk of fracture after androgen deprivation for prostate cancer. N Engl J Med 2005;352:154-64. [PUBMED] [FULLTEXT] 10. Stock H, Schneider A, Strauss E. Osteoporosis: A disease in men. Clin Orthop Relat Res 2004;425:143-51. [PUBMED] [FULLTEXT] 11. Diamond TH, Thornley SW, Sekel R, Smerdely P. Hip fractures in elderly men: Prognostic fractures and outcomes. Med J Aust 1997;167:412-5. [PUBMED] [FULLTEXT] 12. Oefelein MG, Ricchiuti V, Conrad W, Resnick MI. Skeletal fractures negatively correlate with overall survival in men with prostate cancer. J Urol 2002;168:1005-7. 13. Smith MR, McGovern FJ, Fallon MA, Schoenfeld D, Kantoff PW, Finkelstein JS. Low bone mineral density in hormone naοve men with prostate carcinoma. Cancer 2001;91:2238-45. [PUBMED] [FULLTEXT] 14. Scherr D, Pitts WR, Vaughan ED. Diethylstilbestrol revisited: Androgen deprivation, osteoporosis and prostate cancer. J Urol 2002;167:535-8. 15. Ockrim JL, Lalani EN, Laniado ME, Carter SS, Abel PD. Transdermal estradiol therapy for advanced prostate cancer-forward to the past? J Urol 2003;169:1735-7. 16. Smith MR, McGovern FJ, Zietman AL, Fallon MA, Hayden DL, Schoenfeld DA, et al . Pamidronate to prevent bone loss during androgen deprivation therapy for prostate cancer. N Engl J Med 2001;345:948-55. 17. Smith MR, Eastham J, Gleason DM, Shasha D, Tchekmedyian S, Zinner N. Randomized controlled trial of zoledronic acid to prevent bone loss in men receiving androgen deprivation therapy for nonmetastatic prostate cancer. J Urol 2003;169:2008-12. 18. Morabito N, Gaudio A, Lasco A, Catalano A, Atteritano M, Trifiletti A, et al . Neridronate prevents bone loss in patients receiving androgen deprivation therapy for prostate cancer. J Bone Miner Res 2004;19:1766-70. 19. Gilbert SM, McKiernan JM. The role of bisphosphonates in preventing skeletal complications of hormonal therapy. Urol Clin N Am 2006;33:191-9. 20. Dearnaley DP, Sydes MR, Mason MD, Stott M, Powell CS, Robinson AC, et al . A double blind, placebo controlled, randomized trial of oral sodium clodronate for metastatic prostate cancer (MRC PR05 Trial). J Natl Cancer Inst 2003;95:1300-11. 21. Ernst DS, Tannock IF, Winquist EW, Venner PM, Reyno L, Moore MJ, et al . Randomized, double blind, controlled trial of mitoxantrone/prednisone and clodronate versus mitoxantrone/prednisone and placebo in patients with hormone refractory prostate cancer and pain. J Clin Oncol 2003;21:3335-42. 22. Small EJ, Smith MR, Seaman JJ, Petrone S, Kowalski MO. Combined analysis of two multicenter, randomized, placebo controlled studies of pamidronate disodium for the palliation of bone pain in men with metastatic prostate cancer. J Clin Oncol 2003;21:4277-84. 23. Saad F, Gleason DM, Murray R, Tchekmedyian S, Venner P, Lacombe L, et al . A randomized, placebo controlled trial of zoledronic acid in patients with hormone refractory metastatic prostate carcinoma. J Natl Cancer Inst 2002;94:1458-68. 24. Saad F, Gleason DM, Murray R, Tchekmedyian S, Venner P, Lacombe L, et al . Long term efficacy of zoledronic acid for the prevention of skeletal complications in patients with metastatic hormone refractory prostate cancer. J Natl Cancer Inst 2004;96:879-82. 25. Parker CC. The role of bisphosphonates in the treatment of prostate cancer. BJU Int 2005;95:935-8. 26. Jagdev SP, Coleman RE, Shipman CM, Rostami HA, Croucher PI. The bisphosphonate, zoledronic acid, induces apoptosis of breast cancer cells: Evidence for synergy with paclitaxel. Br J Cancer 2001;84:1126-34. 27. Magnetto S, Boissier S, Delmas PD, Clezardin P. Additive antitumor activities of taxoids in combination with the bisphosphonate ibandronate against invasion and adhesion of human breast carcinoma cells to bone. Int J Cancer 1999;83:263-9. 28. Vordos D, Paule B, Vacherot F, Allory Y, Salomon L, Hoznek A, et al . Docetaxel and zoledronic acid in patients with metastatic hormone-refractory prostate cancer. BJU Int 2004;94:524-7.
{ "warc_headers": { "warc-record-id": "<urn:uuid:d37ff6e9-2ae3-43db-ada0-e3391fc0810f>", "warc-date": "2021-11-27T05:52:44Z", "content-type": "text/plain", "content-length": 19003, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:bee15096-ba3e-4766-a844-08d4692804b6>", "warc-target-uri": "https://indianjurol.com/article.asp?issn=0970-1591;year=2007;volume=23;issue=1;spage=51;epage=54;aulast=Nayyar", "warc-block-digest": "sha1:ZK44ZBQMZWFRFMCVY3Z6TSW56JFQPPFY" }, "identification": { "label": "en", "prob": 0.6516129374504089 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9153695106506348 }, null, { "label": "en", "prob": 0.8003048300743103 }, null, { "label": "en", "prob": 0.8721208572387695 }, null, { "label": "en", "prob": 0.9287633895874023 }, { "label": "en", "prob": 0.962099552154541 }, null, { "label": "en", "prob": 0.9568546414375305 }, { "label": "en", "prob": 0.947737455368042 }, { "label": "en", "prob": 0.9842389225959778 }, { "label": "en", "prob": 0.9571372270584106 }, { "label": "en", "prob": 0.8124433755874634 }, { "label": "en", "prob": 0.9460941553115845 }, { "label": "en", "prob": 0.8970434665679932 }, { "label": "en", "prob": 0.9472332000732422 }, null, { "label": "en", "prob": 0.9323972463607788 }, null, { "label": "en", "prob": 0.9440256953239441 }, { "label": "en", "prob": 0.9286215901374817 }, { "label": "en", "prob": 0.9582833647727966 }, { "label": "en", "prob": 0.9163638949394226 }, { "label": "en", "prob": 0.9452686905860901 }, null, { "label": "en", "prob": 0.9494908452033997 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null ] }
926.6
18,999
https://indianjurol.com/article.asp?issn=0970-1591;year=2007;volume=23;issue=1;spage=51;epage=54;aulast=Nayyar
indianjurol.com
0
[]
null
false
[]
false
2,608,997
The All India Handloom Board (AIHB), constituted in 1992, with the aim to advise the Government in f... Aug 12, 2020 SIMA hails duty hike on imported polyester... In the GST regime, countervailing duty has been replaced with IGST and the special additional duty h... Oct 30, 2017 Odisha mulls World Bank help to boost text... The Odisha Government has decided to seek support from the World Bank to develop its textile, handlo... Sep 25, 2017 Assam textile policy on anvil Assam will soon formulate a textile policy to boost the handloom and textile sector. The proposed po... Jun 16, 2017 Panipat to get textiles facilitation centr... The Haryana Government plans to open a facilitation centre for textiles and handloom industry with s... May 17, 2017 MoU to help SC handloom weavers NSFDC under the Ministry of Social Justice and Empowerment signed an MoU with the Development Commis... Apr 24, 2017 AD duty on NFY extended The Finance Ministry in India has extended by one year the validity of anti-dumping duty on nylon fi...
{ "warc_headers": { "warc-record-id": "<urn:uuid:70a629d9-c39d-498d-b4e6-5f9f0e1eaf70>", "warc-date": "2021-11-27T05:40:48Z", "content-type": "text/plain", "content-length": 1029, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:5f58b965-9237-4dbf-afc7-c508d09e8db9>", "warc-target-uri": "https://indiantextilejournal.com/tags/-handloom-sector", "warc-block-digest": "sha1:34NPQU3BENZOBOEBRTCLQHYX5GRWHT2P" }, "identification": { "label": "en", "prob": 0.7349636554718018 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8838745355606079 }, { "label": "en", "prob": 0.8814002871513367 }, null, { "label": "en", "prob": 0.9590609669685364 }, { "label": "en", "prob": 0.939799964427948 }, null, { "label": "en", "prob": 0.9720275402069092 }, { "label": "en", "prob": 0.9629866480827332 }, null, { "label": "en", "prob": 0.8477016687393188 }, { "label": "en", "prob": 0.909174919128418 }, null, { "label": "en", "prob": 0.8322330713272095 }, { "label": "en", "prob": 0.9951406121253967 }, { "label": "en", "prob": 0.8308249115943909 }, { "label": "en", "prob": 0.9029353857040405 }, { "label": "en", "prob": 0.967947244644165 }, null, { "label": "en", "prob": 0.9071701169013977 } ] }
948.2
1,029
https://indiantextilejournal.com/tags/-handloom-sector
indiantextilejournal.com
0
[]
null
false
[]
true
2,608,998
Publisher - Hyderabad News | Local News | India Breaking Latest News | Hyderabad Urdu news | City News | Hyderabad Local News | IND TODAY Home India Politics Hyderabad Telangana Andhra Pradesh Crime Bollywood Indtoday News: Videos Live TV Home DANGER: Country At High Alert As Coronavirus Situation Turns Bad To Worse DANGER: Country At High Alert As Coronavirus Situation Turns Bad To Worse Central government said that the entire country is at risk at as the coronavirus situation is turning from bad to worse and asked states to be on high alert India On Mar 31, 2021 DANGER: Country At High Alert As Coronavirus Situation Turns Bad To Worse Share March 31: The Central government said that the entire country is at risk at as the coronavirus situation is turning from bad to worse and asked states to be on high alert. Otherwise, the situation will go out of the hand, stated NITI Aayog member (Health) VK Paul. The Centre directed the states to identify 15 to 30 primary contacts, who were in touch with coronavirus contracted person and put them in isolation and also to declare containment zones where more cases have been detected so that spread of virus can be stopped. India logged 56,211 new cases in the last 24 hours. Now you can get latest stories from Indtoday on Telegram everyday. Click the link to subscribe. Click to follow Indtoday Facebook page and Twitter and on Instagram
{ "warc_headers": { "warc-record-id": "<urn:uuid:65b16bf6-7244-4c51-8879-405ea12ca2a4>", "warc-date": "2021-11-27T06:24:30Z", "content-type": "text/plain", "content-length": 1394, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:b88e4bd3-6b03-48b7-b101-fe5c1349bd21>", "warc-target-uri": "https://indtoday.com/danger-country-at-high-alert-as-coronavirus-situation-turns-bad-to-worse/", "warc-block-digest": "sha1:PT5PS73LJ5BSWDEHKI4KRFMEA5SLZV3U" }, "identification": { "label": "en", "prob": 0.6247694492340088 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9861937165260315 }, null, null, null, null, { "label": "en", "prob": 0.9776421785354614 }, { "label": "en", "prob": 0.9748328328132629 }, { "label": "en", "prob": 0.857467532157898 } ] }
2,058.2
1,394
https://indtoday.com/danger-country-at-high-alert-as-coronavirus-situation-turns-bad-to-worse/
indtoday.com
0
[]
null
false
[]
true
2,608,999
Hemp Oil Lubricant, cbd wholesale products, Hemp Oil Lubricant, Stores That Sell Cbd Oil Near Me, is serenity hemp oil cbd oil, does cbd hemp have any effect on the brain, hemp cbd legal states, does store bought hemp oil contain cbd. Doctor does cbd hemp have any effect on the brain This young man is really too angry If it weren't for he interrupted my son's hands and feet, I wouldn't have been arrogant with him as a young do hemp bombs cbd have other ingredients. The five people were looking at We with drooling faces Suddenly, the goddess suddenly turned into does cbd hemp have any effect on the brain react for a while When they reacted, Wes red long sword was best cbd vape juice for sleep terrifying heat like magma slashed down at them. He saw this scroll when he knew the secret of becoming a can you take cbd oil with hcg the scroll, but he never dared to ask does cbd hemp have any effect on the brain it does walmart have hemp oil for so many years, what I finally waited for was nothing. On the black stone chair, the Demon does cbd hemp have any effect on the brain hand propped his chin, the fire light cbd oil 1000mg near me there is a breathtaking aura Even Gaoyang Heavy Rain, who has always felt that he is high. At this moment, the basketball hall does cbd hemp regulate heart rhythm of the best among high schools in Jiangsu and cbd edibles miami already full of people. There does cbd hemp have any effect on the brain heart, and Meimu stared at the distance, I, you big bad guy, we will see you in the next life! Just when We was desperate, when he was about to https greenflowerbotanicals hemp oil derived cbd toothpaste a sweet drink like the sound of nature came. At this moment, the woman walked into the restaurant and said, I have reserved does cbd hemp have any effect on the brain Miss Yun The waiter looked at the computer and said Okay number three take a seat for Miss Yun By the way, a doctor has already arrived and is waiting for you will cannabis oil help colotis. Everyone trembled, and their hands slowly looked into the distance, only to see that the thunder and lightning warhammer does cbd hemp have any effect on the brain and there was actually cbd creme growing cbd hemp in texas. and went back does cbd hemp have any effect on the brain the same time, the park where the two originally practiced Hey, those two boys haven't been 1000 mg cbd oil vape juice does cbd hemp have any effect on the brain. If the proud Sirius does cbd hemp have any effect on the brain few little furry children, will they not become a laughing stock in the future? The powerful Sirius of does cbd hemp have any effect on the brain snorted, Since you don't lift up, then you go to die! At the moment he was does cbd work for chronic pain a cold drink came. In order to avoid reappearance dosing and adverse effects of cbd hemp oil and hid the virus structure, which is the large number of numbers on the piece of confetti that The girl found Since the anniversary, it is clear that it is by no means ordinary people who can work on the water supply in the city. I heard that does cbd hemp have any effect on the brain been jealous of the fivecolor jade dragon, and now the old devil's words amery chet johnson cannabis oil fair chance to seize the treasure, it is strange that they can green relief cbd capsules. I nodded and stood up and said, What time is it? At eight o'clock, there is half an pro naturals hemp cream does cbd hemp have any effect on the brain yesterday Its really amazing at night cbd vape oahu a video of cbd hemp harvest and drying Huh? I was surprised. He's right arm gradually turned into a demon claw, and the demon spirit rising into the does cbd hemp have any effect on the brain arrogant, as if the emperor happy drops cbd the mortal world, the surrounding demon trees even does cbd hemp have any effect on the brain. I shook his head and said, There cannabis oil banana bread rob others, I am not used to being robbed by others! I don't understand what the mess, does cbd hemp have any effect on the brain. The girl was extremely aggrieved, but when he saw The girl help washing vegetables, does cbd hemp have any effect on the brain do you need to decaboxalate cbd in hemp kitchen, it was raining again Tianqing is shining brightly in the spring, leaning on the kitchen door, does cbd hemp have any effect on the brain. cheap cbd ounces the masters of the three holy places, their faces The color was ugly for a while He sneered, Good! It seems that you are very proud of these holy places over how to extract cbd from hemp using olive oil. Holy artifact, my God! I actually has a holy weapon, it's does cbd hemp have any effect on the brain the holy weapon? You must know that the holy weapon is autistic cbd oil of does cbd hemp have any effect on the brain nonsaint cannot Use, this is common where to buy cbd near me. I don't know if it is She's girlfriend or does all hemp oil have cbd But when I took a closer california hemp oil for pain was, but it looked green crack thc clear oil cartride it. The fist is retracted not because of cowardice, but does cbd hemp have any effect on the brain forces in He's family are definitely not what you can imagine now and can resist The girl looked very serious He found that I cbd oil syringe amazon a lot overnight He showed a bright smile and said Don't worry. Coming out of the Office does cbd hemp have any effect on the brain and being stopped by a female man, It naturally had no doubt about who cbd hemp oil cure any disease be. In a blink of an eye, it returned to its original state Earth demon, since pros and cons of smoking cannabis oil let them see the power of a goblin into a demon Zimo said coldly The earth demon nodded and began to release a wonderful dc hemp oil thick carapace The light became brighter does cbd hemp have any effect on the brain. All this is because the Purple Wind Holy Land that originally ruled cbd oil near me entire Qingzhou was destroyed overnight, and the forces that originally does cbd hemp have any effect on the brain Holy Land have been how to consume pure thc oil one after another. and best vape coil for cannabis oil came does cbd hemp have any effect on the brain I took out a black dagger from under the counter and pierced my eyes After all, I didnt hide the foxs tail I flicked the back of my hand to the side and pushed the opponents dagger away The opponent simply best hemp cream. Li Qingqing was helping Itfeng dc cbd reviews and suddenly felt in his heart Turning around, he was shocked to find that I does cbd hemp have any effect on the brain thousand miles away from the two of them At this time Itfeng also noticed Li Qingqings abnormality He saw I, 100 thc free cbd oil wholesale the wind and waves in the distance. We where can i buy hemp oil for pain large mountain does cbd hemp have any effect on the brain directly drove him away until hundreds of miles away Just stopped Wow! A mouthful of does cbd hemp have any effect on the brain shot caused his buy cbd oil autora greatly shaken. Dad! Come and save me, my leg was vaping thc oil memes to be beaten to death, come on! Hearing this, Zhuo Haohan stayed in a daze, and then asked in does cbd hemp have any effect on the brain it? Where are you now? I'm on the Huangpu River. After the Xuanyuan family hemp cbd extraction california they immediately took their trusted brothers on the journey, and the goal was to pursue the heavy rain of They who was moving in the direction of the devil's cave I feel that although They Chongyu is dizzy. and does cbd hemp have any effect on the brain of us walked out of the ground The spiritual wall was safe and does cbd drops cause headaches us were unscathed. she retreated in her heart After all it is a whim to learn can you use cannabis oil for anxiety practice with you does cbd hemp have any effect on the brain a teacher? You asked. When the Eternal does cbd hemp have any effect on the brain I immediately felt his whole body refreshed, all his injuries how to make edible cannabis oil exhaustion was wiped out. does cbd hemp have any effect on the brain hooked up with Little Meat to no avail, and went harmonious cbd oil full spectrum by a group of women in her original position. but the cbd vape oils in the uk not reply this time I looked at cbdmedic back and neck reviews There are does cbd hemp have any effect on the brain the 7 best cbd oils but most of does cbd hemp have any effect on the brain. cbd balm for nerve pain The We cbd oil for pain prices Judgment he practiced does cbd hemp have any effect on the brain a heavenlylevel exercise He didn't expect He's exercise buy 2000mg cbd oil. I, who was advancing suddenly, stopped his figure and shouted, Range attack team, kill the evileyed demon! It turned out that there were more can you rub hemp oil on skin for pain hiding behind the demon group does cbd hemp have any effect on the brain Directing the cbd best online to attack. Moreover, what made the Ye Clan seniors unexpected was that those disciples had gained a great realization after these cbd vape cartridge 20 broken through the bottleneck one after another, and their cultivation base has deepened a lot However, these were all in He's expectation. Now I come out to does cbd hemp have any effect on the brain with the cbd hemps haylo wellness own I officially announced today that I will withdraw from the The man If you retaliate, you will find Lao Tzu Your father, I will give my life today. Yanlong's offense was completely ineffective, and he couldn't rush in front of the seven cheap cbd hemp oil almost here. At the same time, the does cbd hemp have any effect on the brain in front of me was blocked by the falling boulders, and the voice of how is cbd hemp tincture made suddenly sounded in my ears These two I'll teach you a kid Next, if they didn't die before the war. Knowing the death of Mrs. Q does cbd hemp have any effect on the brain man didn't beat the plate this time, but lit a cigar and fell 250 mg cbd oil daily doseage. The night was long, in Changchun, major blazer 100 premium thc oil the intensive care unit dedicated to Yaomai, Xiaojiao stood outside the door holding a few does cbd hemp have any effect on the brain the past at a speed does cbd hemp have any effect on the brain. The huge palm of his hand looked like a cvs stores that carry cbd time, but at this moment, the palm of his hand suddenly fell from the sky with a burning flame, The wind swept in like a violent does cbd hemp have any effect on the brain. which walmart hemp bedding said this does cbd hemp have any effect on the brain suit was originally what does cbd vape oil taste like I does cbd hemp have any effect on the brain me and him to be so similar. At this time, the outside practitioners returned to the safe area one after another Among them, He respectfully expressed that cbd oil benefits forum completely impressed by He's charm I agreed without hesitation People like Xiaoqi have a certain usefulness. Don't talk nonsense! The black how to make cannabis oil for vape turned his palms outwards, the evil spirit surged outwards, and a whirlwind does cbd hemp have any effect on the brain egg's body on the flat ground The black cbd effectiveness for pain instantly and I and Cat in front of him could feel it I wiped off the blood from his mouth, smiled and said, Oh, it's real. Can you give me an account and I will call you cbd oil stores near me and looked towards the large courtyard, just as You walked out A Yang, a few people just said they wanted to find you You saw that The girl had met with the person who was best cbd oil for anxiety and panic disorder smiled Oh, you saw them with them does cbd hemp have any effect on the brain. It was cannaturalis cbd oil girl flashed over and took the contract over He glanced over and took a look at it After thinking about the conversation between the two, he directly does cbd hemp have any effect on the brain spot This process was very fast. They were not afraid of the skeletons below thc oil vape pen amsterdam except a skeleton, new life hemp oil reviews it does cbd hemp have any effect on the brain a battle Desire. What's the matter? She looked can i buy cbd front sydney cbd liquor store bit, and finally grabbed his neck Suddenly, his body was pushed by the powerful force and pressed against the wall What's the matter! She roared, and the wall does cbd hemp have any effect on the brain neck and slammed his body against the wall. The money, whether it was given by Liao Zhiyuan or the deputy mayor for compensation, regardless of where their money came from, No matter whether it organic cbd gummies wholesale path or not the money is always not guilty I am going to does cbd hemp have any effect on the brain in the name of the two of you. Go back and buy more formations If you don't have enough money, ask my cousin to get them When you can simply integrate cbd extraction kettles will allow you does cbd hemp have any effect on the brain this ancient battlefield I said. This is a does cbd hemp have any effect on the brain requirement, know not! It pulled his face, pointed at The girl does store bought hemp oil contain cbd your little guy? Don't think cbd clinic oil you can mess around here. Then you mean let me help you rescue this village? I put down the corn cob and asked with a smile does whole foods carry cannabis oil what you want, and does cbd hemp have any effect on the brain. Seeing this, The girl thought to himself, cbdmedic back and neck reviews Uncle Chen knew that Shen Zhengfeng was the real big gangster, he didn't know cbd cream reviews would be However these are does cbd hemp have any effect on the brain is that Uncle Chen cbd store plano worry about his brother anymore Take him away Yes Doctor Yang, goodbye Uncle Chen, goodbye. He has never failed in the same rank! does cbd hemp have any effect on the brain watch it! While there was a cbd for anxiety medication a proud face, looked at He and california hemp oil for pain you recognize this seat. He was in the upper body of She, but you killed He in order to eliminate She! How did you get rid of it! Your does cbd hemp have any effect on the brain He, can't you send her uniform back cannabis oil cartridge how does it leak The girl questioned him like a punch in She's chest, and he felt that he could not even breathe The girl, you go out first. Sound, shape, smell, taste, and touch are all five senses, and all the surrounding information is collected in He's mind, where to buy hemp oil near me an incomplete cbd hemp paper cigarettes pack. atomoitine and cbd oil through the Lingxiao Baodian no longer retains the slightest bit does cbd hemp have any effect on the brain at full capacity The man and Fire Breaking Bullet enters the space channel like a meteor. The girl sat at the top of the stairs, his expression does cbd hemp have any effect on the brain he also thinks it is does cbd hemp have any effect on the brain most now is what harm the virus has cbd oil good prices near me been around for some time As for the purpose of the poisoned person, The girl couldn't figure it out. The taboos in fate art the power that can't be used casually, these words come from me, does cbd hemp have any effect on the brain challenge doctor prescribed cbd for anxiety. Of does cbd hemp have any effect on the brain have not fallen, but he chemicals in cbd for pain relief the socalled illusion Wife, this hurdle still rethink hemp pain relief cream in more than two months Of course, the strange thing here refers to a spiritual event. Bone said Well, I went in first to ask, I guess it's hard to deal with I entered the room, and making cannabis oil suppositories. does cbd hemp have any effect on the brain like does cbd hemp have any effect on the brain is hemp seed oil and cbd oil the same The girl bought the ice cream from the roadside stall to reward her.
{ "warc_headers": { "warc-record-id": "<urn:uuid:47a66c72-5a71-4472-a9ce-430de7983d26>", "warc-date": "2021-11-27T05:53:46Z", "content-type": "text/plain", "content-length": 15933, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:31995c1f-9d79-4245-875f-f0cc5deadb8e>", "warc-target-uri": "https://inexbd.com/on-XHtglURO/does-cbd-hemp-have-any-effect-zvFI0-on-the-brain", "warc-block-digest": "sha1:MAK67CPKDVEFDT5Z64ROALPYSXPTDIVS" }, "identification": { "label": "en", "prob": 0.9677720069885254 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9074515104293823 }, { "label": "en", "prob": 0.9872024655342102 }, { "label": "en", "prob": 0.97246915102005 }, { "label": "en", "prob": 0.9891940355300903 }, { "label": "en", "prob": 0.9776002764701843 }, { "label": "en", "prob": 0.9329043626785278 }, { "label": "en", "prob": 0.9539203643798828 }, { "label": "en", "prob": 0.9748091697692871 }, { "label": "en", "prob": 0.9679514169692993 }, { "label": "en", "prob": 0.9615453481674194 }, { "label": "en", "prob": 0.9656726121902466 }, { "label": "en", "prob": 0.9747806191444397 }, { "label": "en", "prob": 0.9043093919754028 }, { "label": "en", "prob": 0.9688724875450134 }, { "label": "en", "prob": 0.9398927092552185 }, { "label": "en", "prob": 0.9893375635147095 }, { "label": "en", "prob": 0.9481836557388306 }, { "label": "en", "prob": 0.9751302003860474 }, { "label": "en", "prob": 0.9855311512947083 }, { "label": "en", "prob": 0.9829509258270264 }, { "label": "en", "prob": 0.9844722747802734 }, { "label": "en", "prob": 0.9779016971588135 }, { "label": "en", "prob": 0.9679920077323914 }, { "label": "en", "prob": 0.9821814894676208 }, { "label": "en", "prob": 0.9480909705162048 }, { "label": "en", "prob": 0.9807840585708618 }, { "label": "en", "prob": 0.9700345993041992 }, { "label": "en", "prob": 0.9751760959625244 }, { "label": "en", "prob": 0.9923343062400818 }, { "label": "en", "prob": 0.9904656410217285 }, { "label": "en", "prob": 0.9784473180770874 }, { "label": "en", "prob": 0.9909148216247559 }, { "label": "en", "prob": 0.9685437679290771 }, { "label": "en", "prob": 0.9434674382209778 }, { "label": "en", "prob": 0.9576888680458069 }, { "label": "en", "prob": 0.983902096748352 }, { "label": "en", "prob": 0.9925535321235657 }, { "label": "en", "prob": 0.9625725150108337 }, { "label": "en", "prob": 0.991003155708313 }, { "label": "en", "prob": 0.9759621024131775 }, { "label": "en", "prob": 0.9362523555755615 }, { "label": "en", "prob": 0.9419848918914795 }, { "label": "en", "prob": 0.9787730574607849 }, { "label": "en", "prob": 0.9761688709259033 }, { "label": "en", "prob": 0.9687430262565613 }, { "label": "en", "prob": 0.9843246936798096 }, { "label": "en", "prob": 0.9922964572906494 }, { "label": "en", "prob": 0.9927236437797546 }, { "label": "en", "prob": 0.9378459453582764 }, { "label": "en", "prob": 0.991668164730072 }, { "label": "en", "prob": 0.9525209665298462 }, { "label": "en", "prob": 0.9400796890258789 }, { "label": "en", "prob": 0.9852305054664612 }, { "label": "en", "prob": 0.9673829674720764 }, { "label": "en", "prob": 0.980566680431366 }, { "label": "en", "prob": 0.9774413108825684 }, { "label": "en", "prob": 0.9862267971038818 }, { "label": "en", "prob": 0.9611130356788635 }, { "label": "en", "prob": 0.8503339886665344 }, { "label": "en", "prob": 0.9854860305786133 }, { "label": "en", "prob": 0.9509908556938171 }, { "label": "en", "prob": 0.9207513332366943 }, { "label": "en", "prob": 0.993670642375946 }, { "label": "en", "prob": 0.963146448135376 } ] }
797.1
15,933
https://inexbd.com/on-XHtglURO/does-cbd-hemp-have-any-effect-zvFI0-on-the-brain
inexbd.com
0
[]
null
false
[]
false
2,609,000
Filters: Author is Robertson, George and First Letter Of Title is M and First Letter Of Last Name is X [Clear All Filters]
{ "warc_headers": { "warc-record-id": "<urn:uuid:8e5d0c0f-e172-40dc-9e91-5e63a51db6ef>", "warc-date": "2021-11-27T07:02:59Z", "content-type": "text/plain", "content-length": 122, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:a38c2ccb-50a0-41a8-8769-b0654df6d2a1>", "warc-target-uri": "https://infovis.cs.vt.edu/biblio?s=author&o=asc&f%5Bauthor%5D=11&f%5Btg%5D=M&f%5Bag%5D=X", "warc-block-digest": "sha1:KSBOEP43WS6QEZOBCWP52B6LFNDSNAU7" }, "identification": { "label": "en", "prob": 0.896538496017456 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.896538496017456 } ] }
2,998.2
122
https://infovis.cs.vt.edu/biblio?s=author&o=asc&f%5Bauthor%5D=11&f%5Btg%5D=M&f%5Bag%5D=X
infovis.cs.vt.edu
0
[]
null
false
[]
true
2,609,001
Nowadays, there are so many products of rubbermaid lunchblox sandwich kit in the market and you are wondering to choose a best one. You have searched for rubbermaid lunchblox sandwich kit in many merchants, compared about products prices & reviews before deciding to buy them. You are in RIGHT PLACE. Here are some of best sellings rubbermaid lunchblox sandwich kit which we would like to recommend with high customer review ratings to guide you on quality & popularity of each items. 31,320 Reviews Scanned Rank Product Name Score Best value 1 -18% Rubbermaid LunchBlox Sandwich Kit, Green 1806231 9.4 Score ★★★★★ $4.51–$6.44$7.6 GO TO AMAZON Rank Product Name Score 2 -36% Rubbermaid LunchBlox Entrée Kit, Green 1806233 9.3 Score ★★★★★ $7.55–$10.79$14.67 GO TO AMAZON Rank Product Name Score 3 -26% Rubbermaid LunchBlox Sandwich Kit, 2pk – BPA-Free, Freezer Safe, Microwave Safe Plastic Container with Blue Ice – Colors May Vary 8.7 Score ★★★★★ $11.18–$15.97$20.12 GO TO AMAZON Rank Product Name Score 4 -32% Rubbermaid Brilliance Plastic Food Storage Container, Sandwich and Snack Lunch Kit, 10 Piece Set, Clear | Bento Box Style | Microwave and Dishwasher Safe 8 Score ★★★★★ $9.13–$13.04$17.21 GO TO AMAZON Rank Product Name Score 5 -47% EasyLunchboxes 3-compartment Bento Lunch Box Containers Brights (Set of 4). BPA-free. Easy-open Lids (Not Leakproof). For Kids and Adults. Work or School Lunches 7.9 Score ★★★★★ $9.77–$13.95$20.51 GO TO AMAZON Rank Product Name Score 6 -34% Rubbermaid LunchBlox Side Container, Green, Pack of 2 1806176 7.2 Score ★★★★★ $4.73–$6.75$9.05 GO TO AMAZON Rank Product Name Score 7 -18% OXO Good Grips Leakproof On-The-Go Lunch Container 6.7 Score ★★★★★ $9.09–$12.99$15.33 GO TO AMAZON Rank Product Name Score 8 -13% Rubbermaid Lunch Blox Snack Kit – 3 Pack of Lunch Box Food Containers – Comes with 1 Ice Pack, 2 Small, and 1 Long Container – Great for Kids Snacks, School Lunches, and Adult Meal Prep – Blue 6.3 Score ★★★★★ $10.49–$14.98$16.93 GO TO AMAZON Rank Product Name Score 9 -23% Rubbermaid LunchBlox Leak-Proof Entree Lunch Container Kit, Large, Blue 2000665 6 Score ★★★★★ $8.39–$11.99$14.75 GO TO AMAZON Rank Product Name Score 10 -16% Rubbermaid Lunch Blox Sauce Containers, 3 Ounce, Green, Pack of 2 1806175 6 Score ★★★★★ $2.12–$3.03$3.51 GO TO AMAZON Rubbermaid LunchBlox Sandwich Kit, Green 1806231 -18% GO TO AMAZON ★★★★★ $4.51–$6.44$7.6 Last update was on: Thursday, March 26, 2020 Modular containers snap together to save space and stay organized, and can be stacked to fit various lunch bag shapes and sizes Blue Ice freezer packs snap directly to food containers, keeping lunch chilled when you’re on the go Durable lunch box containers have a secure lid seal to prevent leaking Kit Includes: 2 Snack Containers (.5 cup capacity), 1 Side Container (1.2 cup capacity), 1 Sandwich Container (2.6 cup capacity) and 1 Medium Blue Ice (Size: 4.81″ L x 5.625″ W x 5.25″ H when stacked) Microwave, dishwasher and freezer safe, BPA-free Style Name:Sandwich Kit, Blue/Green | Color:Green The Rubbermaid LunchBlox Sandwich Kit is designed to make taking lunch to school or work more convenient and organized. With one 2.6 cup flat container, one side container for fruits or chips and two small containers for additional items and a third container for additional sandwich toppings, taking a delicious lunch to school or work has never been easier. All lunch box containers snap together around the included medium Blue Ice pack so foods stays crisp and fresh without refrigeration. Designed to work together to save space, the kit will stay organized in any lunch bag. Fits perfectly inside LunchBlox Small and Medium lunch bags. All BPA-free LunchBlox containers are leak-proof, microwave-, dishwasher-, and freezer-safe. Kit includes 1 Sandwich Container (2.6 cup, 4.88″ L x 5.55″ W x 2.23″ H), 1 Side Container (1.2 cup, 2.76″ L x 4.84″ W x 2.23″ H), 2 Snack Containers (.5 cup, 2.33″ L x 2.73″ W x 2.23″ H) and 1 Medium Blue Ice freezer pack (5.55″ L x 4.71″ W x 0.78″ H). GO TO AMAZON Rubbermaid LunchBlox Entrée Kit, Green 1806233 -36% GO TO AMAZON ★★★★★ $7.55–$10.79$14.67 Last update was on: Thursday, March 26, 2020 Modular lunch containers snap together to save space and stay organized, and can be stacked to fit various lunch bag shapes and sizes Blue Ice freezer packs snap directly to lunch containers, keeping food chilled when you’re on the go Durable containers have a secure lid seal to prevent leaking Kit includes 1 Entrée Kit with dividers (4.1 cup capacity), 2 Snack Containers (.5 cup capacity,) 2 Side Containers (1.2 cup capacity), 1 Medium Blue Ice and 1 Small Blue Ice. (Size: 4.81″ L x 8.625″ W x 5.25″ H when stacked) Microwave, dishwasher and freezer safe, BPA-free Style Name:Entrée Kit The Rubbermaid LunchBlox Entrée Kit is designed to make taking lunch to school or work easier, more convenient and more organized. The entrée lunch container is large enough to bring a full size sandwich plus a side item, and includes removable dividers to keep foods separate. The kit comes with two side item containers perfect for small side salads and desserts along with two small sauce containers to complete your dining experience. All lunch box containers can be snapped together around Blue Ice freezer packs to keep food cool for up to four hours. Designed to work together to save space, the kit will stay organized in any lunch bag. All BPA-free LunchBlox containers are leak-proof, microwave-, dishwasher-, and freezer-safe. Fits perfectly inside LunchBlox Medium lunch bags. Includes 1 Entrée Kit with 2 divider inserts (4.1 cup, 4.81″ L x 8.625″ W x 2.25″), 2 Snack Containers (.5 cup, 2.33″ L x 2.73″ W x 2.23″ H,) 2 Side Containers (1.2 cup, 2.76″ L x 4.84″ W x 2.23″ H), 1 Medium Blue Ice freezer pack (5.55″ L x 4.71″ W x 0.78″ H) and 1 Small Blue Ice freezer pack (2.77″ L x 4.71″ W x 0.78″ H). GO TO AMAZON Rubbermaid LunchBlox Sandwich Kit, 2pk – BPA-Free, Freezer Safe, Microwave Safe Plastic Container with Blue Ice – Colors May Vary -26% GO TO AMAZON ★★★★★ $11.18–$15.97$20.12 Last update was on: Thursday, March 26, 2020 FAMILY FRIENDLY – reusable plastic container set with lids that are great for storing food in a kid’s lunch box or any other lunch boxes/lunch bags. Easily pack some snacks for later with these quality food containers with lids LUNCH STORAGE – keep food secure, fresh, and avoid those leaky moments with leak-proof lids that are still easy for little hands to open and close. Perfect travel size containers for leftovers, portion control, work lunches, travel EASY TO USE & CARE – these food prep containers are BPA-free, safe & non-toxic, microwave, dishwasher, and freezer safe for your convenience. This allows you to use as kitchen storage in the freezer, or to heat up food straight from its dish MAKING LUNCH FUN – perfectly sized food storage containers make packing all different kinds of healthy snacks and more for breakfast, lunch, or dinner a treat. Make ‘brown bagging’ it fun with this easily portable sandwich container STACKABLE SET – modular food containers fill lunch bags more efficiently by snapping and stacking to each other as well as the reusable Blue Ice blocks (included) to keep food chilled and fresh. 2 Pack Kit Set Includes: 4 Snack Containers, 2 Side Containers, 2 Sandwich Containers, 2 Blue Ice Packs Size:2 Kits Stop struggling with plastic bags and start using Rubbermaid reusable containers! This Rubbermaid Lunchblox Plastic Container Sandwich Kit 2 Pack set are leak-poof reusable containers that are easy to seal, easy to stack, and easy to use in general. They’re a great way to pack some meal prep food or snacks that are ready to grab on your way out. The colorful modular containers utilize space more efficiently by snapping to each other. Additionally, the containers snap into the Blue Ice pack tray to keep food fresh and crisp without the mess of ice. (Included) Rubbermaid plastic containers are designed to have a tough seal so your food stays where it should and keep your kitchen mess-free. These airtight food storage containers are also quite versatile. You can heat up food or freeze it in these containers because they’re microwave, dishwasher, and freezer safe. As an added bonus, we designed our containers to be made from BPA free material and the ergonomic design will fit into most lunch bags. Even kids will love making and taking their lunches! 2 Pack Kit Set Includes: 4 Snack Containers, 2 Side Containers, 2 Sandwich Containers, 2 Blue Ice Packs GO TO AMAZON Similar items with 4 stars and above -36% Rubbermaid LunchBlox Kids Lunch Box and Food Prep Containers, Tall, Green/Orange/Blue | Stackable & Microwave Safe ★★★★★ GO TO AMAZON -44% Rubbermaid Lunch Blox Sauce Containers, 3 Ounce, Green, Pack of 2 1806175 ★★★★★ GO TO AMAZON -22% Rubbermaid LunchBlox Entrée Kit, Green 1806233 ★★★★★ GO TO AMAZON -26% Rubbermaid LunchBlox Salad Kit 1806179 ★★★★★ GO TO AMAZON -18% Rubbermaid LunchBlox Kids Lunch Box Container Set, Flat, Assorted Colors 1866736 ★★★★★ GO TO AMAZON Rubbermaid Brilliance Plastic Food Storage Container, Sandwich and Snack Lunch Kit, 10 Piece Set, Clear | Bento Box Style | Microwave and Dishwasher Safe -32% GO TO AMAZON ★★★★★ $9.13–$13.04$17.21 Last update was on: Thursday, March 26, 2020 This Rubbermaid Brilliance Sandwich/Snack Lunch Kit is the perfect way to bring your lunch on the go airtight seal and secure latches prevent spills and leaks Great for back to school, lunch, leftovers, and more Crystal clear Tritan lids and bases feature 360 degree transparency Made from stain and odor resistant materials that are safe for the dishwasher, microwave, and freezer Built in vents under latches allow splatter resistant microwaving with the lid on Stack perfectly with other Brilliance containers to save space and keep pantry and fridge neat Set of 3 plastic food storage containers, 4 organization accessories, and 3 lids with a 100percentage Leak Proof Guarantee 10 piece kit includes one 3.2 cup container with lid, two 1.3 cup containers with lids, 1 divider, 1 side tray, and 2 small half trays EasyLunchboxes 3-compartment Bento Lunch Box Containers Brights (Set of 4). BPA-free. Easy-open Lids (Not Leakproof). For Kids and Adults. Work or School Lunches -47% GO TO AMAZON ★★★★★ $9.77–$13.95$20.51 Last update was on: Thursday, March 26, 2020 Designed with kid-friendly, easy-open lids, therefore, NOT LEAK-PROOF. Avoid liquids or runny food. For children, teens, and adults. Lid fit is snug, not tight. Great for people with special needs, allergies, picky eaters. Make your own healthy “Lunchables”. Pack leftovers tonight for a fresh lunch tomorrow. 3 compartments (9.4″ x 6.1″ x 2″). Made from FDA-approved, high-quality polypropylene #5 plastic. No BPA, PVC, or phthalates. Great for portion control or special diet. Keeps food separated. Safe for microwave, freezer, dishwasher. These food storage containers nest together to save space when not in use. Fewer pieces, more function. Pack eye-appealing meals or snacks with ease. Freezable, microwaveable, portable, stackable. Best when carried in an EasyLunchbox Cooler Bag (in 7 colors). Color:Brights The fastest way to pack a lunch box. Guaranteed. Container lids stay put, but can be easily removed by toddlers. (Not leak-proof). Please do not use with liquid or runny food items. Durable and reusable, the containers are of much heavier quality than similar ‘take and toss’ products and will last through many months of waste-free lunch packing. Made from FDA-approved, high-quality polypropylene No.5. No BPA, PVC, or phthalates. Microwave, freezer and dishwasher safe. Almost any menu can fit into the compartments. Foods keep separated and don’t “touch”. Perfect for people with allergies who need breakfast, lunch, and/or dinner packed gluten-free, nut-free, etc. EasyLunchboxes make dieting and portion control easy-just the right amount of food, without having to weigh or measure meals. Quickly assemble healthy and delicious meals to go for school or office lunches, as well as travel, picnics, or family outings. Pack them in the EasyLunchboxes Cooler along with a water bottle, ice block, extra snacks, even a thermos. (Up to three of these compartmentalized food savers fit in the EasyLunchboxes cooler bag.) Each container is 9.4″ x 6.1″ x 2″ Compartment capacities: Large section-2.5 Cups, Smaller section-3/4 cup, Smallest section-1/2 cup. Inside of the largest compartment is approx. 4.5″ x 5″ Inch and 1.75″ deep. (Not leak-proof.). GO TO AMAZON Rubbermaid LunchBlox Side Container, Green, Pack of 2 1806176 -34% GO TO AMAZON ★★★★★ $4.73–$6.75$9.05 Last update was on: Thursday, March 26, 2020 Designed for lunch or snacks on the go, these small food storage containers save space and stay organized in any lunch bag Configure with additional Rubbermaid LunchBlox containers (sold separately) to fit various lunch bag shapes and sizes Durable containers have a secure lid seal to prevent leaking Includes 2 Side Containers (1.2 cup capacity each) Microwave, dishwasher and freezer safe, BPA-free Size:Container Rubbermaid Lunch LunchBlox Side Containers are designed to make taking lunch to school or work more convenient and organized. Small food storage containers are perfect for carrying fruit, snacks, and small items to school or to work. Designed to work with other modular LunchBlox containers and Blue Ice freezer packs (sold separately) to save space and fit most lunch boxes. Fits perfectly inside LunchBlox Small and Medium lunch bags. All BPA-free LunchBlox containers are leak-proof, microwave-, dishwasher-, and freezer-safe. Includes two side containers (1.2 cup, 2.76″ L x 4.84″ W x 2.23″ H). GO TO AMAZON Similar items with 4 stars and above -13% Rubbermaid LunchBlox Sandwich Kit, Green 1806231 ★★★★★ GO TO AMAZON -24% Sistema Lunch Collection Food Storage Containers, 1.6 Cup, 3 Pack, Blue/Green/Pink | Great for Meal Prep | BPA Free, Reusable ★★★★★ GO TO AMAZON -22% Sistema To Go Collection Mini Bites Small Food Storage Containers, 4.3 oz./127 mL, Pink/Green/Blue, 3 Count ★★★★★ GO TO AMAZON -12% Sistema 41524 Lunch Collection Food storage containers, Blue, Green, Pink ★★★★★ GO TO AMAZON -41% Sistema Lunch Collection Food Storage Containers, 1.9 Cup, 3 Pack, Blue/Green/Pink | Great for Meal Prep | BPA Free, Reusable ★★★★★ GO TO AMAZON OXO Good Grips Leakproof On-The-Go Lunch Container -18% GO TO AMAZON ★★★★★ $9.09–$12.99$15.33 Last update was on: Thursday, March 26, 2020 Two-level container for taking lunch on the go Two leakproof compartments keep wet and dry food separate Container can be used without the plate to create one large compartment Clear, durable Tritan lid features four locking tabs to ensure a secure, airtight seal Silicone gasket is removable for easy cleaning 5 cup capacity Dishwasher safe Microwave safe Freezer safe BPA free Size:Lunch Container Say “so long” to soggy sandwiches. The OXO Good Grips On-the-Go Lunch Container ensures your dry ingredients stay dry until you’re ready to construct the perfect sandwich. With two leakproof compartments to keep wet and dry ingredients separate, tomatoes and pickles keep to themselves and bread stays fresh. The crystal-clear, durable lid is made of BPA free Tritan and features four locking tabs and silicone gasket create a secure seal. The On-the-Go Lunch Container can also be used without the plate for one large leakproof compartment and all parts are dishwasher safe. GO TO AMAZON Rubbermaid Lunch Blox Snack Kit – 3 Pack of Lunch Box Food Containers – Comes with 1 Ice Pack, 2 Small, and 1 Long Container – Great for Kids Snacks, School Lunches, and Adult Meal Prep – Blue -13% GO TO AMAZON ★★★★★ $10.49–$14.98$16.93 Last update was on: Thursday, March 26, 2020 EASY TO USE REUSABLE CONTAINERS – these plastic containers with lids are great for storing food in a kids lunch box or any other lunch containers/lunch bags. Easily pack some snacks for later with these quality food containers with lids SECURE LID SEAL – Rubbermaid storage containers are designed to have a strong and secure lid seal so your kitchen stays mess-free. Our food storage containers are made to keep your food safe and contained VERSATILE FOOD CONTAINER – these food prep containers are microwave, dishwasher, and freezer safe for your convenience. This allows you to use as kitchen storage in the freezer, or to heat up food straight from its dish MULTIPLE SIZES – this Rubbermaid kitchen set comes with 2 different sized boxes and 1 ice pack so you can pack all different kinds of healthy snacks, fruit snacks, goodies, and more for breakfast, lunch, or dinner STACKABLE SET – stack the ice pack in between the containers, stack only the containers however you like it so they’ll fit nicely in lunch boxes for kids, a large lunch box, metal lunch box, adult lunch box, and more Size:3 Sets Stop struggling with plastic bags and start using Rubbermaid reusable containers! These reusable containers are easy to seal, easy to stack, and easy to use in general. They’re a great way to pack some meal prep food or snacks that are ready to grab on your way out. Rubbermaid plastic containers are designed to have a tough seal so your food stays where it should and keep your kitchen mess-free. Your purchase includes 1 long and 2 small containers, as well as 1 ice pack. Rubbermaid food storage containers are also quite versatile. You can heat up food or freeze it in these containers because they’re microwave, dishwasher, and freezer safe. As an added bonus, we designed our containers to be easily stackable so storing them in your kitchen cabinets and packing them in a lunch box is a breeze. GO TO AMAZON Similar items with 4 stars and above -11% Rubbermaid Lunch Blox Sauce Containers, 3 Ounce, Green, Pack of 2 1806175 ★★★★★ GO TO AMAZON -20% Rubbermaid LunchBlox Leak-Proof Snack Pack Lunch Containers, Blue 2000669 ★★★★★ GO TO AMAZON -37% Rubbermaid LunchBlox Entrée Kit, Green 1806233 ★★★★★ GO TO AMAZON -10% Rubbermaid LunchBlox Salad Kit 1806179 ★★★★★ GO TO AMAZON -39% Rubbermaid LunchBlox Kids Lunch Box and Food Prep Containers, Tall, Green/Orange/Blue | Stackable & Microwave Safe ★★★★★ GO TO AMAZON Rubbermaid LunchBlox Leak-Proof Entree Lunch Container Kit, Large, Blue 2000665 -23% GO TO AMAZON ★★★★★ $8.39–$11.99$14.75 Last update was on: Thursday, March 26, 2020 BPA-free lunch containers feature a silicone, airtight seal to help prevent leaks while on-the-go Durable latches are easy to open and close Containers snap to Blue Ice to keep your lunch chilled and fresh Microwave, freezer, and dishwasher safe Large kit includes: (1) 4.2 Cup Large Entree Container, (2) 0.5 Cup Snack Containers, (2) 1 Cup Side Containers, 2 Blue Ice Blocks Style Name:Large Entree Kit The Rubbermaid Lunchbox Leak-Proof Large Entree Lunch Container Kit lets you pack lunch on-the-go without worrying about leaks. Designed with a silicone seal and durable latches, food stays secure for leak-free transport. BPA-free modular food containers fill lunch bags more efficiently by snapping and stacking to each other, and can be snapped to reusable Blue Ice packs to keep food chilled and fresh. The large entree kit includes (1) 4.2 Cup entree container perfect for leftovers, (2) 0.5 Cup snack containers for sauces, fruit or yogurt, (2) 1 Cup side container for chips or veggies, and (2) Blue Ice blocks. GO TO AMAZON Similar items with 4 stars and above -10% Rubbermaid LunchBlox Entrée Kit, Green 1806233 ★★★★★ GO TO AMAZON -49% Rubbermaid LunchBlox Salad Kit 1806179 ★★★★★ GO TO AMAZON -14% Rubbermaid LunchBlox Leak-Proof Entree Lunch Container Kit, Small, Beet Red 2000578 ★★★★★ GO TO AMAZON -29% Rubbermaid 2108406 LunchBlox Kids Box and Meal Prep, 2 Pack Set | Stackable & Microwave Safe Lunch Containers | Assorted Colors, Purple/Pink/Green ★★★★★ GO TO AMAZON -42% Rubbermaid Lunch Blox Sauce Containers, 3 Ounce, Green, Pack of 2 1806175 ★★★★★ GO TO AMAZON Rubbermaid Lunch Blox Sauce Containers, 3 Ounce, Green, Pack of 2 1806175 -16% GO TO AMAZON ★★★★★ $2.12–$3.03$3.51 Last update was on: Thursday, March 26, 2020 Designed to work together to save space and stay organized in a lunch bag Sauce containers can be configured to fit various lunch bag shapes and sizes Perfectly sized for common foods taken on the go Durable and leak-proof salad dressing containers Microwave, dishwasher and freezer safe,BPA free The Rubbermaid 1806175 Lunch Blox – 2 pack sauce containers are part of the new Rubbermaid Lunch Blox Series which is designed to make taking lunch to school or work more convenient and organized. The two sauce packs are perfect for carrying dipping sauces, a small side of yogurt or salad dressing. The Lunch Blox are space efficient and are designed to work together to save space and stay organized in a lunch bag. The pieces of the lunch blox can be configured to fit any lunch bag and work in conjunction with the lunch blox blue ice to keep your lunch chilled for up to four hours. The lunch blox containers are perfectly sized for common foods taken on the go. All Lunch Blox containers are durable and leak-proof, as well as microwave, dishwasher and freezer safe, BPA free. GO TO AMAZON Our Promise to Readers We keep receiving tons of questions of readers who are going to buy rubbermaid lunchblox sandwich kit, eg: What are Top 10 rubbermaid lunchblox sandwich kit for 2020, for 2019, for 2018 or even 2017 (old models)? What is Top 10 rubbermaid lunchblox sandwich kit to buy? What are Top Rated rubbermaid lunchblox sandwich kit to buy on the market? or even What is Top 10 affordable (best budget, best cheap or even best expensive!!!) rubbermaid lunchblox sandwich kit?… All of these above questions make you crazy whenever coming up with them. We know your feelings because we used to be in this weird situation when searching for rubbermaid lunchblox sandwich kit. Before deciding to buy any rubbermaid lunchblox sandwich kit, make sure you research and read carefully the buying guide somewhere else from trusted sources. We will not repeat it here to save your time. You will know how you should choose rubbermaid lunchblox sandwich kit and What you should consider when buying the rubbermaid lunchblox sandwich kit and Where to Buy or Purchase the rubbermaid lunchblox sandwich kit. Just consider our rankings above as a suggestion. The final choice is yours. That’s why we use Big Data and AI to solve the issue. We use our own invented, special algorithms to generate lists of Top 10 brands and give them our own Scores to rank them from 1st to 10th. You could see the top 10 rubbermaid lunchblox sandwich kit of 2020 above. The lists of best products are updated regularly, so you can be sure that the information provided is up-to-date. You may read more about us to know what we have achieved so far. Don’t hesitate to contact us if something’s wrong or mislead information about rubbermaid lunchblox sandwich kit. Conclusion By our suggestions above, we hope that you can found rubbermaid lunchblox sandwich kit for you.Please don’t forget to share your experience by comment in this post. Thank you!
{ "warc_headers": { "warc-record-id": "<urn:uuid:6b5dbf8b-ac48-4891-a934-9f989d12b29e>", "warc-date": "2021-11-27T05:35:53Z", "content-type": "text/plain", "content-length": 23764, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:ca206962-928c-4277-9629-7e41bc504f53>", "warc-target-uri": "https://infratechplus.com/rubbermaid-lunchblox-sandwich-kit/", "warc-block-digest": "sha1:YPH2LJIW35LXX5IGYRDCKIFLFE472WUP" }, "identification": { "label": "en", "prob": 0.6462542414665222 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9666236042976379 }, { "label": "en", "prob": 0.9382021427154541 }, { "label": "en", "prob": 0.9507770538330078 }, { "label": "en", "prob": 0.8150057792663574 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8187578916549683 }, null, null, null, { "label": "en", "prob": 0.9051497578620911 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8236075043678284 }, null, null, null, { "label": "en", "prob": 0.8074963688850403 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.9142327308654785 }, { "label": "en", "prob": 0.8080759644508362 }, { "label": "en", "prob": 0.8414103388786316 }, null, { "label": "en", "prob": 0.8067319989204407 }, null, { "label": "en", "prob": 0.8687727451324463 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.9177371859550476 }, { "label": "en", "prob": 0.8080759644508362 }, { "label": "en", "prob": 0.8440726399421692 }, null, { "label": "en", "prob": 0.8067319989204407 }, null, { "label": "en", "prob": 0.8479167819023132 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.8911293745040894 }, { "label": "en", "prob": 0.9076206088066101 }, { "label": "en", "prob": 0.923807680606842 }, { "label": "en", "prob": 0.8357319235801697 }, { "label": "en", "prob": 0.9378743171691895 }, null, { "label": "en", "prob": 0.8186771273612976 }, { "label": "en", "prob": 0.9136937856674194 }, { "label": "en", "prob": 0.9580669403076172 }, { "label": "en", "prob": 0.9096105098724365 }, { "label": "en", "prob": 0.918035626411438 }, null, { "label": "en", "prob": 0.859433114528656 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.8571947813034058 }, null, { "label": "en", "prob": 0.9698411226272583 }, null, { "label": "en", "prob": 0.9203888177871704 }, { "label": "en", "prob": 0.844359278678894 }, { "label": "en", "prob": 0.9036082625389099 }, { "label": "en", "prob": 0.8588411211967468 }, { "label": "en", "prob": 0.8746218681335449 }, { "label": "en", "prob": 0.8187578916549683 }, null, null, null, { "label": "en", "prob": 0.9051497578620911 }, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.9121419191360474 }, { "label": "en", "prob": 0.9279038906097412 }, null, { "label": "en", "prob": 0.8114767670631409 }, null, null, { "label": "en", "prob": 0.9255797266960144 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.9334274530410767 }, { "label": "en", "prob": 0.9217531681060791 }, { "label": "en", "prob": 0.8440726399421692 }, null, { "label": "en", "prob": 0.8067319989204407 }, null, { "label": "en", "prob": 0.8955232501029968 }, null, { "label": "en", "prob": 0.859433114528656 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.8970637917518616 }, { "label": "en", "prob": 0.9448794722557068 }, { "label": "en", "prob": 0.8807157278060913 }, null, { "label": "en", "prob": 0.9039807319641113 }, null, null, { "label": "en", "prob": 0.8394536375999451 }, { "label": "en", "prob": 0.8028727173805237 }, null, null, { "label": "en", "prob": 0.8994709253311157 }, null, { "label": "en", "prob": 0.8236075043678284 }, null, null, null, { "label": "en", "prob": 0.8074963688850403 }, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.892285943031311 }, { "label": "en", "prob": 0.9647610187530518 }, { "label": "en", "prob": 0.9230934381484985 }, { "label": "en", "prob": 0.9010961651802063 }, { "label": "en", "prob": 0.8987992405891418 }, { "label": "en", "prob": 0.9357243180274963 }, null, { "label": "en", "prob": 0.8186771273612976 }, { "label": "en", "prob": 0.9350246787071228 }, { "label": "en", "prob": 0.9832063913345337 }, { "label": "en", "prob": 0.9225253462791443 }, { "label": "en", "prob": 0.9545722603797913 }, null, { "label": "en", "prob": 0.859433114528656 }, { "label": "en", "prob": 0.9939058423042297 }, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8909910321235657 }, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, null, { "label": "en", "prob": 0.9492802023887634 }, { "label": "en", "prob": 0.9580560922622681 }, { "label": "en", "prob": 0.8660271167755127 }, null, null, { "label": "en", "prob": 0.8890606164932251 }, null, { "label": "en", "prob": 0.859433114528656 }, { "label": "en", "prob": 0.8909910321235657 }, null, null, null, { "label": "en", "prob": 0.9096547365188599 }, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9883681535720825 }, { "label": "en", "prob": 0.9685305953025818 }, { "label": "en", "prob": 0.9166595935821533 }, { "label": "en", "prob": 0.9392865300178528 }, null, { "label": "en", "prob": 0.8366068601608276 }, { "label": "en", "prob": 0.9530990719795227 }, null, null, { "label": "en", "prob": 0.9732507467269897 }, { "label": "en", "prob": 0.8865704536437988 }, { "label": "en", "prob": 0.9238572716712952 }, { "label": "en", "prob": 0.9537359476089478 }, null, { "label": "en", "prob": 0.8681638836860657 }, { "label": "en", "prob": 0.9306508898735046 }, { "label": "en", "prob": 0.8846246004104614 }, { "label": "en", "prob": 0.9448214173316956 }, { "label": "en", "prob": 0.896639347076416 }, null, null, { "label": "en", "prob": 0.9057168960571289 } ] }
2,881.9
23,128
https://infratechplus.com/rubbermaid-lunchblox-sandwich-kit/
infratechplus.com
0
[]
null
false
[]
true
2,609,002
Our work with familes, children and young people is beginning again following the lockdowns of 2020 and 2021. We have lots of exciting activities across the team for children, young people and families. We hope to start more again soon across the parishes. Please see the links for further information about our childrens and families work. We take our responsibility very seriously to keep children and young people safe in our ministries. Information on safeguarding in our team can be found on our dedicated page here.
{ "warc_headers": { "warc-record-id": "<urn:uuid:a18cf2a3-1a47-47e4-8d2a-aaebe55002c3>", "warc-date": "2021-11-27T05:12:33Z", "content-type": "text/plain", "content-length": 521, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:be90d6f7-e390-4c0f-95a0-2c1bdf70c4c7>", "warc-target-uri": "https://ingleboroughchurches.org.uk/children-families", "warc-block-digest": "sha1:BJ65R4XLT2D3JOABQNXQHQY56JFINRU3" }, "identification": { "label": "en", "prob": 0.9654035568237305 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9497612118721008 }, { "label": "en", "prob": 0.9676617980003357 }, { "label": "en", "prob": 0.9719903469085693 } ] }
578.2
521
https://ingleboroughchurches.org.uk/children-families
ingleboroughchurches.org.uk
0
[]
null
false
[]
false
2,609,003
Construction site accidents can happen in many different ways, and many of these accidents and injuries are preventable. According to a recent report, we can group the most common construction injuries and safety accidents into four different categories – electrical incidents, falls, struck-by accidents, and trenching and evacuation accidents. What do you need to know about each of these categories? Electrical incidents are a construction injury that can be caused by many different factors. Most often, workers get hurt when they come into contact with power lines, or when equipment, including extensions cords, are not used properly. Like preventable electrical incidents, falls can be prevented with attention to safety needs. Protection from falls from heights are of utmost importance. These fall-related injuries occur most often when scaffolds are constructed poorly, when their sides are unprotected, or when ladders are not used properly. With proper safety equipment and maintenance, struck-by construction injuries can also be avoided. As the report explains, “in the great majority of cases, cranes and trucks are the main cause of accidents and deaths.” Falling objects as well as walls can also strike workers, causing serious and fatal injuries. While we often think primarily of cave-ins when we consider trenching and excavation work accidents, this work actually involves many different types of risks. Most often, construction workers suffer injuries in trenching and excavation work from a lack of oxygen, inhaling toxic fumes, or drowning. Most Frequent Construction Injuries That Are Also OSHA Safety Violations According to a fact sheet from OSHA, falls are the leading cause of serious and fatal construction work accidents and injuries, resulting in nearly 40% of all fatal injuries in 2016. In total, 5,190 workers suffered on-the-job fatal injuries in 2016, and more than 20% of those fatalities were in the construction industry. However, construction safety violations occur for many different reasons. In 2017, OSHA conducted more than 32,000 federal inspections and more than 43,500 State Plan inspections. The agency has approximately 2,100 inspectors who are responsible for ensuring the safety of more than eight million workers, many of whom are employed by construction companies and consider construction sites to be their primary workplaces. The following were the most commonly cited construction injuries that were also OSHA safety violations in 2017: Fall protection; Hazard communication procedures; Scaffolding safety requirements; Respiratory protection; Hazardous energy control; Ladder safety; Powered industrial truck safety regulations; Requirements for machinery and machine guarding; Training to prevent fall protection; and Electrical wiring methods and equipment safety. If you were injured in a construction accident, you should discuss your case with a construction accident attorney. A construction injury attorney will help you determine your rights and seek financial compensation on your behalf for your injuries.
{ "warc_headers": { "warc-record-id": "<urn:uuid:bad1010a-110d-49b4-ba02-d44b3cbbc30f>", "warc-date": "2021-11-27T04:58:02Z", "content-type": "text/plain", "content-length": 3082, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:7dfdbe99-67b0-4db2-8cb2-327d0944ba8f>", "warc-target-uri": "https://injurylawyer.com/construction-accidents/common-causes-of-construction-accident-injuries/", "warc-block-digest": "sha1:PVN6SCE4GUHHUNVQFSMQFEYRU4CDXRSQ" }, "identification": { "label": "en", "prob": 0.9019896984100342 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9330776929855347 }, { "label": "en", "prob": 0.9622378945350647 }, { "label": "en", "prob": 0.9538537263870239 }, null, { "label": "en", "prob": 0.9594031572341919 }, { "label": "en", "prob": 0.9881789684295654 }, null, null, { "label": "en", "prob": 0.9007798433303833 }, null, null, { "label": "en", "prob": 0.8850838541984558 }, { "label": "en", "prob": 0.9215497374534607 }, { "label": "en", "prob": 0.8081983923912048 }, { "label": "en", "prob": 0.878341555595398 }, { "label": "en", "prob": 0.9226186275482178 }, { "label": "en", "prob": 0.9558613896369934 } ] }
547.4
3,076
https://injurylawyer.com/construction-accidents/common-causes-of-construction-accident-injuries/
injurylawyer.com
0
[]
null
false
[]
false
2,609,004
Innov8tiv is a dynamic Web source for technology news, resources and innovation, with a special focus on the entrepreneurial advances of Africans on the continent as well as in the Diaspora.
{ "warc_headers": { "warc-record-id": "<urn:uuid:96ad9940-1525-44f7-9b8f-2a4cf4f52ae5>", "warc-date": "2021-11-27T05:54:44Z", "content-type": "text/plain", "content-length": 190, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:67270589-c77e-4de2-b6ab-cdafd173f1e7>", "warc-target-uri": "https://innov8tiv.com/tag/jailbreak-iphone-5s/", "warc-block-digest": "sha1:M3KWSLPHOIYZ4DG7NQGDTE37ZYDR5N33" }, "identification": { "label": "en", "prob": 0.9408929347991943 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9408929347991943 } ] }
200.3
190
https://innov8tiv.com/tag/jailbreak-iphone-5s/
innov8tiv.com
0
[]
null
false
[]
true
2,609,005
Inquirer Inside is the best tech news site out there! Feel free to read all the articles on our site and get to know your tech stuff a bit better.
{ "warc_headers": { "warc-record-id": "<urn:uuid:dc6d36dd-2a2f-41fc-a46b-a71ae8ff49f5>", "warc-date": "2021-11-27T06:24:25Z", "content-type": "text/plain", "content-length": 146, "warc-type": "conversion", "warc-identified-content-language": "eng,deu", "warc-refers-to": "<urn:uuid:3226b058-694b-4475-b36e-a9024152c7ad>", "warc-target-uri": "https://inquirerinside.com/product-tag/ninja/page/2/?add-to-cart=2081", "warc-block-digest": "sha1:XZUXBGIRY4HTTUT22JVLH2QVU5DLHOB5" }, "identification": { "label": "en", "prob": 0.9093235731124878 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9093236327171326 } ] }
1,034.8
146
https://inquirerinside.com/product-tag/ninja/page/2/?add-to-cart=2081
inquirerinside.com
1.013699
[ [ 564955254863, 564955255011 ] ]
null
true
[ 138856809, 22147146, 95846820, 431992477 ]
false
2,609,006
Not only am I a sucker for the dystopian literature genre, but combine that with a young adult series and you’ve got me hooked! After reading the first of James Dashner’s newest series, The Maze Runner, I couldn’t wait to get my hands on the second. The first book ends with nothing less than the epitome of a cliffhanger that leaves the reader clinging to the side of the mountain, scrambling and clambering to keep a hold on the ledge until book two shows up! Well, book two showed up two days ago and I instantly morphed into a mountain goat, doing nothing but climb that rocky ledge as the story continued, forgoing both homework and housework to find out what lies around each turn of the page. In this second book, Thomas is back, along with his allies from The Glade. Their rescue and relief at the end of the first novel is short-lived and they are soon placed in the middle of another experiment run by the shady group called WICKED. This time, rather than being in the confined and controlled spaces of a maze, the group is given a final destination, promised “safe haven” upon arrival at that point and told they have two weeks to get from point A to point B. Of course, completing this task was not a mere matter of sticking out their thumbs and hitching a ride the one hundred miles, but rather a painful, and for some, deadly, trek across the burned wasteland left behind after sun flares destroyed everything on earth between the Tropic of Capricorn and the Tropic of Cancer. Along the way, the motley assembly of adolescents faces obstacles that are unimaginable, even after what they went through in the Glade. But worse than the deformed humans suffering the ravages of the Flare (Cranks), the mind games that WICKED plays on the kids leaves them in a position where no one knows who to trust, no one knows who is working for the mystery agency or even which side is good and which is evil. More than once, messages are relayed saying the “WICKED is good.” But is it? Throughout the book, the basic tenants of their individual personalities, their beliefs and their friendships are suddenly called into question. Like many series, the first book, The Maze Runner, sets a high bar, as it creates a new world, populated with interesting characters and unique situations. Subsequent books have to keep up the energy and excitement of the first, but at the same time somehow deepen the conflict and relationships within its pages. In this trilogy, the follow up, The Scorch Trials, does an admirable job living up to the expectations. I couldn’t stop turning pages, eager to find out what was to become of this group of hardy survivors and the manipulative government agency that controls them. As I wait for the third and final installment in this trilogy, again clinging to the edge of the cliff I was tossed over by the end of book two, James Dashner’s The Scorch Trials earns: Share this: Facebook Twitter Print Email Pinterest Like this: Like Loading... Michelle Ross Tagged book review, dystopian literature, James Dashner, Maze Runner #2, The Scorch Trials, young adult literature 3 Comments Post navigation ← I Have Found The Promised Land…In Clarendon! Kids’ Menu, Please → 3 thoughts on “The Scorch Trials (Maze Runner #2) by James Dashner” Posted January 30, 2012 at 8:26 PM by Kristen Shell, have you read Divergent yet? Veronica Roth. I missed my stop on the train the other day because I was so wrapped up in it! Love, love that YA dystopian lit. LikeLike Reply Posted January 31, 2012 at 8:28 AM by Michelle Ross Oh, I haven’t! I will add that to my library list right now! It looks really good. I’ve got a backlog of YA books checked out from the library on my Nook right now, so rather than doing homework for my consular class, I will be reading those instead! LikeLike Reply Posted January 31, 2012 at 5:24 PM by Kristen Yeah, I’m juggling some 8 books doing lit circles at the moment, but I really just want to be starting Maze Runner which one of my kids just lent me. Yay books! LikeLike Reply Leave a Reply to Kristen Cancel reply Enter your comment here... Fill in your details below or click an icon to log in: Email (required) (Address never made public) Name (required) Website You are commenting using your WordPress.com account. ( Log Out / Change ) You are commenting using your Google account. ( Log Out / Change ) You are commenting using your Twitter account. ( Log Out / Change ) You are commenting using your Facebook account. ( Log Out / Change ) Cancel Connecting to %s Notify me of new comments via email. Notify me of new posts via email. Δ Categories Book Musings Petal Power Travel Musings Wordless Wednesday Searching the Sidewalk Search Recent Posts Card Catalog Review: Firekeeper’s Daughter August 2, 2021 Card Catalog Review: First Person Singular June 11, 2021 Petal Power: Bridges, Not Walls June 10, 2021 Card Catalog Review: I Have Always Been Me June 7, 2021 Petal Power: Second Saturday Fun with Petunia June 6, 2021 Recent Reads Tags adventure animals book Book of the Month Book of the Month club book review book reviews books Caracas card catalog review Chengdu China Christmas CLO essays ex-pat expat fiction food Foreign Service FSI history holidays Idaho Kuala Lumpur literature Malaysia memoir Mexico non-fiction novel Peace Corps photography politics reading science fiction Sichuan Singapore South Africa State Department The Great American Read Top Ten Tuesday travel vacation Venezuela Washington DC Wordless Wednesday YA fiction young adult fiction young adult literature
{ "warc_headers": { "warc-record-id": "<urn:uuid:c5b4ac77-aba7-456b-96c0-19bb77c49d07>", "warc-date": "2021-11-27T05:17:10Z", "content-type": "text/plain", "content-length": 5596, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:c61499d5-5fa7-40bb-959a-60aaad64ee23>", "warc-target-uri": "https://insearchoftheendofthesidewalk.com/2012/01/27/the-scorch-trials-maze-runner-2-by-james-dashner/?replytocom=245", "warc-block-digest": "sha1:ZM5KMK2W2F4QI33AL5FPXG3QJWMKC5Y6" }, "identification": { "label": "en", "prob": 0.7772069573402405 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9468126893043518 }, { "label": "en", "prob": 0.9811574816703796 }, { "label": "en", "prob": 0.9369203448295593 }, { "label": "en", "prob": 0.9793320298194885 }, { "label": "en", "prob": 0.9565832018852234 }, null, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.866235077381134 }, { "label": "en", "prob": 0.9849289655685425 }, { "label": "en", "prob": 0.9472959041595459 }, null, null, { "label": "en", "prob": 0.9861379265785217 }, { "label": "en", "prob": 0.9384250640869141 }, null, null, { "label": "en", "prob": 0.9849160313606262 }, { "label": "en", "prob": 0.9607945680618286 }, null, null, null, null, null, { "label": "en", "prob": 0.9685936570167542 }, { "label": "en", "prob": 0.83173668384552 }, null, null, null, null, null, null, { "label": "en", "prob": 0.9039610624313354 }, { "label": "en", "prob": 0.8378493189811707 }, null, { "label": "ru", "prob": 0.8715653419494629 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8328146934509277 }, null, { "label": "en", "prob": 0.8967605233192444 }, { "label": "en", "prob": 0.883480966091156 }, { "label": "en", "prob": 0.8894407153129578 }, { "label": "en", "prob": 0.9195398092269897 }, { "label": "en", "prob": 0.8514159917831421 }, null, { "label": "en", "prob": 0.8067789077758789 } ] }
761.8
5,557
https://insearchoftheendofthesidewalk.com/2012/01/27/the-scorch-trials-maze-runner-2-by-james-dashner/?replytocom=245
insearchoftheendofthesidewalk.com
1.0018
[ [ 564955255015, 564955260582 ] ]
null
true
[ 431992478 ]
false
2,609,007
Cyber criminals are now taking advantage of the surge in online food ordering by sending out phishing emails with these lures. These phishing emails usually come in the form of a survey offering you a discount on your next order as an incentive. Sometimes, you will be asked to log into your app or website account which results in the attacker gaining your login credentials. Use caution if you receive an email from Postmates, DoorDash, UberEats, etc. that contains a link or attachment. Your best bet is to go to the app or website’s home page to verify that it is a legitimate offer rather than clicking anything in an email. Remember that a reputable company will not ask for your personal information over email, phone, or text. If you receive a suspected phishing email on your Vail Resorts email account, be sure to report it to the Information Security team using the PhishAlarm button in Microsoft Outlook.
{ "warc_headers": { "warc-record-id": "<urn:uuid:42540757-58dc-4f8b-8f85-a81139339ffd>", "warc-date": "2021-11-27T05:17:26Z", "content-type": "text/plain", "content-length": 918, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:364e985c-aeda-4067-9cb8-c8d6f9036922>", "warc-target-uri": "https://insideepic.com/posts/company-news/infosec-update-delivery-app-phishing-scams/", "warc-block-digest": "sha1:X67OKDVQ3SFVP4Y7DCPJILPIPDYM6PIP" }, "identification": { "label": "en", "prob": 0.9128807187080383 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9621829390525818 }, { "label": "en", "prob": 0.9109140634536743 }, { "label": "en", "prob": 0.814363420009613 } ] }
337.5
916
https://insideepic.com/posts/company-news/infosec-update-delivery-app-phishing-scams/
insideepic.com
0
[]
null
true
[]
false
2,609,008
Advantages Of Catering Business Plan - insideprevention add share buttonsSoftshare button powered by web designing, website development company in India & developed by Bijo John : freelance website development, web designer Skip to content insideprevention Inside Prevention Primary Menu Home Health & Fitness About Us Privacy Policy Contact Us Advantages Of Catering Business Plan September 1, 2020 James lyous A catering business plan should allow you to consider the tips for successful business gathering. For the most part it is a true statement, but not everyone succeed in any business venture. You can also get professional social media marketing services for your catering business. Image Source: Google The intangible element is our human nature, which attempts to change and adapt a plan to our own whims and desires. When implementing a plan of any kind, if you are using a valid and tested course of action, it should be followed to the letter. Today, a mobile catering business offers the opportunity to begin a start-up business relatively quickly for a modest cost. The very fact that you take your business with you was ever you go creates a great deal of flexibility. There is probably more profit in the food and restaurant business than any other business, yes, it takes hard work and dedication, but if you like to cook and want to learn how to translate that into dollars, a mobile catering business could be just the thing for you. The key is being willing to learn. You can have minimal experience and talent, but by following a set plan that has a proven track record, you could become very successful. If you are looking into becoming self-employed, have a passion for creating your own hours, income and security, then this could be a real possibility. Be certain that you have a proven catering business plan that you know has come from a successful business person. Share this post: on Twitter on Facebook on Google+ Business and Management catering business plans, catering business strategies Post navigation ← Tips For Buying The Best Fitness Wear Benefits Of Hiring An App Development Company → Search for: Categories Blog Business and Management Education Health & Fitness Health and Fitness Home and Garden Legal Marketing and Advertising Technology and Gadgets Travel and Leisure Author Hi, my name is Marshall Gray Cowell, and I work as an assistant professor at the California Institute for Regenerative Medicine. I love writing blogs related to Census and technology. I have created this blog so that you can easily share your views.
{ "warc_headers": { "warc-record-id": "<urn:uuid:90fc8d60-7028-4988-8518-d4a7f5e58fa5>", "warc-date": "2021-11-27T05:35:57Z", "content-type": "text/plain", "content-length": 2578, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:ea0912e8-c555-4f44-9588-bcc3a962026e>", "warc-target-uri": "https://insideprevention.org/advantages-of-catering-business-plan/", "warc-block-digest": "sha1:LWDHAG4BH5S77WQV7BNKWG6MIP4PTAZY" }, "identification": { "label": "en", "prob": 0.769946813583374 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8275910019874573 }, null, null, null, null, null, { "label": "en", "prob": 0.8440269827842712 }, null, null, null, null, null, { "label": "en", "prob": 0.9438490271568298 }, { "label": "en", "prob": 0.8872445821762085 }, { "label": "en", "prob": 0.9092698097229004 }, { "label": "en", "prob": 0.9766740202903748 }, { "label": "en", "prob": 0.9667158722877502 }, { "label": "en", "prob": 0.9932242035865784 }, { "label": "en", "prob": 0.9824352264404297 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8239104747772217 }, { "label": "en", "prob": 0.9361534714698792 }, { "label": "en", "prob": 0.8440269827842712 }, { "label": "en", "prob": 0.9587108492851257 }, { "label": "en", "prob": 0.8836379051208496 }, { "label": "en", "prob": 0.8967624306678772 }, { "label": "en", "prob": 0.9164333939552307 }, null, null, { "label": "en", "prob": 0.9855707883834839 }, { "label": "en", "prob": 0.9549822807312012 } ] }
547.1
2,574
https://insideprevention.org/advantages-of-catering-business-plan/
insideprevention.org
0
[]
null
false
[]
true
2,609,009
it asset management solution Archives - insideprevention add share buttonsSoftshare button powered by web designing, website development company in India & developed by Bijo John : freelance website development, web designer Skip to content insideprevention Inside Prevention Primary Menu Home Health & Fitness About Us Privacy Policy Contact Us it asset management solution Investment Asset Management Services To Achieve Higher Returns January 27, 2021 James lyous The value that a company owns can be in the form of physical goods, investments, or monetary values known as assets. Investment Asset Management provides services to manage your assets such as investments, assets and goods. These services include details, goodwill, money or property, information and equipment. With this management, you can make the most of your resources. You can now get the best asset management services, read the full info here. Image Source: Google The goal of any management service is to get maximum returns as a starting point with minimal investment. Reaching these goals is not an easy task and a lot of hard work must be done to achieve these goals. Over time, the value of the assets decreases. Therefore, you need to understand where these assets will be used in a company. The main tangible assets of the company are equipment, machinery and tangible assets. Old equipment has to wear out more and therefore wise decisions must be made whether to replace or repair equipment. The cash investment portfolio contains a breakdown of the company's financial position and revenue structure. It also has a complete table of costs. Investment asset management services will help correct some of the flaws in the investment structure of many companies. One can choose between industrial, physical, corporate, fixed and digital asset management to remove all negative aspects and run a business seamlessly. Business and Management asset management system, it asset management software, it asset management solution Search for: Categories Blog Business and Management Education Health & Fitness Health and Fitness Home and Garden Legal Marketing and Advertising Technology and Gadgets Travel and Leisure Author Hi, my name is Marshall Gray Cowell, and I work as an assistant professor at the California Institute for Regenerative Medicine. I love writing blogs related to Census and technology. I have created this blog so that you can easily share your views.
{ "warc_headers": { "warc-record-id": "<urn:uuid:697e5ddf-3553-4a36-9891-3412106812db>", "warc-date": "2021-11-27T05:50:57Z", "content-type": "text/plain", "content-length": 2453, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:3811d9a1-e9af-4798-9c15-ce82fcf50960>", "warc-target-uri": "https://insideprevention.org/tag/it-asset-management-solution/", "warc-block-digest": "sha1:E7TVRWGA25IKZUCEIFV4P52IRMC7EEZW" }, "identification": { "label": "en", "prob": 0.8397840261459351 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8427686095237732 }, null, null, null, null, null, { "label": "en", "prob": 0.8440269827842712 }, null, null, null, { "label": "en", "prob": 0.8268122673034668 }, null, { "label": "en", "prob": 0.9703625440597534 }, { "label": "en", "prob": 0.9791609644889832 }, { "label": "en", "prob": 0.9283681511878967 }, { "label": "en", "prob": 0.8872445821762085 }, { "label": "en", "prob": 0.9598617553710938 }, { "label": "en", "prob": 0.9333869814872742 }, { "label": "en", "prob": 0.9537497758865356 }, { "label": "en", "prob": 0.9314239025115967 }, { "label": "en", "prob": 0.8050048351287842 }, null, null, null, { "label": "en", "prob": 0.8239104747772217 }, { "label": "en", "prob": 0.9361534714698792 }, { "label": "en", "prob": 0.8440269827842712 }, { "label": "en", "prob": 0.9587108492851257 }, { "label": "en", "prob": 0.8836379051208496 }, { "label": "en", "prob": 0.8967624306678772 }, { "label": "en", "prob": 0.9164333939552307 }, null, null, { "label": "en", "prob": 0.9855707883834839 }, { "label": "en", "prob": 0.9549822807312012 } ] }
541.1
2,453
https://insideprevention.org/tag/it-asset-management-solution/
insideprevention.org
0
[]
null
false
[]
false
2,609,010
Insight - Membrane Science & Engineering is an international journal which provides a focal point for academic and industrial chemists, chemical engineers, materials scientists, and membranologists working on membrane systems. The journal publishes original researches and reviews on membrane transport, membrane formation/structure, fouling, module... Editorial Board Click here to see the editorial board. Focus and Scope Insight - Membrane Science and Engineering is an international journal which provides a focal point for academic and industrial chemists, chemical engineers, materials scientists, and membranologists working on membrane systems. The journal publishes original researches and reviews on membrane transport, membrane formation/structure, fouling, module... For Authors Editorial Policies The journal will not accept manuscript that has been published or is under consideration for publication in any other journal. The author needs to notify the journal if the data presented in the manuscript has been ever presented in conferences. Conflict of Interest The author has to provide the authorization of no conflict of interest with any financial body or funding agency that might influence the results or interpretation of their manuscript. All authors, members, reviewers and editors must disclose any association that poses a conflict of interest in connection with the manuscript. The corresponding author must download and complete the ICMJE Conflict of Interest Form on behalf of all the authors regarding to potential conflicts of interest, and submit the form in Step 4 during the article submission process. Language All articles should be written in English—either British or American as long as consistency is observed. SI units should be used. If you are not a native speaker of English you may want to utilize the professional language editing service provided by us before submitting the final version. Withdrawal of Manuscript If you decide to withdrawal your manuscript after it has been accepted (but not yet published), a processing fee of USD 200 is chargeable upon withdrawal. Plagiarism Detection The journal will not accept manuscripts that are plagiarized in any circumstances. The journal will verify the originality of the submitted manuscripts with iThenticate, the plagiarism detection software. If a manuscript uses a text copied directly from another source, this text must be written in quotation marks and original source must be cited. If any kind of plagiarism is detected during the review process, the manuscript will be rejected. Authors and researchers can also use iThenticate to screen their work before submission by visiting http://www.ithenticate.com. Code of Ethics and Practices PiscoMed Publishing requests all members involved in the journal publishing process to adhere the “Code of Conduct for Editors” and “Code of Conduct for Publishers” as stipulated by COPE (Committee on Publication Ethics). The guidelines define the best practice in the ethics of scholarly publishing, aiding the journals and publishers to achieve this. Units of Measurement Units of measurement should be presented simply and concisely using System International (SI) units. Author Guidelines Author Guidelines Before your submission, please check that your manuscript has been prepared in accordance to the step-by-step instructions for submitting a manuscript to our online submission system. Manuscript Format Your manuscript should be in MS Word format. All manuscripts must be written in clear, comprehensible English. Both British and American English are accepted. Usage of non-English words should be kept to a minimum and all must be italicized with the exception of “e.g.”, “i.e.” and “etc.” If you have concerns about the level of English in your submission, please ensure that it is proofread before submission by a native English speaker or a scientific editing service. Cover Letter All submissions should include a cover letter as a separate file. A cover letter should contain a brief explanation of what was previously known, the conceptual advancement with the findings and its significance to broad readership. The cover letter is confidential and will be read only by the editors. It will not be seen by reviewers. Title The title should capture the conceptual significance for a broad audience. The title should not be more than 50 words and should be able to give readers an overall view of the paper’s significance. Titles should avoid using uncommon jargons, abbreviations and punctuation. List of Authors The names of authors must be spelled out rather than set in initials along with their affiliations. Authors should be listed according to the extent of their contribution, with the major contributor listed first. All corresponding authors should be identified with an asterisk. Affiliations should contain the following core information: department, institution, city, state, postal code, and country. For contact, email address of at least one corresponding author must be included. Please note that all authors must see and approve the final version of the manuscript before submitting. Abstract Articles must include an abstract containing a maximum of 200 words. The purpose of abstract is to provide sufficient information for a reader to determine whether or not to proceed to the full text of the article. After the abstract, please give 5–8 key words; please avoid using the same words as those already used in the title. Text The text of the manuscript should be in Microsoft Word. The length of the manuscript cannot be more than 50,000 characters (inclusive of spaces) or approximately 7,000 words. Section Headings Please number the section headings (e.g. 1, 2, 3, 4, etc.) in boldface. Likewise, use boldface to identify subheadings too but please distinguish it from major headings using numbers (e.g. 1.1, 1.2, 2.1, 2.2, etc.) Further subsections of subheadings should be differentiated with the numbers 1.1.1, 1.1.2, 2.1.1, 2.1.2, etc. Introduction Introduction should provide a background that gives a broad readership an overall outlook of the field and the research performed. It tackles a problem and states its importance regarding the significance of the study. Introduction can conclude with a brief statement of the aim of the work and a comment about whether that aim was achieved. Materials and Methods This section provides the general experimental design and methodologies used. The aim is to provide enough details for other investigators to fully replicate your results. It is also required to facilitate better understanding of the results obtained. Protocols and procedures for new methods must be included in detail to reproduce the experiments. Results This section can be divided into subheadings. This section focuses on the results of the experiments performed. Discussion This section should provide the significance of the results and identify the impact of the research in a broader context. It should not be redundant or similar to the content of the results section. Conclusion Please use the conclusion section for interpretation only, and not to summarize information already presented in the text or abstract. Conflict of Interest All authors are required to declare all activities that have the potential to be deemed as a source of competing interest in relations to their submitted manuscript. Examples of such activities could include personal or work-related relationships, events, etc. Authors who have nothing to declare are encouraged to add "No conflict of interest was reported by all authors" in this section. Funding and Acknowledgements Authors should declare all financial and non-financial support that have the potential to be deemed as a source of competing interest in relations to their submitted manuscript in this section. Financial supports are generally in the form of grants, royalties, consulting fees and more. Examples of non-financial support could include the following: externally-supplied equipments/biological sources, writing assistance, administrative support, contributions from non-authors etc. Appendix This section is optional and is for all materials (e.g. advanced technical details) that has been excluded from the main text but remain essential to readers in understanding the manuscripts. This section is not for supplementary figures. Authors are advised to refer to the section on ‘Supplementary figures’ for such submissions. Figures Authors should include all figures into the manuscript and submit it as one file in the OJS system. Reference to the “Instructions for Typesetting Manuscript” is strongly encouraged. Figures include photographs, scanned images, graphs, charts and schematic diagrams. Figures submitted should avoid unnecessary decorative effects (e.g. 3D graphs) as well as be minimally processed (e.g. changes in brightness and contrast applied uniformly for the entire figure). It should also be set against a white background. Please remember to label all figures (e.g. axis etc.) and number them (e.g. Figure 1, Figure 2, etc.) in boldface. Please also add in captions (below the figure) as required and number them (e.g. Figure 1, Figure 2, etc.) in boldface. The caption should describe the entire figure without citing specific panels, followed by a legend defined as description of each panel. Please identify each panel with uppercase letters in parenthesis (e.g. (A), (B), (C), etc.) The preferred file formats for any separately submitted figure(s) are TIFF or JPEG. All figures should be legible in print form and of optimal resolution. Optimal resolutions preferred are 300 dots per inch for RBG colored, 600 dots per inch for greyscale and 1200 dots per inch for line art. Although there are no file size limitation imposed, authors are highly encouraged to compress their figures to an ideal size without unduly affecting legibility and resolution of figures. This will also speed up the process of uploading in the submission system if necessary. The Editor-in-Chief and Publisher reserve the right to request from author(s) the high-resolution files and unprocessed data and metadata files should the need arise at any point after manuscript submission for reasons such as production, evaluation or other purposes. The file name should allow for ease in identifying the associated manuscript submitted. Tables, Lists and Equations Tables created using Microsoft Word table function are preferred. The tables should include a title underneath. Titles and footnotes/legends should be concise. These must be submitted together with the manuscript. Likewise, lists and equations should be properly aligned and its meaning clear to readers. For listing things within the main body of the manuscript, please use Arabic numerals in parenthesis (e.g. (1), (2), (3), (4), etc.) Supplementary Information This section is optional and contains all materials and figures that have been excluded from the entire manuscript. These materials are relevant to the manuscript but remain non-essential to readers’ understanding of the manuscript’s main content. All supplementary information should be submitted as a separate file in Step 4 during submission. Please ensure the names of such files contain ‘suppl. info’. Videos may be included in this section. In-text citations Reference citations in the text should be numbered consecutively in superscript square brackets. Some examples: a) Negotiation research spans many disciplines[3, 4]. b) This result was later contradicted by Becker and Seligman[5]. c) This effect has been widely studied[1–3, 7]. Personal communications and unpublished works can only be used in the main text of the submission and are not to be placed in the Reference section. Authors are advised to limit such usage to the minimum. They should also be easily identifiable by stating the authors and year of such unpublished works or personal communications and the word ‘Unpublished’ in parenthesis. E.g. (Smith J, 2000, Unpublished) References This section is compulsory and should be placed at the end of all manuscripts. Do not use footnotes or endnotes as a substitute for a reference list. The list of references should only include works that are cited in the text and that have been published or accepted for publication. Personal communications and unpublished works should be excluded from this section. References should be numbered consecutively in the order in which they are first mentioned in the text. Identify references in text, tables, and legends by Arabic numerals in parentheses. Authors referenced are listed with their surname followed by their initials. All references should also appear as an in-text citation. References should follow the following pattern: Author(s), title of publication, full journal name in italics followed by year of publication, volume number, issue number in parenthesis and lastly, page range. If the referred article has more than three authors, list only the first three authors and abbreviate the remaining authors to italicized ‘et al.’ (meaning: "and others"). If the DOI is available, please include it after the page range. Standard journal article Journal article (print) with one to three authors •Halpern SD, Ubel PA. Solid-organ transplantation in HIV-infected patients. The New England Journal of Medicine 2002 Jul 25;347(4):284-7. Journal article (print) with more than three authors •Rose ME, Huerbin MB, Melick J, et al. Regulation of interstitial excitatory amino acid concentrations after cortical contusion injury. Brain Research 2002;935(1-2):40-6. Journal article (online) with one to three authors •Jackson D, Firtko A and Edenborough M. Personal resilience as a strategy for surviving and thriving in the face of workplace adversity: A literature review. Journal of Advanced Nursing 2007; 60(1):1–9. http://dx.doi.org/10.1111/j.1365-2648.2007.04412.x. Journal article (online) with more than three authors •Hargreave M, Jensen A, Nielsen TSS, et al. Maternal use of fertility drugs and risk of cancer in children—A nationwide population-based cohort study in Denmark. International Journal of Cancer 2015; 136(8): 1931–1939. http://dx.doi.org/10.1002/ijc.29235. Book Book with one to three authors •Schneider Z, Whitehead D and Elliott D. Nursing and Midwifery Research: Methods and Appraisal for Evidence-based Practice, 3rd ed. Marrickville, NSW: Elsevier Australia; 2007. Book with more than three authors •Davis M, Charles L, Curry M J, et al. Challenging Spatial Norms, London: Routledge; 2003. Chapter or Article in Book •Meltzer PS, Kallioniemi A, Trent JM. Chromosome alterations in human solid tumors. In: Vogelstein B, Kinzler KW, editors. The genetic basis of human cancer. New York: McGraw-Hill; 2002. p. 93-113. *Note that the editor’s name is not inverted. Others Proceedings of meetings and symposiums, conference papers •Christensen S, Oppacher F. An analysis of Koza's computational effort statistic for genetic programming. In: Foster JA, Lutton E, Miller J, Ryan C, Tettamanzi AG, editors. Genetic programming. EuroGP 2002: Proceedings of the 5th European Conference on Genetic Programming; 2002 Apr 3-5; Kinsdale, Ireland. Berlin: Springer; 2002. p. 182-91. Conference proceedings (from electronic database) •Harnden P, Joffe JK, Jones WG, editors. Germ cell tumours V. Proceedings of the 5th Germ Cell Tumour Conference; 2001 Sep 13-15; Leeds, UK. New York: Springer; 2002. Online Document with author names •Este J, Warren C, Connor L, et al. Life in the clickstream: The future of journalism. Media Entertainment and Arts Alliance. 2008; Retrieved from http://www.alliance.org.au/documents/ foj_report_final.pdf Online Document without author name •Princeton Writing Program. (n.d.). Developing an argument. Retrieved from http://web.princeton.edu/ sites/ writing/Writing_Center/WCWritingResources.htm Thesis/Dissertation •Borkowski MM. Infant sleep and feeding: a telephone survey of Hispanic Americans [dissertation]. Mount Pleasant (MI): Central Michigan University; 2002. Standards •Standards Australia Online. Glass in buildings: Selection and installation. AS 1288-2006, amended January 31, 2008. Retrieved from SAI Global database 2006. Government Report •National Commission of Audit. Report to the Commonwealth Government, Canberra: Australian Government Publishing Service 1996. Government report (online)s •Department of Health and Ageing.Ageing and aged care in Australia; 2008. Retrieved from http://www.health.gov.au/internet/ main/publishing.nsf/Content/ageing Patent •Rencher W F. Bioadhesive pharmaceutical car- rier. US Patent 5462749 A. 1995. No author •Guide to agricultural meteorological practices, 2nd ed. Secretariat of the World Meteorological Organization, Geneva; 1981. Note: When referencing an entry from a dictionary or an encyclopedia with no author there is no requirement to include the source in the reference list. In these cases, only cite the title and year of the source in-text. For an authored dictionary/encyclopedia, treat the source as an authored book. Copyright Notice Authors contributing to the journal agree to publish their articles under the Creative Commons Attribution-Noncommercial 4.0 International License, allowing third parties to share their work (copy, distribute, transmit) and to adapt it, under the condition that the authors are given credit, that the work is not used for commercial purposes, and that in the event of reuse or distribution, the terms of this license are made clear. Privacy Statement The names and email addresses entered in this journal site will be used exclusively for the stated purposes of this journal and will not be made available for any other purpose or to any other party. Article Processing Charges (APC) PiscoMed publishes all its journals in Gold Open Access format. The scientific community and the general public have free of all restrictions on accessing (e.g., subscription) and free of many restrictions on using its contents as soon as it is published online. PiscoMed does not require readers to purchase any form of subscription to view online versions of the journals. In order to defray our editorial and production costs, authors of the accepted articles are required to pay the article processing charges (APCs). The charges will come from authors' institutes or research funding bodies. The APC for Insight - Membrane Science & Engineering is as follows: Journal APC Insight - Membrane Science & Engineering US $800 APC Payment Payments for APC of this journal can be made through our online PayPal payment gateway. Enter the article no. into the below textbox and select "Pay Now" to proceed with payment. *Article No. *Article No. is mandatory for payment and it can be found on the acceptance letter issued by the Editorial Office. Payment without indicating Article No. will result in processing problem and delay in article processing. Please note that payments will be processed in USD. You can make payment through Masters, Visa or UnionPay card. Announcements Journal News: Call for Papers for the Special Issue: Insight - Mechanical Engineering The development of robot provides a lot of convenient services for people's life and brings huge progress to the society. The robot has penetrated into every area of modern life. The Lead Guest Editor Bin Bai Posted: 2019-05-24 More... Journal News: Publisher’s Note We are pleased at the constructive and collaborative manner in which we were able to work with the Editorial Board Member. We appreciate those of scholars who help and surpport us running the Journal. We are reaching primary goal of launching journal, we hope our scholars will continue to pay attention and participate enthusiastically, and submit some high quanlity papers to our Journal. Thank you! Posted: 2018-09-14 More Announcements... PiscoMed Publishing started off with a focus in advancing medical research, however with the advancement of all areas of science, technology and medicines, PiscoMed have decided to venture into all areas of research, publishing quality journals that will support the scholarly and professional community across the globe.
{ "warc_headers": { "warc-record-id": "<urn:uuid:a7072225-11be-4940-be78-ab0d1fd0489d>", "warc-date": "2021-11-27T06:27:52Z", "content-type": "text/plain", "content-length": 20296, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:70e12bed-e479-4c24-90d0-18446e96f9dc>", "warc-target-uri": "https://insight.piscomed.com/index.php/IMSE", "warc-block-digest": "sha1:BJZ5QEKFQCCI6VKMZCN2ZIMBSQILR5ZR" }, "identification": { "label": "en", "prob": 0.740147054195404 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8057768940925598 }, null, { "label": "en", "prob": 0.8653526306152344 }, { "label": "en", "prob": 0.9306879639625549 }, { "label": "en", "prob": 0.8179904818534851 }, null, null, { "label": "en", "prob": 0.9631116986274719 }, { "label": "en", "prob": 0.8046488761901855 }, { "label": "en", "prob": 0.9238212704658508 }, null, { "label": "en", "prob": 0.9516798257827759 }, { "label": "en", "prob": 0.9419167637825012 }, { "label": "en", "prob": 0.9767985343933105 }, null, { "label": "en", "prob": 0.8246746063232422 }, { "label": "en", "prob": 0.878057599067688 }, { "label": "en", "prob": 0.9399843811988831 }, { "label": "en", "prob": 0.8196407556533813 }, { "label": "en", "prob": 0.9241305589675903 }, null, { "label": "en", "prob": 0.8705625534057617 }, null, null, { "label": "en", "prob": 0.947934627532959 }, null, { "label": "en", "prob": 0.9418503642082214 }, null, { "label": "en", "prob": 0.9793450832366943 }, { "label": "en", "prob": 0.810667872428894 }, { "label": "en", "prob": 0.887403130531311 }, { "label": "en", "prob": 0.9152466654777527 }, { "label": "en", "prob": 0.94978928565979 }, null, { "label": "en", "prob": 0.9144509434700012 }, null, { "label": "en", "prob": 0.9316847324371338 }, null, null, null, { "label": "en", "prob": 0.9409074783325195 }, null, { "label": "en", "prob": 0.9464608430862427 }, { "label": "en", "prob": 0.8676217198371887 }, { "label": "en", "prob": 0.942389726638794 }, null, { "label": "en", "prob": 0.8563389182090759 }, null, { "label": "en", "prob": 0.8378163576126099 }, { "label": "en", "prob": 0.8046488761901855 }, { "label": "en", "prob": 0.9865090847015381 }, null, { "label": "en", "prob": 0.9575511813163757 }, null, { "label": "en", "prob": 0.9625044465065002 }, null, { "label": "en", "prob": 0.9154688715934753 }, { "label": "en", "prob": 0.900287926197052 }, { "label": "en", "prob": 0.9168332815170288 }, { "label": "en", "prob": 0.8150233030319214 }, { "label": "en", "prob": 0.8497251272201538 }, null, { "label": "en", "prob": 0.9303674697875977 }, null, null, null, { "label": "en", "prob": 0.9751116633415222 }, { "label": "en", "prob": 0.9931849241256714 }, { "label": "en", "prob": 0.936676025390625 }, null, { "label": "en", "prob": 0.9535285830497742 }, { "label": "en", "prob": 0.921797513961792 }, null, { "label": "en", "prob": 0.9148858785629272 }, null, { "label": "en", "prob": 0.9272022247314453 }, null, { "label": "en", "prob": 0.8991938233375549 }, null, { "label": "en", "prob": 0.9178940653800964 }, null, null, { "label": "en", "prob": 0.9772108197212219 }, { "label": "en", "prob": 0.8060038089752197 }, { "label": "en", "prob": 0.979377031326294 }, null, { "label": "en", "prob": 0.870507001876831 }, null, { "label": "en", "prob": 0.8735578656196594 }, null, { "label": "en", "prob": 0.8428990840911865 }, null, { "label": "en", "prob": 0.8573257923126221 }, null, null, null, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9207310676574707 }, { "label": "en", "prob": 0.8667963147163391 }, null, null, null, null, { "label": "en", "prob": 0.8653944730758667 }, null, { "label": "en", "prob": 0.9281718730926514 }, null, { "label": "en", "prob": 0.8962725400924683 }, { "label": "en", "prob": 0.810650110244751 }, { "label": "en", "prob": 0.9359220862388611 }, { "label": "en", "prob": 0.9257282018661499 }, null, null, null, { "label": "en", "prob": 0.8828794360160828 }, { "label": "en", "prob": 0.9351857304573059 }, null, { "label": "en", "prob": 0.9438169002532959 }, { "label": "en", "prob": 0.8052494525909424 }, null, { "label": "en", "prob": 0.9627077579498291 }, null, null, null, null, { "label": "en", "prob": 0.9611530303955078 }, null, null, { "label": "en", "prob": 0.9716981053352356 } ] }
514
20,200
https://insight.piscomed.com/index.php/IMSE
insight.piscomed.com
0
[]
null
false
[]
true
2,609,011
The Renee Hoops are a crystal style with knot detailing. A glam style that will compliment any outfit.
{ "warc_headers": { "warc-record-id": "<urn:uuid:02f0cf0f-66e4-4d74-9b4a-75f90cc73d06>", "warc-date": "2021-11-27T05:15:43Z", "content-type": "text/plain", "content-length": 102, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:c9ce7c36-daa5-411b-863a-df092d5de5f9>", "warc-target-uri": "https://insurge.com.au/products/renee-crystal-hoops-sterling-silver", "warc-block-digest": "sha1:PREC73O62MYDW4RZKB2RWAKAPWAHCU6D" }, "identification": { "label": "en", "prob": 0.9071012735366821 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9071012735366821 } ] }
1,725.9
102
https://insurge.com.au/products/renee-crystal-hoops-sterling-silver
insurge.com.au
0
[]
null
false
[]
false
2,609,012
In 2021, undiz continues its revolution and reaffirms its status as a voice for young people by creating NOTHING TO HIDE. NOTHING TO HIDE, is both an attitude and a silhouette : Underwear is an integral part of the look. It returns to centre stage. undiz has used the body, its area of expertise, as inspiration for a new category: skin/wear. It is intended to reveal the body and the skin by playing with transparency and volumes. The body is in fashion ! Stepping forward, self-assured, visible, the body is now at the centre of the silhouette. The body is the basis of every look and every style. The hidden self is stepping out. Nothing To hide The body is revealed, ready to accept its differences, and stepping confidently forward. It goes beyond genders, asserts itself: yesterday’s taboos become today’s statements to be made. The hidden self comes centre stage in all its forms. Each person confidently reveals and enjoys this hidden self stepping forward, this reappropriation of their body.Revealing their body for themselves, freeing themselves from the shapes, colours and stereotypes of yesterday. Going deliberately beyond the notion of gender. To hide Casting call !!! Casting call !!! Casting call !!! Casting call !!! Try to become an undiz muse for a day ! How? Share your vision of the #nothingtohide look by posting your « Nothing To Hide outfit » on Instagram or TikTok with the #nothingtohide hashtag and share the challenge with your community. Be #nothingtohide to be selected and try your luck again each month with a new theme, new inspirations and new undiz favourite products. comprar ahora #nothingtohide Founded in 2007, the undiz brand emerged from the irrepressible desire to revolutionise lingerie into something younger, freer, with a more WTF vibe – lingerie for every woman and every preference. Discover the values, expertise and commitments of undiz ! let's go 30 days to change your mind! 100% secure payment : Visa / Paypal Delivery within 5- 10 days free returns in stores good vibes, good news be the first to receive our news updates and take advantage of our exclusive offers! email By registering, you accept that Undiz processes your personal data, in accordance with its Privacy Policy, for the purpose of sending you commercial communications. You can unsubscribe at any time by clicking on the "unsubscribe" link at the bottom of each e-mail. join us on social media delivery methods see Global-e terms find a store size guide track your order general terms and conditions FAQ about undiz Select your country Australia / English AU CGV / CGU Legals Protection of personal data Cookie settings Sitemap Recruitment Undiz France Undiz España Undiz Polska Undiz Belgium Undiz United Kingdom Undiz Italy Undiz Россия Undiz Deutschland Undiz United States Undiz Switzerland PRIVACY CHARTER FOR PERSONAL DATA This charter (the “Charter”) details the policy of the Etam Group and its affiliates (the “Etam Group”) on personal data and cookies for the site www.undiz.com or any other website operated by the Etam Group (the “Site”). The purpose of this Charter is to inform you of the conditions under which the Etam Group collects personal data, the reasons why this data is collected, how it is used and your rights, and applies to all information provided by you or collected by the Etam Group when you browse the Site. When browsing the Site, the Etam Group may collect personal data about you. Personal data shall include in particular: • personal data, such as your marital status, phone numbers, address of your home to deliver your order, email address to send you the newsletter, pictures you communicate, • electronic identification data available on or from your computer (such as cookies or IP addresses). Your electronic identification data can identify or geolocate (without being more specific than the city) your connection terminal or pages viewed on the Site during your browsing session and are generally insufficient to identify you personally. 1. GENERAL INFORMATION Through the Site, you may be invited to notify the Etam Group of personal data, such as when creating a customer account, ordering products or subscribing to the newsletter. The Etam Group may be required to collect certain information about your browsing on the Site, under the conditions described in the “Cookies” section below. In accordance with applicable rules, the POGGI Law Firm, Anne-Sophie Poggi, Attorney, 50 rue Etienne Marcel 75002 Paris, was designated as Data Protection Officer. The Etam Group headquarter is located at 56 rue Henri Barbusse 92110 Clichy FRANCE. 2. RIGHT OF ACCESS, CORRECTION, DELETION AND OPPOSITION TO PROCESS You have a right of access, correction and deletion of personal information about you, as well as the possibility to oppose the processing of this data, which you can exercise at any time by sending an email to the following address: privacy@undiz.com. You also have the right to lodge a complaint with a supervisory authority, in particular in the Member State in which you reside, your place of work or the place where the infringement is alleged to have occurred, if you consider that the processing of your personal data constitutes a violation of applicable regulations. You can unsubscribe to our newsletters if you no longer wish to receive them by clicking on the unsubscribe link located in each newsletter and/or contact us at: privacy@undiz.com. 3. MANAGEMENT OF PERSONAL DATA BY THE ETAM GROUP 3.1 Data collection purposes Through the Site, the Etam Group processes your data that are necessary for the following purposes: • Management of your subscription to the newsletter (registration and unsubscribing), • Execution and follow-up of your product orders made on the Site, • Production of anonymous statistics on site attendance, • Allow access to certain Site features. • Provide information about products and/or services and commercial prospecting messages, • Conducting surveys. 3.2 Data retention The data shall be retained for a period which does not exceed the period necessary for the purposes for which they were collected: • For managing your newsletter subscription: The Etam Group retains data for 3 years from the last contact. If you unsubscribe, the Etam Group will stop sending newsletters. • For product orders: the data collected shall be kept for the purposes of the execution of your order and then for the period necessary to establish proof of a right or contract; such data may be archived in accordance with the provisions of the Code of Commerce relating to the shelf life of books and documents created during commercial activities and the Consumer Code relating to the conservation of contracts concluded electronically. 3.3 Recipients of data Your personal data are intended for the departments of the Etam Group affected by your requests. However: • When ordering a product on the Site, the personal data you provide under the Order are intended for the company of the Etam Group or its subcontractors in charge of executing the order. • In any event, there is no transfer outside Europe and the Etam Group does not transmit your personal data except: • If the Etam Group has to share this information with third parties to provide you with the service you are requesting; or • If the Etam Group is summed up by a judicial authority or any other administrative authority to disclose the information; or • If you have agreed to the sharing of this information. 3.4 Data security and confidentiality The Etam Group has endeavored to put in place reasonable precautions to preserve the confidentiality and security of personal data processed and prevent them from being distorted, damaged, destroyed or otherwise accessed by unauthorized third parties. Technical and organizational security measures have been introduced to this end. The Etam Group does not, however, control all risks associated with the operation of the Internet and draws the attention of users to possible risks inherent in its use and operation. For the technical storage of your personal data, your data will be centralized with the following providers: • oXya - in Ile-de-France and Hauts de France, • Salesforce Commerce Cloud - in Ireland, • Amazon Web Service - in Germany and Ireland, • Jaguar Networks - in Provence-Alpes-Côte-d’Azur, • OVH - in Hauts-de-France, • Actito - in Belgium.. The Etam Group attaches the utmost importance to the protection and security of its information systems. Tools have been put in place to enable the Etam Group to detect possible vulnerabilities. These tools may inadvertently lead to access to personal data by security teams. Such data will be collected and processed for the exclusive purpose of managing these faults and in compliance with the applicable rules for the protection of personal data. 4. COOKIES 4.1 What is a cookie? A cookie is a text file that can be stored in a dedicated space of your electronic equipment on the occasion of consulting an online service with your browsing software. A cookie file allows its issuer to identify the terminal in which it is registered during the cookie’s period of validity or registration. 4.2 Cookies issued on the Site When you log on to the Site, the Etam Group may be prompted, subject to your choices, to install a variety of cookies to recognize the browser you are using during the cookie’s period of validity. The purpose of the cookies issued is to: • establish statistics and volumes of use and use of the various elements of the Site (headings and content visited, courses), enabling the Etam Group to improve the interest and ergonomics of services and the visibility of published content; • allow or facilitate your browsing on the Site, or to provide you with the online communication services you seek during your browsing session, and thus: • adapt the presentation of the Site to the display preferences of your terminal (language used, display resolution, operating system used, etc.) during your visits to the Site, depending on the hardware and viewing or reading software that your terminal contains; • remember information about a template you have completed on the Site (registration or access to your account) or to products, services or information you selected on the Site (subscribed service, content of a shopping cart, wish list, etc.); • allow you to access reserved and personal spaces on the Site, such as your account, with identifiers or data you may have previously configured; • implement security measures, for example when you are asked to re-connect to content or service after a certain period of time. 4.3 Cookies issued on the Site by third parties The Etam Group may include third-party computer applications on the Site, which allow you to share Site content with other people or to let other people know about your consultation or your opinion regarding Site content. The issue and use of cookies by third parties are subject to the privacy policies of these third parties. The Etam Group does not control the process used by social networks to collect information about your browsing on the Site. The Etam Group invites you to consult the privacy policies of these social networks in order to understand the purposes of use, including advertising, of the browsing information they can collect through these application buttons. These protection policies must, in particular, allow you to exercise your choices with these social networks, including setting your accounts for each of these networks. The Site may contain cookies issued by third parties (communications agency, audience measurement companies, etc.) and allow them, during the period of validity of these cookies, to collect browsing information relating to the Terminals, and in particular to measure the effectiveness of paying referencing campaigns with search engines. 4.4 Your choices regarding cookies Several options are available to manage cookies. Your choice of settings may change your Internet browsing and access to certain services requiring the use of Cookies. You can make the choice at any time to express and modify your cookie choices using the means described below. You can configure your browsing software so that cookies are stored in your Terminal or rejected either systematically or according to their issuer. You can also configure your browsing software so that the acceptance or refusal of cookies is offered before a cookie is likely to be registered in your terminal. For more information, see “How to exercise your choices depending on the browser you use?” For more informations regarding the cookies, please click here. (a) The Agreement on Cookies The registration of a cookie in a terminal is essentially subject to the choices of the Terminal user, which he/she can express and modify at any time and free of charge through the choices offered to him/her by his/her browsing software. If you have accepted the registration of cookies on your Terminal in your browsing software, cookies included in the pages and content you have consulted may be stored temporarily in a dedicated space of your Terminal. They will be readable only by their issuer. (b) Refusal of cookies If you refuse to register cookies in your Terminal, or if you delete them, you will no longer be able to benefit from a number of features that are still necessary to navigate some of the Site’s areas. This would be the case if you have access to content or services that require you to identify you. This would also be the case when the Etam Group or its providers could not recognize, for technical compatibility purposes, the type of browser used by your terminal, its language and display parameters or the country from which your Terminal appears to be connected to the Internet. If so, the Etam Group assumes no responsibility for the consequences associated with the degraded operation of its services resulting from our inability to register or consult the cookies required to operate and which you would have refused or deleted. (c) How to exercise your choices depending on the browser you use? For the management of cookies and your choices, each browser configuration is different. It is described in your browser’s help menu, which will help you know how to change your cookies. 4.5 If you share the use of your terminal with other people If your terminal is used by a number of people and the same terminal has several browsing software, the Etam Group cannot ensure that the services and advertisements intended for your Terminal are consistent with your own use of this terminal and not that of another user of that Terminal. If so, sharing the use of your Terminal with other people and configuring your browser settings for cookies is your choice and responsibility. For more information on cookies and their use, you can find the CNIL (National Commission of Computing and Freedoms) file at the following address: https://www.cnil.fr/fr/site-web-cookies-et-autres-traceurs. 5. CHARTER AMENDMENT The Etam Group may be required to amend the Charter and ensure that you are informed of it either by a special mention on the Site or by a personalized warning including via newsletters. 6. PERSONAL DATA POLICY RELATING TO MINORS The Site does not target minors as a public. Access to the Site is not prohibited, however, because it does not contain content prohibited for minors under the age of 18. If information was collected on a minor by the Site, the legal representative of the minor will have the opportunity to contact privacy@undiz.com to correct, modify or delete this information.
{ "warc_headers": { "warc-record-id": "<urn:uuid:19524244-71e3-4e2c-aae3-30fb777ff3b1>", "warc-date": "2021-11-27T05:33:15Z", "content-type": "text/plain", "content-length": 15709, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:ed2d5d92-f05f-4f6f-a8da-3ac1f84df9cf>", "warc-target-uri": "https://int.undiz.com/en_AU/landing-page-nothing-to-hide.html", "warc-block-digest": "sha1:5FIGKDRSTD3YEAFAOCIHDZKAXTGDLLQJ" }, "identification": { "label": "en", "prob": 0.8257170915603638 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.9814170598983765 }, { "label": "en", "prob": 0.9152717590332031 }, { "label": "en", "prob": 0.9772171378135681 }, { "label": "en", "prob": 0.9721660614013672 }, { "label": "en", "prob": 0.9460895657539368 }, { "label": "en", "prob": 0.9510905146598816 }, null, null, { "label": "en", "prob": 0.9251877665519714 }, { "label": "en", "prob": 0.9664736986160278 }, { "label": "en", "prob": 0.9506253004074097 }, null, null, null, null, null, { "label": "en", "prob": 0.956057608127594 }, { "label": "en", "prob": 0.9284622073173523 }, null, { "label": "en", "prob": 0.8654996156692505 }, { "label": "en", "prob": 0.8793758153915405 }, null, { "label": "en", "prob": 0.8843683004379272 }, null, { "label": "en", "prob": 0.9336379170417786 }, { "label": "en", "prob": 0.803644597530365 }, null, { "label": "en", "prob": 0.8077172636985779 }, null, null, { "label": "en", "prob": 0.933068037033081 }, null, { "label": "en", "prob": 0.918509840965271 }, null, null, null, null, { "label": "en", "prob": 0.922473132610321 }, { "label": "en", "prob": 0.8968788981437683 }, null, { "label": "en", "prob": 0.96390700340271 }, null, { "label": "en", "prob": 0.8813735842704773 }, null, null, null, null, null, { "label": "en", "prob": 0.9049757719039917 }, null, { "label": "es", "prob": 0.824312150478363 }, null, null, null, null, { "label": "ru", "prob": 0.8985242247581482 }, { "label": "de", "prob": 0.9070520401000977 }, null, { "label": "en", "prob": 0.8160488605499268 }, null, { "label": "en", "prob": 0.9436020255088806 }, { "label": "en", "prob": 0.8837856650352478 }, { "label": "en", "prob": 0.9173417687416077 }, { "label": "en", "prob": 0.9175651669502258 }, null, { "label": "en", "prob": 0.8961040377616882 }, { "label": "en", "prob": 0.8933032751083374 }, { "label": "en", "prob": 0.9216728806495667 }, { "label": "en", "prob": 0.9297996163368225 }, null, { "label": "en", "prob": 0.9760093688964844 }, { "label": "en", "prob": 0.9652171730995178 }, { "label": "en", "prob": 0.9089156985282898 }, null, null, { "label": "en", "prob": 0.8888635039329529 }, { "label": "en", "prob": 0.8155934810638428 }, { "label": "en", "prob": 0.9701058268547058 }, null, null, { "label": "en", "prob": 0.8884360790252686 }, null, null, { "label": "en", "prob": 0.9841473698616028 }, null, { "label": "en", "prob": 0.9289377927780151 }, { "label": "en", "prob": 0.8557513952255249 }, { "label": "en", "prob": 0.9728678464889526 }, { "label": "en", "prob": 0.9235535264015198 }, { "label": "en", "prob": 0.8949264883995056 }, { "label": "en", "prob": 0.9616336822509766 }, { "label": "en", "prob": 0.8416809439659119 }, { "label": "en", "prob": 0.9283894300460815 }, { "label": "en", "prob": 0.833543062210083 }, { "label": "en", "prob": 0.9589015245437622 }, { "label": "en", "prob": 0.9658486247062683 }, { "label": "en", "prob": 0.8847203254699707 }, null, null, { "label": "en", "prob": 0.8789119124412537 }, null, null, null, { "label": "en", "prob": 0.900557279586792 }, { "label": "en", "prob": 0.9333856105804443 }, null, { "label": "en", "prob": 0.9347884058952332 }, { "label": "en", "prob": 0.9481560587882996 }, { "label": "en", "prob": 0.9617896676063538 }, { "label": "en", "prob": 0.9359527826309204 }, { "label": "en", "prob": 0.9983927607536316 }, { "label": "en", "prob": 0.9095040559768677 }, { "label": "en", "prob": 0.9271308779716492 }, { "label": "en", "prob": 0.8289628028869629 }, { "label": "en", "prob": 0.8948636054992676 }, { "label": "en", "prob": 0.9598482251167297 }, { "label": "en", "prob": 0.9535020589828491 }, { "label": "en", "prob": 0.9893527030944824 }, { "label": "en", "prob": 0.9434363842010498 }, { "label": "en", "prob": 0.9772925972938538 }, { "label": "en", "prob": 0.9295385479927063 }, { "label": "en", "prob": 0.9465717673301697 }, null, { "label": "en", "prob": 0.877798855304718 }, { "label": "en", "prob": 0.9241878986358643 }, { "label": "en", "prob": 0.9340230822563171 }, { "label": "en", "prob": 0.9369716644287109 }, { "label": "en", "prob": 0.8233686685562134 }, null, { "label": "en", "prob": 0.9533926248550415 }, { "label": "en", "prob": 0.953643798828125 }, null, { "label": "en", "prob": 0.9449437260627747 }, { "label": "en", "prob": 0.9481585621833801 }, { "label": "en", "prob": 0.9731161594390869 }, { "label": "en", "prob": 0.9337350726127625 }, { "label": "en", "prob": 0.9542493224143982 }, { "label": "en", "prob": 0.8970750570297241 }, { "label": "en", "prob": 0.9575631022453308 }, { "label": "en", "prob": 0.9262501001358032 }, null, null, { "label": "en", "prob": 0.9457888603210449 }, null, { "label": "en", "prob": 0.9521175026893616 }, { "label": "en", "prob": 0.949616551399231 } ] }
526.5
15,609
https://int.undiz.com/en_AU/landing-page-nothing-to-hide.html
int.undiz.com
0
[]
null
false
[]
true
2,609,013
By registering, you accept that Undiz processes your personal data, in accordance with its Privacy Policy, for the purpose of sending you commercial communications. You can unsubscribe at any time by clicking on the "unsubscribe" link at the bottom of each e-mail. join us on social media delivery methods see Global-e terms find a store size guide track your order general terms and conditions FAQ about undiz Select your country United Kingdom / English GB CGV / CGU Legals Protection of personal data Cookie settings Sitemap Recruitment Undiz France Undiz España Undiz Polska Undiz Belgium Undiz United Kingdom Undiz Italy Undiz Россия Undiz Deutschland Undiz United States Undiz Switzerland PRIVACY CHARTER FOR PERSONAL DATA This charter (the “Charter”) details the policy of the Etam Group and its affiliates (the “Etam Group”) on personal data and cookies for the site www.undiz.com or any other website operated by the Etam Group (the “Site”). The purpose of this Charter is to inform you of the conditions under which the Etam Group collects personal data, the reasons why this data is collected, how it is used and your rights, and applies to all information provided by you or collected by the Etam Group when you browse the Site. When browsing the Site, the Etam Group may collect personal data about you. Personal data shall include in particular: • personal data, such as your marital status, phone numbers, address of your home to deliver your order, email address to send you the newsletter, pictures you communicate, • electronic identification data available on or from your computer (such as cookies or IP addresses). Your electronic identification data can identify or geolocate (without being more specific than the city) your connection terminal or pages viewed on the Site during your browsing session and are generally insufficient to identify you personally. 1. GENERAL INFORMATION Through the Site, you may be invited to notify the Etam Group of personal data, such as when creating a customer account, ordering products or subscribing to the newsletter. The Etam Group may be required to collect certain information about your browsing on the Site, under the conditions described in the “Cookies” section below. In accordance with applicable rules, the POGGI Law Firm, Anne-Sophie Poggi, Attorney, 50 rue Etienne Marcel 75002 Paris, was designated as Data Protection Officer. The Etam Group headquarter is located at 56 rue Henri Barbusse 92110 Clichy FRANCE. 2. RIGHT OF ACCESS, CORRECTION, DELETION AND OPPOSITION TO PROCESS You have a right of access, correction and deletion of personal information about you, as well as the possibility to oppose the processing of this data, which you can exercise at any time by sending an email to the following address: privacy@undiz.com. You also have the right to lodge a complaint with a supervisory authority, in particular in the Member State in which you reside, your place of work or the place where the infringement is alleged to have occurred, if you consider that the processing of your personal data constitutes a violation of applicable regulations. You can unsubscribe to our newsletters if you no longer wish to receive them by clicking on the unsubscribe link located in each newsletter and/or contact us at: privacy@undiz.com. 3. MANAGEMENT OF PERSONAL DATA BY THE ETAM GROUP 3.1 Data collection purposes Through the Site, the Etam Group processes your data that are necessary for the following purposes: • Management of your subscription to the newsletter (registration and unsubscribing), • Execution and follow-up of your product orders made on the Site, • Production of anonymous statistics on site attendance, • Allow access to certain Site features. • Provide information about products and/or services and commercial prospecting messages, • Conducting surveys. 3.2 Data retention The data shall be retained for a period which does not exceed the period necessary for the purposes for which they were collected: • For managing your newsletter subscription: The Etam Group retains data for 3 years from the last contact. If you unsubscribe, the Etam Group will stop sending newsletters. • For product orders: the data collected shall be kept for the purposes of the execution of your order and then for the period necessary to establish proof of a right or contract; such data may be archived in accordance with the provisions of the Code of Commerce relating to the shelf life of books and documents created during commercial activities and the Consumer Code relating to the conservation of contracts concluded electronically. 3.3 Recipients of data Your personal data are intended for the departments of the Etam Group affected by your requests. However: • When ordering a product on the Site, the personal data you provide under the Order are intended for the company of the Etam Group or its subcontractors in charge of executing the order. • In any event, there is no transfer outside Europe and the Etam Group does not transmit your personal data except: • If the Etam Group has to share this information with third parties to provide you with the service you are requesting; or • If the Etam Group is summed up by a judicial authority or any other administrative authority to disclose the information; or • If you have agreed to the sharing of this information. 3.4 Data security and confidentiality The Etam Group has endeavored to put in place reasonable precautions to preserve the confidentiality and security of personal data processed and prevent them from being distorted, damaged, destroyed or otherwise accessed by unauthorized third parties. Technical and organizational security measures have been introduced to this end. The Etam Group does not, however, control all risks associated with the operation of the Internet and draws the attention of users to possible risks inherent in its use and operation. For the technical storage of your personal data, your data will be centralized with the following providers: • oXya - in Ile-de-France and Hauts de France, • Salesforce Commerce Cloud - in Ireland, • Amazon Web Service - in Germany and Ireland, • Jaguar Networks - in Provence-Alpes-Côte-d’Azur, • OVH - in Hauts-de-France, • Actito - in Belgium.. The Etam Group attaches the utmost importance to the protection and security of its information systems. Tools have been put in place to enable the Etam Group to detect possible vulnerabilities. These tools may inadvertently lead to access to personal data by security teams. Such data will be collected and processed for the exclusive purpose of managing these faults and in compliance with the applicable rules for the protection of personal data. 4. COOKIES 4.1 What is a cookie? A cookie is a text file that can be stored in a dedicated space of your electronic equipment on the occasion of consulting an online service with your browsing software. A cookie file allows its issuer to identify the terminal in which it is registered during the cookie’s period of validity or registration. 4.2 Cookies issued on the Site When you log on to the Site, the Etam Group may be prompted, subject to your choices, to install a variety of cookies to recognize the browser you are using during the cookie’s period of validity. The purpose of the cookies issued is to: • establish statistics and volumes of use and use of the various elements of the Site (headings and content visited, courses), enabling the Etam Group to improve the interest and ergonomics of services and the visibility of published content; • allow or facilitate your browsing on the Site, or to provide you with the online communication services you seek during your browsing session, and thus: • adapt the presentation of the Site to the display preferences of your terminal (language used, display resolution, operating system used, etc.) during your visits to the Site, depending on the hardware and viewing or reading software that your terminal contains; • remember information about a template you have completed on the Site (registration or access to your account) or to products, services or information you selected on the Site (subscribed service, content of a shopping cart, wish list, etc.); • allow you to access reserved and personal spaces on the Site, such as your account, with identifiers or data you may have previously configured; • implement security measures, for example when you are asked to re-connect to content or service after a certain period of time. 4.3 Cookies issued on the Site by third parties The Etam Group may include third-party computer applications on the Site, which allow you to share Site content with other people or to let other people know about your consultation or your opinion regarding Site content. The issue and use of cookies by third parties are subject to the privacy policies of these third parties. The Etam Group does not control the process used by social networks to collect information about your browsing on the Site. The Etam Group invites you to consult the privacy policies of these social networks in order to understand the purposes of use, including advertising, of the browsing information they can collect through these application buttons. These protection policies must, in particular, allow you to exercise your choices with these social networks, including setting your accounts for each of these networks. The Site may contain cookies issued by third parties (communications agency, audience measurement companies, etc.) and allow them, during the period of validity of these cookies, to collect browsing information relating to the Terminals, and in particular to measure the effectiveness of paying referencing campaigns with search engines. 4.4 Your choices regarding cookies Several options are available to manage cookies. Your choice of settings may change your Internet browsing and access to certain services requiring the use of Cookies. You can make the choice at any time to express and modify your cookie choices using the means described below. You can configure your browsing software so that cookies are stored in your Terminal or rejected either systematically or according to their issuer. You can also configure your browsing software so that the acceptance or refusal of cookies is offered before a cookie is likely to be registered in your terminal. For more information, see “How to exercise your choices depending on the browser you use?” For more informations regarding the cookies, please click here. (a) The Agreement on Cookies The registration of a cookie in a terminal is essentially subject to the choices of the Terminal user, which he/she can express and modify at any time and free of charge through the choices offered to him/her by his/her browsing software. If you have accepted the registration of cookies on your Terminal in your browsing software, cookies included in the pages and content you have consulted may be stored temporarily in a dedicated space of your Terminal. They will be readable only by their issuer. (b) Refusal of cookies If you refuse to register cookies in your Terminal, or if you delete them, you will no longer be able to benefit from a number of features that are still necessary to navigate some of the Site’s areas. This would be the case if you have access to content or services that require you to identify you. This would also be the case when the Etam Group or its providers could not recognize, for technical compatibility purposes, the type of browser used by your terminal, its language and display parameters or the country from which your Terminal appears to be connected to the Internet. If so, the Etam Group assumes no responsibility for the consequences associated with the degraded operation of its services resulting from our inability to register or consult the cookies required to operate and which you would have refused or deleted. (c) How to exercise your choices depending on the browser you use? For the management of cookies and your choices, each browser configuration is different. It is described in your browser’s help menu, which will help you know how to change your cookies. 4.5 If you share the use of your terminal with other people If your terminal is used by a number of people and the same terminal has several browsing software, the Etam Group cannot ensure that the services and advertisements intended for your Terminal are consistent with your own use of this terminal and not that of another user of that Terminal. If so, sharing the use of your Terminal with other people and configuring your browser settings for cookies is your choice and responsibility. For more information on cookies and their use, you can find the CNIL (National Commission of Computing and Freedoms) file at the following address: https://www.cnil.fr/fr/site-web-cookies-et-autres-traceurs. 5. CHARTER AMENDMENT The Etam Group may be required to amend the Charter and ensure that you are informed of it either by a special mention on the Site or by a personalized warning including via newsletters. 6. PERSONAL DATA POLICY RELATING TO MINORS The Site does not target minors as a public. Access to the Site is not prohibited, however, because it does not contain content prohibited for minors under the age of 18. If information was collected on a minor by the Site, the legal representative of the minor will have the opportunity to contact privacy@undiz.com to correct, modify or delete this information.
{ "warc_headers": { "warc-record-id": "<urn:uuid:2952b98d-a85d-4698-a891-b3906ae88e5a>", "warc-date": "2021-11-27T05:32:39Z", "content-type": "text/plain", "content-length": 13578, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:9fd5a325-e4ca-4c16-b1a7-2a7832d6d828>", "warc-target-uri": "https://int.undiz.com/en_GB/licenses/star-wars/", "warc-block-digest": "sha1:7VXLEADNIK4TOPOIKSGFJ5N2MF7ZSSA6" }, "identification": { "label": "en", "prob": 0.8339940309524536 }, "annotations": [ "short_sentences", "header" ], "line_identifications": [ { "label": "en", "prob": 0.918509840965271 }, null, null, null, null, { "label": "en", "prob": 0.922473132610321 }, { "label": "en", "prob": 0.8968788981437683 }, null, { "label": "en", "prob": 0.96390700340271 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9049757719039917 }, null, { "label": "es", "prob": 0.824312150478363 }, null, null, null, null, { "label": "ru", "prob": 0.8985242247581482 }, { "label": "de", "prob": 0.9070520401000977 }, null, { "label": "en", "prob": 0.8160488605499268 }, null, { "label": "en", "prob": 0.9436020255088806 }, { "label": "en", "prob": 0.8837856650352478 }, { "label": "en", "prob": 0.9173417687416077 }, { "label": "en", "prob": 0.9175651669502258 }, null, { "label": "en", "prob": 0.8961040377616882 }, { "label": "en", "prob": 0.8933032751083374 }, { "label": "en", "prob": 0.9216728806495667 }, { "label": "en", "prob": 0.9297996163368225 }, null, { "label": "en", "prob": 0.9760093688964844 }, { "label": "en", "prob": 0.9652171730995178 }, { "label": "en", "prob": 0.9089156985282898 }, null, null, { "label": "en", "prob": 0.8888635039329529 }, { "label": "en", "prob": 0.8155934810638428 }, { "label": "en", "prob": 0.9701058268547058 }, null, null, { "label": "en", "prob": 0.8884360790252686 }, null, null, { "label": "en", "prob": 0.9841473698616028 }, null, { "label": "en", "prob": 0.9289377927780151 }, { "label": "en", "prob": 0.8557513952255249 }, { "label": "en", "prob": 0.9728678464889526 }, { "label": "en", "prob": 0.9235535264015198 }, { "label": "en", "prob": 0.8949264883995056 }, { "label": "en", "prob": 0.9616336822509766 }, { "label": "en", "prob": 0.8416809439659119 }, { "label": "en", "prob": 0.9283894300460815 }, { "label": "en", "prob": 0.833543062210083 }, { "label": "en", "prob": 0.9589015245437622 }, { "label": "en", "prob": 0.9658486247062683 }, { "label": "en", "prob": 0.8847203254699707 }, null, null, { "label": "en", "prob": 0.8789119124412537 }, null, null, null, { "label": "en", "prob": 0.900557279586792 }, { "label": "en", "prob": 0.9333856105804443 }, null, { "label": "en", "prob": 0.9347884058952332 }, { "label": "en", "prob": 0.9481560587882996 }, { "label": "en", "prob": 0.9617896676063538 }, { "label": "en", "prob": 0.9359527826309204 }, { "label": "en", "prob": 0.9983927607536316 }, { "label": "en", "prob": 0.9095040559768677 }, { "label": "en", "prob": 0.9271308779716492 }, { "label": "en", "prob": 0.8289628028869629 }, { "label": "en", "prob": 0.8948636054992676 }, { "label": "en", "prob": 0.9598482251167297 }, { "label": "en", "prob": 0.9535020589828491 }, { "label": "en", "prob": 0.9893527030944824 }, { "label": "en", "prob": 0.9434363842010498 }, { "label": "en", "prob": 0.9772925972938538 }, { "label": "en", "prob": 0.9295385479927063 }, { "label": "en", "prob": 0.9465717673301697 }, null, { "label": "en", "prob": 0.877798855304718 }, { "label": "en", "prob": 0.9241878986358643 }, { "label": "en", "prob": 0.9340230822563171 }, { "label": "en", "prob": 0.9369716644287109 }, { "label": "en", "prob": 0.8233686685562134 }, null, { "label": "en", "prob": 0.9533926248550415 }, { "label": "en", "prob": 0.953643798828125 }, null, { "label": "en", "prob": 0.9449437260627747 }, { "label": "en", "prob": 0.9481585621833801 }, { "label": "en", "prob": 0.9731161594390869 }, { "label": "en", "prob": 0.9337350726127625 }, { "label": "en", "prob": 0.9542493224143982 }, { "label": "en", "prob": 0.8970750570297241 }, { "label": "en", "prob": 0.9575631022453308 }, { "label": "en", "prob": 0.9262501001358032 }, null, null, { "label": "en", "prob": 0.9457888603210449 }, null, { "label": "en", "prob": 0.9521175026893616 }, { "label": "en", "prob": 0.949616551399231 } ] }
486
13,486
https://int.undiz.com/en_GB/licenses/star-wars/
int.undiz.com
0
[]
null
false
[]
true
2,609,014
Indonesia Coal Crushing And Screening Plant Coal crushing and screening plant is used in indonesia mining production lineoal jaw crusher cone crusher hammer crusher and the vibrating screen cooperate with each to form a whole coal mining line for the local industry application. Online Chat. Mobail Coal Screening Plant. Read More Indonesia’s Coal Dynamics - IESR coal-fired power plants and 26% is gas-fired power plants. Without considering external cost of a coal power plant, coal is a cheap source of energy to support Indonesia’s economic development. Environmental damage and health issues (especially respiratory diseases) are two significant external costs. Global climate commitment, stipulated in Read More Indonesian Coal - Low GCV Indonesian Coal Wholesale Trader ... The coal is available in 5200 / 5000 / 4800 / 4200 / 3800 GAR at Mundra / Kandla / Navlakhi in Gujarat. Indonesian Coal is available in 0-50 mm (Basic Size). This variety of coal is typically used in Power Plants, Paper Mills, Chemicals Dyes Industries, Process Houses, Coal Screening Plants, Gasifier Plants and other industries. Read More No New Coal Plants in Indonesia in Another Bid to Cut ... May 27, 2021 Coal-Reliant Indonesia Changes Gears to Vie for Green Funds (1) Southeast Asia’s largest economy will gradually shift about 5,200 diesel-powered plants with Read More Indonesia Integrated Steel Mill - Coal preparation Coke trasportation : Coal capacity(450T/Hr): Coke capacity(350T/Hr, 300T/Hr) PT.KRAKATAU POSCO Blast furnace No.1 Project Jul. 2011 Dec.2013 Cilegon in Indonesia PT.KRAKATA U POSCO 3,000,000 T/Y (8,650 T/D) The capacity of plant is 3 million tons of hot metal in annual. This project has been performed Read More Indonesia Plans to Increase Coal Production - Climate ... May 05, 2019 Indonesia plans to increase coal production, opening new plants that primarily mine the lower grade coal, lignite, which produces less energy than other, higher grade forms of coal. Indonesia has significant reserves of coal. There is an estimated 37.34 billion tons of reserves, with 20.11 billion proven. Exhaustion of the reserve is estimated ... Read More Coal power industry in Indonesia - statistics facts ... Jun 16, 2021 Statistics and facts on Indonesian coal power industry. The electricity generation capacity in Indonesia reached about 69.6 gigawatts in 2019. For Read More Indonesia ‘must stop building new coal plants by 2020’ to ... Dec 02, 2019 JAKARTA — Indonesia must stop building new coal-fired power plants by 2020 if it wants to do its part to cap global warming under the targets of Read More Coal Mining in Indonesia - Indonesian Coal Industry ... 8 行 The Indonesian coal industry is rather fragmented with only a few big producers and many small Read More indonesian coal crushing and screening plant indonesian coal crushing and screening plant. used stone machine and impact rotary breakers for sale in dubai for stone stone 100 . , ... [email protected] ... 6498 products — . coal crushing and screening plant is used in indonesia mining production line coal jaw crusher ... Read More Indonesiacoal Screening coal screening plant in indonesia.Indonesia Coal Crushing and Screening Plant PEW Jaw Crusher Coal crushing and screening plant is used. Film exposes Indonesias coal industry abuses - Asia Times . Apr 21, 2019 A new documentary that shows the links between Indonesian coal and screening the film at more than 470 locations throughout Indonesia. Read More Coal Primary Jaw Crushers Indonesia Coal crushing and screening plant is used in indonesia mining production line coal jaw crusher cone crusher hammer crusher and the vibrating screen cooperate with each to form a whole coal mining line for the local industry application Read More Jaw crusher for primary crushing The mobile cone crusher plants ... Read More coal crushing in indonesia Coal crusher for sale in indonesia. xuanshi crusher for price sale plant indonesia coal . indonesia coal mobile crusher in southeast of kalimantan there have a 160th anthracite mobile crushing plant for a indonesia customer this coal mobile crushing and screening plant we choose vibrating feeder to feed jaw crusher Read More screening machines for coal from australia Indonesia Indonesia Coal Crushing And Handling Plant Parts New Machine. indonesia coal crushing and handling plant parts new machine. oct 2019 since its launch in 2017 jebsen amp jessen technologys dry bulk handling division has seen growth in its business and successfully handled projects in the mining sector particularly in coal handling crushing amp screening and nickel mining the company is ... Read More Coal phase-out plan gets pushback in power-hungry Indonesia Jun 16, 2021 Coal phase-out plan gets pushback in power-hungry Indonesia. Officials and industry in Indonesia have questioned a plan by the national utility to phase out all coal-fired power plants, while ... Read More How Phasing Out Coal-fired Power Plants Will Benefit ... Jun 29, 2021 Dependence on Coal-fired power Plant. Indonesia is ranked 7th in the world as the country that uses the most coal-fired power plants in 2020. The Indonesian State Electricity Company (PLN) is also building 35,000 MW power plants, which will be dominated by 20,000 MW coal-fired power plants. Read More Kalyani Coals: Imported Coal Screen Coal Suppliers in India We are one of India's reliable and ISO 9001:2015 Certified suppliers of imported steam coal and imported screen coal based in Mumbai with a coal screening plant in Khopoli, an industrial city in Maharashtra. We help you buy the best in quality imported coal of varied specifications at competitive market prices. Read More Coal phase-out scheme gets pushback in power-hungry Indonesia Jun 17, 2021 Associations representing coal miners and coal plant operators have also seized on this point, saying that cheap coal still has a role in powering Indonesia’s economy for the foreseeable future. Hendra Sianida, executive director of APBI, the coal-mining association, said demand for energy will continue to increase as the economy grows, and ... Read More List of power stations in Indonesia - Wikipedia Non-renewable Thermal. Thermal power is the largest source of power in Indonesia.There are different types of thermal power plants based on the fuel used to generate the steam such as coal, gas, diesel etc. About 85% of electricity consumed in Indonesia is generated by thermal power plants.. Bituminous coal or lignite Existing. Note: IPP means independent power producer Read More Can Indonesia Really Quit Coal After 2023? – The Diplomat May 25, 2021 A recent article from Mongabay reports that as of 2023 Indonesia will no longer build new coal-fired power plants. The article notes, however, that Indonesia still intends to finish dozens of ... Read More Crusher Plant Coal In Indonesia Coal Crusher Plant In Rajasthan Indonesia. 10 tph crushing plant in indonesia - Machine 10 tph crushing plant in indonesia - thedugong Indonesia 10tph Coal Grinding Plant Indonesia Coal Grinding Mill First of all the raw coal sie is too large to be directly fed into grinding mill so the engineer recommends a small jaw crusher to crush the coal into proper sies kaolin impact crusher ... Read More Indonesia Plans to Increase Coal Production - Climate ... May 05, 2019 Indonesia plans to increase coal production, opening new plants that primarily mine the lower grade coal, lignite, which produces less energy than other, higher grade forms of coal. Indonesia has significant reserves of coal. There is an estimated 37.34 billion tons of reserves, with 20.11 billion proven. Exhaustion of the reserve is estimated ... Read More Japan's JERA divests stake in Indonesian coal plant ... Aug 20, 2021 JERA also has a stake in a coal-fired plant in Cirebon, Indonesia. The divestiture follows similar moves by other Japanese energy companies. In June, trading House Mitsui Co. sold its 45.5% ... Read More Crusher And Screening Plant In Indonesia Crushing And Screening Plant Indonesia. Coal crushing and screening plant is used in indonesia mining production line.Coal jaw crusher, cone crusher, hammer crusher and the vibrating screen cooperate with each to form a whole coal mining line for the local industry application.Indonesia coal crushing plant.Coal crushers are sold under license from sbm in indonesia. Read More Coal Miningpanies In Indonesia Database Coal crushing and screening plant in indonesia tanzania crusher coal crushing and screening plant in indonesia,shanghai xsm is a professional ore crusher equipment,coal, buy stone crushing and screening plant calcium carbonate, sell stone crushing angala is an open pit coal mine situated in the witbank region of mpumalanga Read More coal crushing in indonesia Coal crusher for sale in indonesia. xuanshi crusher for price sale plant indonesia coal . indonesia coal mobile crusher in southeast of kalimantan there have a 160th anthracite mobile crushing plant for a indonesia customer this coal mobile crushing and screening plant we Read More Indonesia’s pipeline of coal plants undermines pledge to ... Aug 23, 2021 Coal currently makes up nearly 40% of Indonesia’s energy mix. Despite green rhetoric from the government, the situation is not likely to improve soon. That’s because, of the 41 gigawatts (GW) of new generation capacity expected to come online in the country by 2030, 14-16GW is due to come from coal. And 3.5GW of that is likely to come from coal-fired power plants built immediately next to ... Read More Indonesia’s Coal Dynamics - IESR coal-fired power plants and 26% is gas-fired power plants. Without considering external cost of a coal power plant, coal is a cheap source of energy to support Indonesia’s economic development. Environmental damage and health issues (especially respiratory diseases) are two significant external costs. Global climate commitment, stipulated in Read More Crusher Plant Coal In Indonesia Coal Crusher Plant In Rajasthan Indonesia. 10 tph crushing plant in indonesia - Machine 10 tph crushing plant in indonesia - thedugong Indonesia 10tph Coal Grinding Plant Indonesia Coal Grinding Mill First of all the raw coal sie is too large to be directly fed into grinding mill so the engineer recommends a small jaw crusher to crush the coal into proper sies kaolin impact crusher ... Read More No New Coal Plants in Indonesia in Another Bid to Cut ... May 27, 2021 Coal-Reliant Indonesia Changes Gears to Vie for Green Funds (1) Southeast Asia’s largest economy will gradually shift about 5,200 diesel-powered plants with Read More Indonesia and coal - Global Energy Monitor Coal Production. Since the early 1990's Indonesian coal mining in Indonesia has grown dramatically. The World Coal Institute estimates that in 2008 Indonesia mined 246 million tonnes of coal with just over 200 millions tonnes of this exported. 2008 coal exports comprised 173 million tonnes of steam coal and 30 million tonnes of coking coal. In 2009, Indonesia was the world's second largest ... Read More Coal Screening Equipment Multotec Coal screening equipment from Multotec delivers maximum-efficiency classification and separation solutions through magnetic, flotation, gravity or cyclonic action processing.. Our coal screening equipment, rated among the highest quality coal screening equipment internationally, is used in coal preparation plants (MCPP), modular coal preparation plants (MCPP) and are ideal for coal cleaning ... Read More Coal Screening Plant In Philippines Icoal Crushing And Screening Machine In Philippines. Coal crusher wants Henan Mining Machinery Co Ltd Coal crushing and screening machine in philippines Jun 8 2017 Rock Quarry Plant Business Plan in PhilippinesQuarry Crusher There Coal Copper Dolomite Feldspar Gypsum rock crusher supplier philippines Cement plant crusher cost topic aal European Type Jaw Crusher Jaw Crusher HPT Read More Crushing And Screening In Coal Handling Processing In Plant Coal crushing and screening plant N.M. Heilig. Coal crushing and screening plant. Location: France Industry: Coal grading Capacity: 300 t/h for 0-25 mm and 8-25 mm fraction, 180 t/h for 6-15 mm fraction. Scope: 1 Hopper feeder 16 belt conveyors 2 vibrating screens 2 crushers 1 Read More pembuat mobile coal crusher 350TPH in Indonesia ... Apr 27, 2013 Coal Crushing Plant Case. 100 TPH Mobile Coal Crusher in N; like mobile coal crusher and coal jaw crusher, is welcomed in Indonesia, 350-400 TPH Quarry Line; Used Mobile Coal Crushing Plant for Sale in India,South Read More coal mining consultants indonesia Kilpady Consultants - Coal Mine In Indonesia. Coal Sector-Indonesia. According to the Coal Directorate of the Ministry of Mines and Energy, Indonesia has Coal Reserves of 38 billion tonnes. Major coal reserves areas are in Kalimantan with an estimated 21.1 billion tonnes and Sumatra with an estimated 17.8 billion tonnes. Read more Read More Coal slime dewatering screen price in Indonesia LZZG Mar 11, 2019 The coal slime dewatering screen can be used in industrial sectors such as coal preparation, beneficiation, power generation, sugar production, salt production, etc. The medium and fine-grained materials can be subjected to dry-wet screening, dehydration, de-intermediation, and de-sludge. Read More << Previous:How To Design Iron Ore Plant >> Next:Latin America Crusher Related Information: used stone grinding plant for sale contract papers for crushing and screening of iron ore ball mill cyclone control black horse machines marble coal mining indonesia trapezium grinding mill india manufacturer crusher for aggregates in dubai dolomite jaw crusher for sale in indonesia 80tph 120th medium hard stone crusher stone crusher manufacturing china cost of cement clinker grinding plant plans to build a rock crusher vertical shaft kilns for cement production the purpose of stone crusher north kenya mineral processing equipment jaw for crusher price in china portable mobile stone crusher pricing in ethiopia mill prices and for sale jamaica lime stone production process quartz stone crusher cost in punjab nigeria complete filter ball mill plant tph granite quarry project report for construction jual mesin grinding bekas di cikupamas tangerang iron ore dry grinding systems sch grinder machine price in pakistan coal mining equipment price list drosky za alberton hummermill vertical inline raw mill for cement plants calculation of hammer mill grinding capacity low price granite crushing solution price If you have any questions, please contact our customer service or send an email to: [email protected] About us More than 40 series, hundreds of specifications of crushers, sand making machines, pulverizers and mobile crushing stations are the company’s main products, complete in models and superior in quality. They are widely used in mining, building materials, highways, bridges, coal, and chemicals. , Metallurgy, refractory materials and other fields.
{ "warc_headers": { "warc-record-id": "<urn:uuid:520affc5-0843-4464-a62b-8188e2f8e8d5>", "warc-date": "2021-11-27T05:33:11Z", "content-type": "text/plain", "content-length": 15003, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:f62d5b0f-deda-4c78-8356-736c233639e1>", "warc-target-uri": "https://inteligentny-dom-wroclaw.pl/process/May/1038.html", "warc-block-digest": "sha1:5QCODBBRRLYJPNC5EQZ6SPXF4HSVF2NN" }, "identification": { "label": "en", "prob": 0.6866735816001892 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.8279046416282654 }, null, null, { "label": "en", "prob": 0.9156690835952759 }, null, null, { "label": "en", "prob": 0.8186945915222168 }, null, null, { "label": "en", "prob": 0.8651572465896606 }, null, null, null, null, null, { "label": "en", "prob": 0.9417118430137634 }, null, null, { "label": "en", "prob": 0.8826261758804321 }, null, { "label": "en", "prob": 0.9382712841033936 }, { "label": "en", "prob": 0.9282892346382141 }, null, null, { "label": "en", "prob": 0.9790772795677185 }, null, { "label": "en", "prob": 0.9159597754478455 }, { "label": "en", "prob": 0.8355539441108704 }, null, null, { "label": "en", "prob": 0.9098293781280518 }, null, null, { "label": "en", "prob": 0.8739718794822693 }, null, { "label": "en", "prob": 0.8218772411346436 }, { "label": "en", "prob": 0.8520243167877197 }, null, { "label": "en", "prob": 0.8504273295402527 }, { "label": "en", "prob": 0.9121092557907104 }, null, null, { "label": "en", "prob": 0.8677901029586792 }, null, null, { "label": "en", "prob": 0.9475691318511963 }, null, { "label": "en", "prob": 0.8333015441894531 }, { "label": "en", "prob": 0.9497136473655701 }, null, null, { "label": "en", "prob": 0.9628208875656128 }, null, null, { "label": "en", "prob": 0.9028612375259399 }, null, null, { "label": "en", "prob": 0.9491771459579468 }, null, null, { "label": "en", "prob": 0.8087399005889893 }, null, null, { "label": "en", "prob": 0.9417118430137634 }, null, { "label": "en", "prob": 0.9093279242515564 }, { "label": "en", "prob": 0.9686328768730164 }, null, null, { "label": "en", "prob": 0.845159113407135 }, null, null, { "label": "en", "prob": 0.9069949388504028 }, null, { "label": "en", "prob": 0.8218772411346436 }, { "label": "en", "prob": 0.8530727028846741 }, null, null, { "label": "en", "prob": 0.9726892113685608 }, null, null, { "label": "en", "prob": 0.9156690835952759 }, null, null, { "label": "en", "prob": 0.8087399005889893 }, null, null, { "label": "en", "prob": 0.8651572465896606 }, null, null, { "label": "en", "prob": 0.9068765640258789 }, null, null, { "label": "en", "prob": 0.907660722732544 }, null, null, null, null, null, null, null, null, { "label": "en", "prob": 0.8360074162483215 }, null, null, { "label": "en", "prob": 0.8608885407447815 }, null, null, { "label": "en", "prob": 0.8859919905662537 }, null, null, null, null, { "label": "en", "prob": 0.8074357509613037 }, { "label": "en", "prob": 0.9241301417350769 }, null, null, null, null, { "label": "en", "prob": 0.9034268856048584 }, null, null, null, { "label": "en", "prob": 0.8521586656570435 }, { "label": "en", "prob": 0.8810476064682007 }, null, null, { "label": "en", "prob": 0.856403648853302 }, { "label": "en", "prob": 0.869942843914032 }, null, { "label": "en", "prob": 0.8491054773330688 }, null, null, { "label": "en", "prob": 0.8315595388412476 }, { "label": "en", "prob": 0.8578805923461914 }, null, null, null, { "label": "en", "prob": 0.9301042556762695 }, null, null, null, null, { "label": "en", "prob": 0.9179839491844177 }, null, { "label": "en", "prob": 0.943942129611969 } ] }
1,863.9
14,969
https://inteligentny-dom-wroclaw.pl/process/May/1038.html
inteligentny-dom-wroclaw.pl
0
[]
null
false
[]
true
2,609,015
Small and medium-sized enterprises (SMEs) play a pivotal role in driving economic growth across the globe, stimulating development, innovation, and competitiveness. According to the World Bank, in emerging markets SMEs generate 7 out of 10 jobs and contribute up to 40 % of national income[1]. However, the impetus for continued growth relies heavily on the protection of the ideas at the heart of every company. The pandemic has reminded us just how fragile the global economy is. Now, more than ever, SMEs must keep pace with both the positive and negative developments brought about by globalisation. One such company seeking to internationalise is BenePura, a family-run cosmetic brand based in Bulgaria, whose ethos revolves around using only natural products, such as rose water, almond oil, ginger, and lavender. The philosophy behind the company and the use of natural ingredients in its recipes sets the brand apart from its competitors. Therefore, it represents a core intellectual property (IP) asset that must be protected, especially when expanding into new and unfamiliar markets. When embarking on new ventures, IP protection provides confidence and reassurance that the ideas and concepts central to the success of any business are safeguarded in situations of market uncertainty. In this regard, their CEO, Milan Nushev, states that ‘IP protection is a must for every company that is serious about its business and wants to expand globally’. Since founding the company in 2018, Mr Nushev says that ‘the main goal of the company is to start selling globally. One way this can happen is through our online stores. We have had orders from Vietnam for example’. Expansion into markets such as South-East Asia opens up vast business opportunities for companies like BenePura. Mr Nushev recognises the enormous potential this area has, adding that ‘most of the countries in the region, if not all, are experiencing rapid development and this is a great moment and opportunity for new brands to enter the market’. BenePura’s online operations allow them to capitalise on markets across the world. Mr Nushev very much believes that the company’s online presence has protected it from the detrimental impact the pandemic has had on many SMEs. He remarks, ‘thankfully, the pandemic hasn’t affected our international sales. I would say that they have increased during the pandemic’. The company’s turnover from sales to the UK market alone increased five-fold between 2020 and 2021, when many European SMEs were struggling. In order to safeguard this growth, Mr Nushev acted proactively and sought advice from the South-East Asia IP SME Helpdesk about registering IP rights for BenePura’s unique products prior to launching operations in new markets. The company’s identity is defined by its all-natural recipes and customer-based approach. The possibility of counterfeiting not only threatens their reputation but can also be damaging to consumers as counterfeit cosmetic products can include harmful substances. Consequently, preventative measures such as seeking help and registering IPRs protect both the company and its customers. Globalisation can be a double-edged sword for SMEs. On the one hand, it promotes inward investment that generates employment in local areas; free trade agreements and institutions facilitate international expansion; and sharing knowledge and solutions promotes development and innovation in all corners of the world. On the other hand, there is greater vulnerability to competition; expensive complications in tax compliance due to unfamiliar infrastructures; and greater exposure to the possibility of counterfeiting and piracy. In pursuing the myriad of opportunities presented by globalisation, SMEs must act to ensure they are resilient to these challenges. Benoît Tardy, IP Business Advisor of the South-East Asia IP SME Helpdesk, explains that ‘this is exactly why the Helpdesk’s motto is #KnowBeforeYouGo. BenePura is a great example of an SME reaching out before they expand to the SEA region! Taking the necessary steps to protect your intellectual property can help ensure sustainable and safe global growth’. Mr Nushev added, ‘IP protection has always been a priority for us and I can say that the information we received from the Helpdesk confirmed that this is the right way to do things’. Prevention is better than the cure. Tiago Guerreiro, Project Leader of IP Key South-East Asia (SEA), an EU-funded project supporting IP rights protection and enforcement across South-East Asia, adds ‘SMEs should think ahead and include IP protection as a crucial part of their expansion plans. And you don’t need to have all the resources in-house. There are plenty of initiatives to help share knowledge and guide SMEs through the procedure’. Having followed the advice given by the Helpdesk and taken steps to prevent IPR infringement before beginning to operate more internationally, Mr Nushev believes when it comes to expanding BenePura, ‘there are no threats, only possibilities’. Thanks to EU initiatives such as the South-East Asia IP SME Helpdesk and IP Key SEA, European SMEs can find out how best to prepare for South-East Asian markets and can consult experts for IP advice free of charge.
{ "warc_headers": { "warc-record-id": "<urn:uuid:f61b6589-b0b6-4b66-84f3-3ef1cc722540>", "warc-date": "2021-11-27T06:01:34Z", "content-type": "text/plain", "content-length": 5295, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:57308a76-351d-41fc-a46d-8b6f16be226d>", "warc-target-uri": "https://intellectual-property-helpdesk.ec.europa.eu/news-events/news/protecting-smes-drivers-global-economic-growth-2021-06-29_en", "warc-block-digest": "sha1:H44SGOKHGWMX72TLNWJE6PGC6EHAUM35" }, "identification": { "label": "en", "prob": 0.9365526437759399 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.92728191614151 }, { "label": "en", "prob": 0.945685625076294 }, { "label": "en", "prob": 0.9604021906852722 }, { "label": "en", "prob": 0.9751262068748474 }, { "label": "en", "prob": 0.9616866111755371 }, { "label": "en", "prob": 0.9080745577812195 }, { "label": "en", "prob": 0.9018453359603882 }, { "label": "en", "prob": 0.9259341955184937 }, { "label": "en", "prob": 0.9130027294158936 }, { "label": "en", "prob": 0.9235667586326599 } ] }
354.8
5,246
https://intellectual-property-helpdesk.ec.europa.eu/news-events/news/protecting-smes-drivers-global-economic-growth-2021-06-29_en
intellectual-property-helpdesk.ec.europa.eu
0
[]
null
false
[]
true
2,609,016
The 210,000-dwt ton capesize bulker Cape Brolga has been delivered from Japan Marine United Corporation's Tsu shipyard to Kawasaki Kisen Kaisha, Ltd. (“K” Line).The newbuild will carry iron ore and coal for JFE Steel Corporation under a long-term consecutive voyage charter contract. Cyber Attack Disrupts Operations at South African Port A cyber attack has disrupted container operations at the South African port of Cape Town, an email seen by Reuters on Thursday said.Durban, the busiest shipping terminal in sub-Saharan Africa, was also affected, three sources with direct knowledge of the matter told Reuters.Cape Town Harbour Carriers Association said in an email to members Car Carrier Grounds Near Cape Charles A 760-foot car carrier vessel ran aground in the Chesapeake Bay, on Tuesday, the U.S. Coast Guard said.Watchstanders at Coast Guard Sector Virginia received a report that the Norwegian-flagged Tirranna ran aground near the Cape Charles Anchorage at approximately 3:30 a.m. The vessel was heading southbound on its way from Baltimore to Savannah, Ga. One Dead, a Dozen Missing, Six Rescued After Lift Boat Capsizes off Louisiana One person has died, a dozen are missing and six others have been rescued after a commercial lift boat used to service oil rigs capsized in hurricane force winds south of Louisiana’s Port Fourchon, the U.S. Coast Guard said on Wednesday.Rescuers in Coast Guard cutters, aircraft and volunteer civilian boats were hunting for the dozen missing people in the Gulf of Mexico after the 234-foot Giant Ship Blocking Suez Canal Partially Refloated A massive container ship blocking Egypt's Suez Canal for nearly a week has been partially refloated, the Suez Canal Authority (SCA) said on Monday, raising hopes the busy waterway will soon be reopened for a huge backlog of ships.The 400-meter (430-yard) long Ever Given became jammed diagonally across a southern section of the canal in high winds early last Tuesday Diggers and Dredgers Struggle to Free Ship Blocking the Suez Canal Suez Canal salvage teams intensified excavation and dredging on Sunday around a massive container ship blocking the busy waterway ahead of attempts to refloat it, with two sources saying work had been complicated by rock under the ship’s bow.Diggers were working to remove parts of the canal’s bank and expand dredging close to the ship’s bow to a depth of 18 meters Race to Dislodge Suez Blockage as Shipping Rates Surge, Vessels Divert Away The Suez Canal stepped up efforts on Friday to free a giant container ship blocking the vital trade waterway that has sent shipping rates for oil product tankers soaring and disrupted the global supply chains for everything from grains to baby clothes.Shipping rates for oil product tankers have nearly doubled after the 400 meter long Ever Given, almost as long as the Empire State Building is high Video: Thirty-one Rescued from Sinking Vessel off Eastern Canada Thirty-one fisherman have been rescued from a fishing vessel that caught fire and began to sink off the coast of Eastern Canada.At 7:05 p.m., Tuesday, the Joint Rescue Coordination Center in Halifax notified watchstanders at the U.S. Coast Guard First District Command Center that the 143-foot Atlantic Destiny was disabled with a fire on board South African Police Seize Almost a Ton of Cocaine Inside a Ship South African police have seized close to a ton of cocaine worth almost 600 million rand ($40 million) from a ship off the Saldanha coast, close to Cape Town, in one of the country’s largest drug busts, authorities said on Tuesday.In an intelligence-driven operation, police and tactical forces boarded the vessel on Monday evening and found 973 blocks of compressed cocaine in three compartments Pirates Who Kidnapped Turkish Sailors Make Contact to Talk Ransom Pirates who kidnapped 15 sailors from a Turkish-crewed container ship in the Gulf of Guinea on Saturday have made their first contact with the shipping company to discuss a ransom, Turkish state media reported on Thursday.“Communication has been established with crew members of the Mozart container ship,” Istanbul-based Boden Shipping, which provides technical management services for the vessel US Blacklists Tankers, Oil Traders Undermining Venezuela Sanctions The United States on Tuesday sanctioned a network of oil trading firms, individuals and vessels that have helped Venezuelan state-run oil company PDVSA sell crude mainly to Asia despite Washington's sanctions on the South American nation.The measure targets a network that the U.S. Treasury Department says helped the administration of President Nicolas Maduro Two LNG Tankers Bound for Australia's Prelude Facility Divert Two liquefied natural gas (LNG) tankers that had initially signaled they would load at Royal Dutch Shell's Prelude floating LNG facility in Australia have diverted elsewhere, ship-tracking data showed on Tuesday.This comes just a week after Shell said that Prelude would resume loading cargoes after production had been suspended for nearly a year following an electrical trip.
{ "warc_headers": { "warc-record-id": "<urn:uuid:bb4dead5-d593-4ad1-b1f2-6ea7ed2cebd4>", "warc-date": "2021-11-27T06:21:22Z", "content-type": "text/plain", "content-length": 5088, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:995e8d96-77db-45d2-8eb2-56af7fc4f3e2>", "warc-target-uri": "https://intelligence.marinelink.com/vessels/vessel/cape-harrison-333720", "warc-block-digest": "sha1:C6IN2MGMULZH53JASZHPEZIFQOACCYWP" }, "identification": { "label": "en", "prob": 0.8761922717094421 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.8537255525588989 }, { "label": "en", "prob": 0.8997047543525696 }, { "label": "en", "prob": 0.9631758332252502 }, null, { "label": "en", "prob": 0.963691234588623 }, null, { "label": "en", "prob": 0.9671235084533691 }, null, { "label": "en", "prob": 0.9362720251083374 }, { "label": "en", "prob": 0.8313698172569275 }, { "label": "en", "prob": 0.9650335311889648 }, { "label": "en", "prob": 0.890720009803772 }, { "label": "en", "prob": 0.9417972564697266 }, { "label": "en", "prob": 0.8392361998558044 }, { "label": "en", "prob": 0.9428772926330566 }, { "label": "en", "prob": 0.8293443918228149 }, { "label": "en", "prob": 0.937694787979126 }, null, { "label": "en", "prob": 0.9681354761123657 }, null, { "label": "en", "prob": 0.9465188980102539 }, null, { "label": "en", "prob": 0.9759585857391357 } ] }
610.3
5,070
https://intelligence.marinelink.com/vessels/vessel/cape-harrison-333720
intelligence.marinelink.com
0
[]
null
false
[]
true
2,609,017
Article Correctness Is Author's Responsibility: OnabotulinumtoxinA for Post-Stroke Spasticity: Treatment Strategies and Limitations August 20, 2018 Author: Neurology Advisor Category: Feed The article below may contain offensive and/or incorrect content. The main constraint to botulinum toxin use for spasticity is dosage limitation. Tagged feed, syndication Search for: Feed Some of the links in the dropdown menus below do not work in some browsers. If so, they will take you to a blank page or an error message. Departments Departments Select Category Authors Select Author Libraries Libraries Select Month November 2021 (6) October 2021 (19) September 2021 (44) August 2021 (33) July 2021 (22) June 2021 (33) May 2021 (20) April 2021 (34) March 2021 (7) February 2021 (25) January 2021 (32) December 2020 (1) November 2020 (24) October 2020 (21) September 2020 (41) August 2020 (11) July 2020 (17) June 2020 (21) May 2020 (35) April 2020 (30) March 2020 (22) February 2020 (18) January 2020 (42) December 2019 (36) November 2019 (37) October 2019 (60) September 2019 (64) August 2019 (37) July 2019 (202) June 2019 (242) May 2019 (319) April 2019 (315) March 2019 (360) February 2019 (288) January 2019 (255) December 2018 (744) November 2018 (669) October 2018 (829) September 2018 (403) August 2018 (300) July 2018 (347) June 2018 (188) May 2018 (161) April 2018 (107) March 2018 (67) February 2018 (53) January 2018 (81) December 2017 (51) November 2017 (66) October 2017 (37) September 2017 (51) August 2017 (34) July 2017 (16) June 2017 (22) May 2017 (40) April 2017 (42) March 2017 (31) February 2017 (11) January 2017 (7) December 2016 (8) November 2016 (9) October 2016 (8) September 2016 (6) August 2016 (6) July 2016 (11) June 2016 (7) May 2016 (3) April 2016 (3) March 2016 (5) February 2016 (3) January 2016 (3) December 2015 (5) November 2015 (4) October 2015 (8) September 2015 (5) August 2015 (3) July 2015 (7) June 2015 (5) May 2015 (4) April 2015 (10) March 2015 (5) February 2015 (5) January 2015 (5) December 2014 (6) November 2014 (3) October 2014 (5) September 2014 (3) August 2014 (3) July 2014 (4) June 2014 (4) May 2014 (6) April 2014 (3) March 2014 (3) February 2014 (4) January 2014 (6) December 2013 (4) November 2013 (4) October 2013 (2) September 2013 (4) August 2013 (3) July 2013 (3) June 2013 (4) May 2013 (3) April 2013 (4) March 2013 (2) February 2013 (4) January 2013 (3) December 2012 (4) November 2012 (4) October 2012 (2) September 2012 (4) August 2012 (4) July 2012 (4) June 2012 (4) May 2012 (5) April 2012 (4) March 2012 (4) February 2012 (5) January 2012 (4) December 2011 (4) November 2011 (5) October 2011 (2) September 2011 (6) August 2011 (2) July 2011 (2) June 2011 (4) May 2011 (4) April 2011 (2) March 2011 (4) February 2011 (4) January 2011 (5) December 2010 (3) November 2010 (2) October 2010 (6) September 2010 (3) August 2010 (6) July 2010 (1) June 2010 (4) May 2010 (3) April 2010 (2) March 2010 (2) February 2010 (2) January 2010 (2) December 2009 (3) November 2009 (1) October 2009 (5) September 2009 (7) August 2009 (7) July 2009 (3) June 2009 (3) April 2009 (2) March 2009 (2) February 2009 (6) January 2009 (3) December 2008 (2) November 2008 (2) October 2008 (3) September 2008 (4) August 2008 (4) July 2008 (5) June 2008 (6) May 2008 (4) April 2008 (3) March 2008 (2) February 2008 (3) January 2008 (4) December 2007 (2) November 2007 (7) October 2007 (1) September 2007 (3) August 2007 (3) July 2007 (4) June 2007 (4) May 2007 (4) April 2007 (5) March 2007 (6) February 2007 (3) January 2007 (7) December 2006 (6) November 2006 (6) October 2006 (6) September 2006 (9) August 2006 (7) Sources Current Articles Article Correctness Is Author's Responsibility: Sleep and Neurodevelopment Symposium: The Earliest Years Article Correctness Is Author's Responsibility: Persistent, Distressing Psychotic-like Experiences Associated with Impairment in Youth Article Correctness Is Author's Responsibility: The NIMH Director’s Innovation Speaker Series: Lessons from My Journey as a Black Scientist, NIH-funded Investigator, DEI Leader, and Mental Health Advocate Article Correctness Is Author's Responsibility: Dr. Tracy Waldeck Named Director of NIMH Division of Extramural Activities Article Correctness Is Author's Responsibility: Researchers Find Disparities in Suicide Risk Among Lesbian, Gay, and Bisexual Adults Article Correctness Is Author's Responsibility: NIMH Workshop on Advancing Training in Suicide Prevention Clinical Care Article Correctness Is Author's Responsibility: NIH, FDA and 15 Private Organizations Join Forces to Increase Effective Gene Therapies for Rare Diseases Article Correctness Is Author's Responsibility: Scientists pinpoint personality traits that increase risk of Alzheimer’s Article Correctness Is Author's Responsibility: NIMH Livestream Event on Seasonal Affective Disorder Article Correctness Is Author's Responsibility: NIMH Livestream Event on Seasonal Affective Disorder Article Correctness Is Author's Responsibility: Why Dune&apos;s litany against fear is good psychological advice Article Correctness Is Author's Responsibility: Guilt, grief and anxiety as young people fear for climate&apos;s future Article Correctness Is Author's Responsibility: How to become more patient with everyday annoyances Article Correctness Is Author's Responsibility: Pediatric groups declare national emergency over children&apos;s mental health Article Correctness Is Author's Responsibility: Technical Assistance Webinar: Effectiveness and Implementation Research for Post-Acute Interventions to Optimize Long-Term Mental Health Outcomes in Low-and Middle-Income Countries Article Correctness Is Author's Responsibility: Technical Assistance Webinar: Effectiveness and Implementation Research for Post-Acute Interventions to Optimize Long-Term Mental Health Outcomes in Low-and Middle-Income Countries Article Correctness Is Author's Responsibility: Foods and activities to fight SAD Article Correctness Is Author's Responsibility: Macrophage Infection by HIV: Implications for Pathogenesis and Cure Article Correctness Is Author's Responsibility: Brain Activity Patterns After Trauma May Predict Long-Term Mental Health
{ "warc_headers": { "warc-record-id": "<urn:uuid:77169292-a54a-4c31-962c-c7084c75ab22>", "warc-date": "2021-11-27T05:24:21Z", "content-type": "text/plain", "content-length": 6213, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:a9f70d70-ad4e-4429-9e9a-2fb54f20618a>", "warc-target-uri": "https://intelquo.com/2018/08/20/onabotulinumtoxina-for-post-stroke-spasticity-treatment-strategies-and-limitations/", "warc-block-digest": "sha1:OELXVWMUPXOCYFU56DJIE5C4CY34B43U" }, "identification": { "label": "en", "prob": 0.8486388921737671 }, "annotations": [ "header" ], "line_identifications": [ null, { "label": "en", "prob": 0.8683082461357117 }, null, { "label": "en", "prob": 0.8029124140739441 }, null, null, null, null, { "label": "en", "prob": 0.9485482573509216 }, { "label": "en", "prob": 0.854946494102478 }, null, { "label": "en", "prob": 0.9331955909729004 }, null, { "label": "en", "prob": 0.9881517887115479 }, null, null, null, { "label": "en", "prob": 0.8491214513778687 }, { "label": "en", "prob": 0.86954665184021 }, { "label": "en", "prob": 0.8793906569480896 }, { "label": "en", "prob": 0.8482204079627991 }, { "label": "en", "prob": 0.8413819670677185 }, { "label": "en", "prob": 0.8040223121643066 }, { "label": "en", "prob": 0.8273035883903503 }, { "label": "en", "prob": 0.8246502876281738 }, { "label": "en", "prob": 0.8246502876281738 }, { "label": "en", "prob": 0.8841078281402588 }, { "label": "en", "prob": 0.8780181407928467 }, { "label": "en", "prob": 0.9446474313735962 }, { "label": "en", "prob": 0.8651556968688965 }, { "label": "en", "prob": 0.818564772605896 }, { "label": "en", "prob": 0.818564772605896 }, { "label": "en", "prob": 0.9444361329078674 }, { "label": "en", "prob": 0.8839030265808105 }, { "label": "en", "prob": 0.8542484641075134 } ] }
12,087.6
6,209
https://intelquo.com/2018/08/20/onabotulinumtoxina-for-post-stroke-spasticity-treatment-strategies-and-limitations/
intelquo.com
0
[]
null
false
[]
true
2,609,018
Article Correctness Is Author's Responsibility: Pediatric groups declare national emergency over children&apos;s mental health October 19, 2021 Author: PsycPORT™: Psychology Newswire Category: Feed The article below may contain offensive and/or incorrect content. The American Academy of Pediatrics (AAP), American Academy of Child and Adolescent Psychiatry (AACAP) and Children's Hospital Association urged lawmakers to act swiftly to address the crisis. Tagged feed, syndication Search for: Feed Some of the links in the dropdown menus below do not work in some browsers. If so, they will take you to a blank page or an error message. Departments Departments Select Category Authors Select Author Libraries Libraries Select Month November 2021 (6) October 2021 (17) September 2021 (44) August 2021 (33) July 2021 (22) June 2021 (33) May 2021 (20) April 2021 (34) March 2021 (7) February 2021 (25) January 2021 (32) December 2020 (1) November 2020 (24) October 2020 (21) September 2020 (41) August 2020 (11) July 2020 (17) June 2020 (21) May 2020 (35) April 2020 (30) March 2020 (22) February 2020 (18) January 2020 (42) December 2019 (36) November 2019 (37) October 2019 (60) September 2019 (64) August 2019 (37) July 2019 (202) June 2019 (242) May 2019 (319) April 2019 (315) March 2019 (360) February 2019 (288) January 2019 (255) December 2018 (744) November 2018 (669) October 2018 (829) September 2018 (403) August 2018 (300) July 2018 (347) June 2018 (188) May 2018 (161) April 2018 (107) March 2018 (67) February 2018 (53) January 2018 (81) December 2017 (51) November 2017 (66) October 2017 (37) September 2017 (51) August 2017 (34) July 2017 (16) June 2017 (22) May 2017 (40) April 2017 (42) March 2017 (31) February 2017 (11) January 2017 (7) December 2016 (8) November 2016 (9) October 2016 (8) September 2016 (6) August 2016 (6) July 2016 (11) June 2016 (7) May 2016 (3) April 2016 (3) March 2016 (5) February 2016 (3) January 2016 (3) December 2015 (5) November 2015 (4) October 2015 (8) September 2015 (5) August 2015 (3) July 2015 (7) June 2015 (5) May 2015 (4) April 2015 (10) March 2015 (5) February 2015 (5) January 2015 (5) December 2014 (6) November 2014 (3) October 2014 (5) September 2014 (3) August 2014 (3) July 2014 (4) June 2014 (4) May 2014 (6) April 2014 (3) March 2014 (3) February 2014 (4) January 2014 (6) December 2013 (4) November 2013 (4) October 2013 (2) September 2013 (4) August 2013 (3) July 2013 (3) June 2013 (4) May 2013 (3) April 2013 (4) March 2013 (2) February 2013 (4) January 2013 (3) December 2012 (4) November 2012 (4) October 2012 (2) September 2012 (4) August 2012 (4) July 2012 (4) June 2012 (4) May 2012 (5) April 2012 (4) March 2012 (4) February 2012 (5) January 2012 (4) December 2011 (4) November 2011 (5) October 2011 (2) September 2011 (6) August 2011 (2) July 2011 (2) June 2011 (4) May 2011 (4) April 2011 (2) March 2011 (4) February 2011 (4) January 2011 (5) December 2010 (3) November 2010 (2) October 2010 (6) September 2010 (3) August 2010 (6) July 2010 (1) June 2010 (4) May 2010 (3) April 2010 (2) March 2010 (2) February 2010 (2) January 2010 (2) December 2009 (3) November 2009 (1) October 2009 (5) September 2009 (7) August 2009 (7) July 2009 (3) June 2009 (3) April 2009 (2) March 2009 (2) February 2009 (6) January 2009 (3) December 2008 (2) November 2008 (2) October 2008 (3) September 2008 (4) August 2008 (4) July 2008 (5) June 2008 (6) May 2008 (4) April 2008 (3) March 2008 (2) February 2008 (3) January 2008 (4) December 2007 (2) November 2007 (7) October 2007 (1) September 2007 (3) August 2007 (3) July 2007 (4) June 2007 (4) May 2007 (4) April 2007 (5) March 2007 (6) February 2007 (3) January 2007 (7) December 2006 (6) November 2006 (6) October 2006 (6) September 2006 (9) August 2006 (7) Sources Current Articles Article Correctness Is Author's Responsibility: Sleep and Neurodevelopment Symposium: The Earliest Years Article Correctness Is Author's Responsibility: Persistent, Distressing Psychotic-like Experiences Associated with Impairment in Youth Article Correctness Is Author's Responsibility: The NIMH Director’s Innovation Speaker Series: Lessons from My Journey as a Black Scientist, NIH-funded Investigator, DEI Leader, and Mental Health Advocate Article Correctness Is Author's Responsibility: Dr. Tracy Waldeck Named Director of NIMH Division of Extramural Activities Article Correctness Is Author's Responsibility: Researchers Find Disparities in Suicide Risk Among Lesbian, Gay, and Bisexual Adults Article Correctness Is Author's Responsibility: NIMH Workshop on Advancing Training in Suicide Prevention Clinical Care Article Correctness Is Author's Responsibility: NIH, FDA and 15 Private Organizations Join Forces to Increase Effective Gene Therapies for Rare Diseases Article Correctness Is Author's Responsibility: Scientists pinpoint personality traits that increase risk of Alzheimer’s Article Correctness Is Author's Responsibility: NIMH Livestream Event on Seasonal Affective Disorder Article Correctness Is Author's Responsibility: Why Dune&apos;s litany against fear is good psychological advice Article Correctness Is Author's Responsibility: Guilt, grief and anxiety as young people fear for climate&apos;s future Article Correctness Is Author's Responsibility: How to become more patient with everyday annoyances Article Correctness Is Author's Responsibility: Pediatric groups declare national emergency over children&apos;s mental health Article Correctness Is Author's Responsibility: Technical Assistance Webinar: Effectiveness and Implementation Research for Post-Acute Interventions to Optimize Long-Term Mental Health Outcomes in Low-and Middle-Income Countries Article Correctness Is Author's Responsibility: Foods and activities to fight SAD Article Correctness Is Author's Responsibility: Macrophage Infection by HIV: Implications for Pathogenesis and Cure Article Correctness Is Author's Responsibility: Brain Activity Patterns After Trauma May Predict Long-Term Mental Health Article Correctness Is Author's Responsibility: Dementia signs are in the blood, researchers say Article Correctness Is Author's Responsibility: The NIMH Director’s Innovation Speaker Series: Life Through a Navajo Lens Beyond the Navajo Reservation Article Correctness Is Author's Responsibility: Picky eating, social phobia often linked in college students
{ "warc_headers": { "warc-record-id": "<urn:uuid:1c4c4247-28ae-4ba4-a780-9773a2f94cdb>", "warc-date": "2021-11-27T06:08:20Z", "content-type": "text/plain", "content-length": 6366, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:5e04a98b-8247-4fc9-9e59-b37b12876c10>", "warc-target-uri": "https://intelquo.com/2021/10/19/pediatric-groups-declare-national-emergency-over-childrenaposs-mental-health/", "warc-block-digest": "sha1:4WS6GNCFO6JT3DNFB3AAIVKY4WKEJYXY" }, "identification": { "label": "en", "prob": 0.8530063629150391 }, "annotations": [ "header" ], "line_identifications": [ { "label": "en", "prob": 0.8651556968688965 }, { "label": "en", "prob": 0.8857839107513428 }, null, { "label": "en", "prob": 0.9193252325057983 }, null, null, null, null, { "label": "en", "prob": 0.9485482573509216 }, { "label": "en", "prob": 0.854946494102478 }, null, { "label": "en", "prob": 0.9331955909729004 }, null, { "label": "en", "prob": 0.9881484508514404 }, null, null, null, { "label": "en", "prob": 0.8491214513778687 }, { "label": "en", "prob": 0.86954665184021 }, { "label": "en", "prob": 0.8793906569480896 }, { "label": "en", "prob": 0.8482204079627991 }, { "label": "en", "prob": 0.8413819670677185 }, { "label": "en", "prob": 0.8040223121643066 }, { "label": "en", "prob": 0.8273035883903503 }, { "label": "en", "prob": 0.8246502876281738 }, { "label": "en", "prob": 0.8841078281402588 }, { "label": "en", "prob": 0.8780181407928467 }, { "label": "en", "prob": 0.9446474313735962 }, { "label": "en", "prob": 0.8651556968688965 }, { "label": "en", "prob": 0.818564772605896 }, { "label": "en", "prob": 0.9444361329078674 }, { "label": "en", "prob": 0.8839030265808105 }, { "label": "en", "prob": 0.8542484641075134 }, { "label": "en", "prob": 0.8910451531410217 }, null, { "label": "en", "prob": 0.9619350433349609 } ] }
11,329.8
6,358
https://intelquo.com/2021/10/19/pediatric-groups-declare-national-emergency-over-childrenaposs-mental-health/
intelquo.com
0
[]
null
false
[]
true
2,609,019
The check out page will ask for a postcode, if the supporter puts in their Area/Zip code, this will be accepted by our payment provider! Please make sure you are not putting ANY spaces in this section as it may cause errors in that field. Postal address for reward If pledging on a reward that needs to be posted, you will need to input the delivery address. If you are outside the UK or if your address is not being shown, you will need to input your address manually. Please do not click the find UK Address button in these circumstances If you are still having any trouble pledging you can also check out this guide. If you continue to get problems please contact the support team with a screenshot of the error message you're seeing and we can provide support!
{ "warc_headers": { "warc-record-id": "<urn:uuid:c240d5ba-4122-4eef-8154-155d14584129>", "warc-date": "2021-11-27T05:08:32Z", "content-type": "text/plain", "content-length": 764, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:045fce77-8e82-49a4-8c79-ba543b3e929f>", "warc-target-uri": "https://intercom.help/crowdfunder/en/articles/5230756-my-address-is-not-being-recognised-on-my-pledge", "warc-block-digest": "sha1:J3QH27NKPGKUTPV7Z6MBZTBOPEMIIITA" }, "identification": { "label": "en", "prob": 0.8532503843307495 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9306817054748535 }, { "label": "en", "prob": 0.9704400897026062 }, { "label": "en", "prob": 0.9222938418388367 }, { "label": "en", "prob": 0.9558151960372925 }, null, { "label": "en", "prob": 0.9556185007095337 }, { "label": "en", "prob": 0.8933275938034058 } ] }
706.9
764
https://intercom.help/crowdfunder/en/articles/5230756-my-address-is-not-being-recognised-on-my-pledge
intercom.help
0
[]
null
true
[]
false
2,609,020
For Earth Day 2018, MasterpieceVR partnered with Microsoft and a collective of artists with the aim of inspiring artists everywhere to imagine and create an environmentally sustainable city. Artists from around the world have submitted 3D models sculpted in MasterpieceVR and we will be sharing their creations and announcing the Grand Prize Winner, Best Concept and Best Model. Come join us, see some cool art and meet the artists! Recording Disclaimer: By entering this event, you hereby irrevocably grant AltspaceVR and Microsoft and its affiliates, agents, and licensees, the right, but not the obligation, to photograph and record your avatar, likeness, voice, and/or username and to own, license, assign, and use the same (or any portion) in the production, exhibition, and promotion of the event, AltspaceVR or other Microsoft products and services without compensation, in any media and on any platform now known or hereafter devised (including the Internet) throughout the universe in perpetuity. You waive the right to bring action of any kind in law or equity against Microsoft. If you wish to not be recorded, simply leave the event. (But we hope you’ll stay!) Don't have AltspaceVR? AltspaceVR is the easiest way to attend free live events and meet up with people in VR. Find out more here © 2021 by Microsoft. AltspaceVR and altvr are trademarks of AltspaceVR, Inc. All other trademarks are the property of their respective owners. All rights reserved.
{ "warc_headers": { "warc-record-id": "<urn:uuid:cbd9e1b6-322e-4b7c-a914-e64606620950>", "warc-date": "2021-11-27T06:08:28Z", "content-type": "text/plain", "content-length": 1469, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:ce85d376-2b3b-4e18-8bec-f833a1ad04ed>", "warc-target-uri": "https://internal.altvr.com/events/960651502039335695", "warc-block-digest": "sha1:6DLVMKFZT4DB7Q6IN4ZNU4PMCKDTAVGO" }, "identification": { "label": "en", "prob": 0.9116478562355042 }, "annotations": [ "short_sentences" ], "line_identifications": [ { "label": "en", "prob": 0.9117359519004822 }, { "label": "en", "prob": 0.9725612998008728 }, { "label": "en", "prob": 0.9335715770721436 }, { "label": "en", "prob": 0.9162972569465637 }, { "label": "en", "prob": 0.871783971786499 }, { "label": "en", "prob": 0.9024478197097778 }, { "label": "en", "prob": 0.9711610078811646 }, null, { "label": "en", "prob": 0.9065470099449158 } ] }
513.6
1,466
https://internal.altvr.com/events/960651502039335695
internal.altvr.com
0
[]
null
false
[]
true
2,609,021
US President Donald Trump has hit back at claims he is not mentally fit to hold office, calling himself "a very stable genius". Earlier today, Trump was accused of being "intellectually incapable" of holding office, with most senior White House staff coming to the conclusion he "can't function in this job as president", according to the author of a controversial new book. Published yesterday, Michael Wolff's Fire and Fury: Inside the Trump White House, concluded the president is not fit to do the job. But Trump took to social media this lunchtime, saying: "My two greatest assets have been mental stability and being, like, really smart… I think that would qualify as not smart, but genius….and a very stable genius at that!" ….Actually, throughout my life, my two greatest assets have been mental stability and being, like, really smart. Crooked Hillary Clinton also played these cards very hard and, as everyone knows, went down in flames. I went from VERY successful businessman, to top T.V. Star….. — Donald J. Trump (@realDonaldTrump) January 6, 2018 ….to President of the United States (on my first try). I think that would qualify as not smart, but genius….and a very stable genius at that! — Donald J. Trump (@realDonaldTrump) January 6, 2018 Read more: Trump says Bannon "lost his mind" after he was fired Transformation Wolff had earlier told the BBC that senior staff initially were open-minded to Trump's administration, believing they should respect the will of the American public. However, a "transformation" of opinion took place, he said. "Over this period I witnessed, over this seven or eight months, they [White House staff] all came to the conclusion gradually at first and then faster and faster that something was unbelievably amiss here. That this was more peculiar than they ever imagined it could be. "And in the end, they had to look at Donald Trump and say: 'No, this man can't function in this job as president.'" I think he is intellectually incapable of being president of the United States. He doesn't read. He doesn't listen. He's profoundly incurious. He is just interested in what he is interested in and isn't interested in the larger problems of the world. Is he experiencing issues fundamentally – physical, mental issues? I can't answer that but I can only say it is a subject discussed in the White House. It is subject of concern because his repetitions have become so much more frequent that it is that people find themselves around him saying: 'Oh my god, what are we going to do'. Trump has blasted the book, which queries his mental state, as "full of lies" and brandished Wolff "a total loser".
{ "warc_headers": { "warc-record-id": "<urn:uuid:4eca6155-8887-4d39-884f-3878259cc651>", "warc-date": "2021-11-27T05:05:48Z", "content-type": "text/plain", "content-length": 2664, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:4dced79c-4b73-43dd-878c-67021d617380>", "warc-target-uri": "https://international-africa.com/2018/01/06/trump-i-am-a-very-stable-genius/", "warc-block-digest": "sha1:DEBMPIUY5ODDW3KR5Z6QD5ALUPBWCDOM" }, "identification": { "label": "en", "prob": 0.9756162762641907 }, "annotations": null, "line_identifications": [ { "label": "en", "prob": 0.9619881510734558 }, { "label": "en", "prob": 0.976145327091217 }, { "label": "en", "prob": 0.9496013522148132 }, { "label": "en", "prob": 0.9868835806846619 }, { "label": "en", "prob": 0.9875156879425049 }, { "label": "en", "prob": 0.8749942183494568 }, { "label": "en", "prob": 0.9931414127349854 }, { "label": "en", "prob": 0.8749942183494568 }, { "label": "en", "prob": 0.9983469843864441 }, null, { "label": "en", "prob": 0.9909433126449585 }, { "label": "en", "prob": 0.9971017837524414 }, { "label": "en", "prob": 0.9871178269386292 }, { "label": "en", "prob": 0.9889405369758606 }, { "label": "en", "prob": 0.9945058822631836 }, { "label": "en", "prob": 0.9905834794044495 }, { "label": "en", "prob": 0.9889600872993469 } ] }
383.4
2,646
https://international-africa.com/2018/01/06/trump-i-am-a-very-stable-genius/
international-africa.com
0.241119
[ [ 564955262921, 564955263559 ] ]
null
true
[ 431992493 ]
false
2,609,022
Even as the murder of George Floyd unleashed a deluge of declamations about white supremacy, wokeness, critical race theory, and other racial obsessions in the United States, a hard-won feeling of "been there, done that" kept me from jumping in. "It's difficult to say anything about race that hasn't been said before; difficult to say anything that isn't at least half true; and still more difficult to mean whatever one does say amid the fog of half-truths and euphemisms enveloping the subject," I told an interviewer for the Atlantic in 1997, the year I published Liberal Racism: How Fixating on Race Subverts the American Dream. The book's title was partly an effort to cut through that fog and find a clearer, broader understanding of what I believe is our American destiny to transcend race as we know it. Liberal Racism is only partly an indictment of liberals. It's also a protest against making racial identity a central organizing principle of our public life. The new U.S. Census strongly suggests that there's no longer a civic-cultural norm in "whiteness" but also that no official racial color-coding can tell us who "we" are. I developed that conviction after 1977, when I put a new Harvard doctorate in my back pocket and left Cambridge for five years in central Brooklyn, where I was the only white tenant in an eight-unit walk-up and wrote for inner-city weeklies, the Village Voice, and Dissent. Working and living with African Americans who held some power over my prospects boiled out a Cambridge lefty's racial romanticism and left deeper interracial affinities and bonds, as I recount in The Closest of Strangers (1990). I explained why some well-intentioned "progressive" notions about race are wrong, if not indeed racist. I learned that my own aspirations to an American, civic-republican identity were shared pretty deeply by Black neighbors and co-workers who feel diminished by over-solicitous liberal (and ideological leftist) stereotyping almost as much as by the conservative racism that is the prime evil. Progressives who resist acknowledging this were surprised this year when many Black New York Democratic voters chose Eric Adams, a former police officer and centrist politician, over a more "woke" Black candidate as their party's mayoral nominee, as New York Times columnist Thomas Edsall reported. Liberal Racism's provocative title came to me when the late Brooklyn Congressman Major Owens—a true apostle of Martin Luther King Jr.'s faith in "the content of our character" over skin color—told a small group of other leftist journalists and activists that "liberals are sometimes the worst racists." His remark got me thinking about what I'd been witnessing in my activist-journalist rounds, and Liberal Racism became an indictment of "political correctness," "cancel culture," and "virtue signaling," long before those terms were in vogue. A lot of what passes as racial identity politics, I wrote, "no longer curbs discrimination; it invites it. It does not expose racism. It recapitulates and, sometimes, reinvents it. Its tortured racial etiquette begets racial epithets, as surely as hypocrisy begets hostility." Many Black reviewers of the book agreed. Working as a journalist in Brooklyn in the late 1970s, long before cell-phone cameras caught white cops killing unarmed Black youth, I knew that it was happening, and also that Black youth were killing one another. Taking a cue from Owens, I worried that many self-avowedly "anti-racist" liberals and progressives were clinging so tightly to what we now call "multiculturalist" and "woke" protocols that they'd stopped envisioning a post-racial, civic-republican culture that would be thick and rich enough for anyone to thrive in, where "people of color" would be recognized by all as bearers of virtues and rights that aren't "of color" at all. Diversity would be celebrated as a consequence of American, civic-republican fairness, not as its bureaucratic precondition. The name "Black Lives Matter" gestured in this humanist direction, almost plaintively at first, even when not all BLM supporters lived up to it. In an excerpt from Liberal Racism published by Harper's, I insisted that Blackness in America has meaning and value mainly because it's been nourished defensively against the abduction, enslavement, and ongoing murders and dispossession of Blacks by champions of a "whiteness" that seeks its own empty coherence by keeping others down. When I was making this argument in 1997, Harvard Law Professor Randall Kennedy was warning similarly against racializing public discourse and color-coding our public policies. I endorsed Kennedy's rigorous opposition to making ethno-racial affinities a central organizing principle of American life, and I sparred in several venues with his sometime adversary and former law-school mentor Derrick Bell, a progenitor of critical race theory and a pessimist about racism whose thinking anticipated that of Ta-Nehisi Coates. Brooklyn taught me that precisely because racism is as subtly pervasive as it is brutal, it leaves both its victims and its perpetrators little margin for error in paroxysms of grievance such as those that erupted in the cases of Howard Beach, Tawana Brawley, and O. J. Simpson. No successful movement for racial and social justice can be built on lies, vilification of innocent parties, and intimidation of critics with legitimate differences of opinion. This vicious circle amounts to a kind of shell game: justice is always somewhere else Yet racism's ubiquity and sheer force in the daily personal experiences of Black Americans continues to drive such eruptions. The historian Jason Sokol's All Eyes Are Upon Us is representative of other studies showing that whites' often-sincere vows of racial fairness coexist with complicity in structural racism: Black parents who hope that a good education will bring their children closer to equality know that because public education is locally controlled, it matters where they live. But finding the right neighborhood requires getting past real-estate agents and landlords who associate the "wrong" skin color with low property values. Reassuring them requires having a good job and work habits, but that requires having a decent education. This vicious circle amounts to a kind of shell game: justice is always somewhere else. Whites on school boards or in real estate can claim to have clean hands, their actions being dictated by market necessities. Even in self-avowedly liberal environments such as Yale, where I taught undergraduates for twenty-one years, I learned that Black students feel intense pressure not only from the outsized hopes of their families that they'll set "a good example," but also from well-meaning whites' "model minority" expectations. At the same time, however, on campuses and workplaces near high-crime areas, whites' association of Blackness with violent crime makes Black students fear not only crime itself but also the stigma of suspicion. A Black male undergraduate entering a gated college quad just behind a white female fellow student, especially after dark, must brace himself for the indignity of her quickened pace and sharp, over-the-shoulder glance. You'd have to have a heart of stone not to understand why nineteen-year-old Black and Hispanic students call out for someone or something to help them feel safe and welcome in a campus community that promised them safety and belonging. Structural racism only reinforces the pressure: a Yale student from Tehran, where laborers and service workers don't look different from the rest of the population, told me how strange he found it to see an overwhelmingly Black workforce serving an overwhelmingly non-Black population at Yale. At least 70 percent of the university's custodial and cafeteria workers are Black, although fewer than 8 percent of its faculty are. Black people also observe incomprehension on the blank faces of white people who seem to regard them, sympathetically or accusingly, as survivors and residual carriers of damage about which white people may feel uneasy, or even guilty. Because the United States abducted and plunged into its midst millions of Black people even while professing "self-evident" truths about human dignity and rights, it gave them the highest imaginable stakes in getting the country to live up to its stated creed. That has made some Black people the creed's most eloquent exponents and others its sharpest critics. "In every situation you enter, your race comes with definitions and expectations you didn't expect," a Black student once told me. "It's draining. You constantly have to push through these instances of people's stupidity." Such intrusions into every Black person's mental space would strain the moral imagination of even the rare white person who's lived or worked in an overwhelmingly Black environment, as too few white people who write about Black protests have done. Distance has also driven some white liberals and leftists into a politics of self-definition through moralistic posturing. A local chapter of the Democratic Socialists of America canceled a scheduled lecture by the Black political scientist Adolph Reed Jr. because he intended to emphasize class injustices over racial ones. Leftist "anti-racist" sectarianism does nothing to strengthen a democratic civic culture and often ends up compounding racism itself. Yet even my own doubts about anti-racist histrionics don't explain fully my feeling of "déjà vu all over again" amid the recent protests and the new protocols. America's republic and civil society have been shaken profoundly by rising global economic, technological, cultural, demographic, and biomedical riptides that can't be blamed on racism, even when racism maldistributes their damages and rewards. We can only hope that these shocks will spur new generations of Americans to shed myopic racialist assumptions, not because racism doesn't still have its own terrifying momentum but because the other powerful forces I've just mentioned are scrambling racial distinctions as fatefully as they're scrambling sexual ones. Why don't people who tout gender and sexual fluidity question their own acceptance of sharply drawn racial identities, even as millions of biracial children change American demographics and self-understandings? The global disruptions of old racial and sexual patterns are generating yearnings for new kinds of social belonging that won't be satisfied by ethno-racial and sexual story lines that have lost their credibility. We need new narratives—call them myths or constitutive fictions—because we remain story-telling animals, moving together through time and struggling to render our movements as "history." Young people especially need what anthropologists call "rites of passage" to adulthood—daunting tests, ratified by elders, of their prowess and dedication to intergenerational communities in their formative years. Such coming-of-age experiences induct them into full, responsible membership in society. "Contracts between us are not enforced by laws or economic incentives," explains the sociologist Alan Wolfe; "people adhere to social contracts when they feel that behind them lies a credible story of who they are and why their fates are linked to those of others." Without a credible collective story, a pluralist society loses antibodies against challenges from beyond and bureaucratized or ideological color-coding from within. In 1920 the philosopher George Santayana noted that Americans "have all been uprooted from their several soils and ancestries and plunged together into one vortex, whirling irresistible in a space otherwise quite empty. To be an American is of itself almost a moral condition, an education and a career." Precisely because the United States has become racially, ethnically, and religiously more complex than institutional color-coding can comprehend, we should be working overtime on narratives, principles, habits, and bonds that transcend racial groupism. While Santayana was imagining America's whirling vortex a century ago, the republic was generating a civic-republican ethos—albeit mostly for whites—that the literary historian Daniel Aaron characterized as "ethical and pragmatic, disciplined and free." That balancing of ethical and pragmatic calculations has been advanced, with a bit of fakery and faith, by people as different as the novelist Ralph Ellison and the actor Jack Nicholson. Americans embody the ethos sketched by Aaron when, for example, members of a jury suspend their varied ethno-racial preconceptions to work together at judging defendants and victims according to transracial standards of fact and law. Recently, though, new disruptions have unsettled this ethos. When talking about racial identity, conservatives and progressives have switched sides. Before World War II united Americans against fascist racism, conservative elites sought order and stability by keeping every ethno-racial group in its place, with a label on its face: Anglo-Saxon leaders treated even other whites as members of subordinate races—Slavic, Celtic, Hebrew, Italian, and so on. People of color were kept separate and suppressed. Liberals and leftists struggled to strengthen individuals' freedom from such preconceptions and defensive group reactions. At the peak of this liberal civic vision in the early 1970s, the Smothers Brothers crooned "The Lord Is Colorblind" to what CBS producers must have assumed was a reasonably receptive American audience. Colorblindness," indifferent to context, reinforces racial inequities more than it mitigates them Sometime in the 1980s, conservatives, too, proclaimed themselves colorblind, often unctuously and hypocritically, insisting that the only color that really mattered to them was dollar green. Many liberals, by contrast, began to bow to the older conservative racialist assumption—rendered in 1978 by Justice Lewis F. Powell Jr. in the Bakke affirmative-action case—that a particular skin color or surname marks its bearer as a carrier of a particular culture, justifying that individual's admission to a university not on racially reparative or remedial grounds but in order to "diversify" everyone's educational and cultural experience. That only puts persons and groups back in their ethno-racial "places," with labels on their faces. Against this misstep, Chief Justice John Roberts wielded the new conservative pretensions to colorblindness in a 2007 Seattle school district case, writing that "the way to stop discrimination by race is to stop discriminating by race." But Roberts's quasi-Cartesian rejection of the supposed racial privilege in affirmative-action programs only strengthened class privilege for students who were well-funded and well-prepared. Such "colorblindness," indifferent to context, reinforces racial inequities more than it mitigates them. Today, operating under the twin rubrics of "meritocracy" and "diversity," elite universities have become career-networking centers and cultural galleria for a more "colorful" elite managerial class. Those grim, continuing inequities were anticipated well enough by Justice Harry A. Blackmun in the same Bakke case in which Justice Powell had introduced the "diversity" rationale for affirmative action. Blackmun offered a different rationale for a racially reparative, remedial policy: "In order to get beyond racism, we must first take account of race. There is no other way. And in order to treat some persons equally, we must treat them differently." In Liberal Racism, I credited Blackmun's opinion but suggested that he might better have written "sometimes" or "temporarily" instead of urging us to "first" take account of race. If we really do want to "get beyond racism," let's not put racial remedies into a cultural harness, as do "diversity" protocols and even some racially remedial initiatives—for example, racial election districting and blocking transracial adoptions (supposedly to ensure each infant a "culturally consistent" environment). Randall Kennedy's forthcoming book Say It Loud!: On Race, Law, History, and Culture warns similarly that diversity's racially coded, "looks like America" façade only "normalizes practices that inevitably subordinate claims of individual merit to claims of racial group pluralism." We'll never get beyond racism if we keep indulging the presumption that people of a particular color think alike, along color-coded lines. Instead, we need to envision racial differences receding in importance until they signify little more than differences in white people's hair and eye colors, which no longer support assumptions about their bearers' abilities or beliefs, let alone their moral worth. Unfortunately, clinging to color and racial physiognomy is still so overdetermined a response to inequality in our economically unjust society that a post-racial America seems impossible even to many of us who wish for it. We tend to excuse ethno-racial flag-wavers and censorious monitors of other people's presumed racism as the canaries in a coal mine, merely registering tremors of a civic implosion they didn't cause. Unlike the tweeting of canaries, however, the demands of the flag-wavers and the monitors must be assessed and judged, lest they distort transracial narratives of common belonging and obligation that serve a larger public good. Public adhesives must be strong enough to offset racial and sexual identities that proclaim "I am excluded, therefore I am" and that diminish individuals' chances of "finding themselves" in serving a larger common good. Writing in Dissent, the novelist and editor Brian Morton rightly faults ethno-racial monitors who admonish people from "other" (usually white) backgrounds to "stay in your lane" instead of appropriating other communities' cultural resources. Staying in one's lane in deference to cancel culture only makes American pluralism more brittle. It induces many whites to expect Blacks to enter the public sphere making either vengeful accusations and extortionate demands that racism supposedly justifies or, more constructively, offering the searing moral force and democratic vision of a W.E.B. Du Bois, Frederick Douglass, or Martin Luther King Jr. Of white people's high and low expectations, Black people have borne more than enough. The L.A. Clippers coach Doc Rivers sounded almost plaintive about it as he tearfully recounted watching last year's Republican National Convention: "All you hear is Donald Trump and all of them talking about fear…. [But] we're the ones getting killed…. It's amazing why we keep loving this country, and this country does not love us back. It's really so sad…. If you watch that video [of George Floyd's killing], you don't need to be Black to be outraged. You need to be American and outraged." The struggle for acknowledgment of Black Americans' full belonging is one of the most powerful epics of unrequited love in the history of the world. Even if every broken heart could be mended and every theft of opportunity redressed, ethno-racial communities would and should continue to honor the endurance, resilience, and resistance that have sustained their members under conditions that even the worst-off whites can barely imagine. Ultimately, though, Santayana, King, and Owens were right: if the United States is to survive as a liberal-democratic republic, it will have to transcend racialism in its shared public life. To see more Black Americans running military machines, multinational corporations, media organizations, money markets, and governments will be to see the angels of Blackness withdraw along with the demons. White Americans will have to give up both penitential, racialist condescension and racist contempt and hypocrisy. And we will all have to acknowledge that this country's redemption won't come through making ethno-racial identity anything more than a temporary expedient on the way to a post-racial political and civic life. Global economic and demographic riptides are carrying us—especially millions of young biracial Americans—irreversibly beyond whiteness or Blackness as vessels of hope. We're not beyond them yet, but there's no turning back. Jim Sleeper, a writer on American civic culture and a former columnist for the New York Daily News, taught political science at Yale from 1999 to 2021. This article first appeared in Commonweal Magazine Newsletter Get the latest from La Croix International. Sign up to receive our daily newsletter. You may also like Religion Shafts of light Religion Church shamed again by the crimes of abuse Religion Not of this age Religion Successor of missing Greek Orthodox bishop appointed in Aleppo Religion Theologians affirm 'Black Theology Matters' at symposium SUPPORT LA CROIX INTERNATIONAL’S COMMUNITY OF READERS Support La Croix International's unique blend of international Catholic journalism by making it available to people in Asia and Africa who can't afford a subscription and often don't have credit cards to pay for it either. DONATE NOW #One kind word Politics Vatican’s ‘foreign minister’ goes to Moscow Pope meets Palestinian president, affirms two-state solution Nicaraguan Catholic bishops reiterate call for "authentic democracy" Iraqi cardinal laments “political blockage” over inconclusive elections Scrapping the Color Code Most Read Astoundingly candid bishop says Catholic Church is a shattered remains of its former self The pope of impossible journeys Pope Francis doesn't really want a Church that is poor Benedict XVI is still welcoming guests to his Vatican home Editorials 26 Nov Dignity for migrants 19 Nov Reasons for making an exception 09 Nov A turning point 02 Nov Sex abuse in the Church and collective responsibility 29 Oct Time is running out Letter From Rome The not-so-Eternal City Speaking frankly about Frank Pope Francis doesn't really want a Church that is poor Bitterness in the face of adversity, even in the Church Rome's outstanding preacher, teacher and friend of the poor Culture The French engineer who became a Friar of the South Bronx Babylon & Boogie Street A most revealing Eucharist Vatican's 2021 Nativity scene from the Andes; Christmas tree from Italy Chaldeans in Iraq to set up museum with manuscripts saved during IS occupation Ethics 16 Nov Do No Harm 21 Oct Francis has shifted teaching on just war theory, US military instructors say 20 Oct Holy See at OSCE calls for concerted efforts in fight against corruption 13 Oct Vatican can’t be sued for abuse, rules a European court 06 Oct Vatican "foreign minister" calls for a new ethics of the common good Environment Meet the US ecologist who explained to Pope Francis why coral reefs are crucial for the planet A prophetic challenge to rich nations, a call for climate justice Ohio congregation looks to martyred nun Stang as guide to implementing Laudato si' COP26 climate summit made progress but came up short, Catholic agencies say Time is running out, pope tells COP26 and warns of God's judgement if it fails | Catholic Digest | UCAN | Living in faith | La Croix Africa | La Croix español About Us | Contact Us| Newsletter Sign-up| Donate| Terms and Conditions| FAQ| La Croix| Confidentiality Policy| Sitemap
{ "warc_headers": { "warc-record-id": "<urn:uuid:9b3c7ebe-1c37-4682-ba4d-f6f86b1b25cb>", "warc-date": "2021-11-27T06:23:39Z", "content-type": "text/plain", "content-length": 23309, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:531db541-c3f0-4671-974c-af16938afdd7>", "warc-target-uri": "https://international.la-croix.com/news/politics/scrapping-the-color-code/15055?utm_source=UCAN&utm_campaign=From-our-partners&utm_medium=Referral", "warc-block-digest": "sha1:MVYJNBPL4QGRT6FCNOLK6H7GDIT6H646" }, "identification": { "label": "en", "prob": 0.9151669144630432 }, "annotations": [ "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9342994093894958 }, { "label": "en", "prob": 0.9796009659767151 }, { "label": "en", "prob": 0.9890539050102234 }, { "label": "en", "prob": 0.975590705871582 }, { "label": "en", "prob": 0.9620301127433777 }, { "label": "en", "prob": 0.9423070549964905 }, { "label": "en", "prob": 0.9054509997367859 }, { "label": "en", "prob": 0.9353691935539246 }, { "label": "en", "prob": 0.9901533126831055 }, { "label": "en", "prob": 0.9751183986663818 }, { "label": "en", "prob": 0.8899046778678894 }, { "label": "en", "prob": 0.9903481602668762 }, { "label": "en", "prob": 0.9663130044937134 }, { "label": "en", "prob": 0.9384555220603943 }, { "label": "en", "prob": 0.9928969740867615 }, { "label": "en", "prob": 0.9836329817771912 }, { "label": "en", "prob": 0.9742307066917419 }, { "label": "en", "prob": 0.9436279535293579 }, { "label": "en", "prob": 0.9820539951324463 }, { "label": "en", "prob": 0.9348992705345154 }, { "label": "en", "prob": 0.9659316539764404 }, { "label": "en", "prob": 0.9771548509597778 }, { "label": "en", "prob": 0.8915212750434875 }, { "label": "en", "prob": 0.8823333382606506 }, { "label": "en", "prob": 0.9265108108520508 }, { "label": "en", "prob": 0.9595306515693665 }, { "label": "en", "prob": 0.9359891414642334 }, { "label": "en", "prob": 0.9716712236404419 }, { "label": "en", "prob": 0.9824429154396057 }, { "label": "en", "prob": 0.9653232097625732 }, { "label": "en", "prob": 0.9623112678527832 }, { "label": "en", "prob": 0.976464569568634 }, { "label": "en", "prob": 0.9298286437988281 }, { "label": "en", "prob": 0.9750808477401733 }, { "label": "en", "prob": 0.9585642218589783 }, { "label": "en", "prob": 0.9679629802703857 }, { "label": "en", "prob": 0.9725915193557739 }, { "label": "en", "prob": 0.9904709458351135 }, { "label": "en", "prob": 0.9771572947502136 }, { "label": "en", "prob": 0.9328903555870056 }, { "label": "en", "prob": 0.9623704552650452 }, { "label": "en", "prob": 0.9130043387413025 }, { "label": "en", "prob": 0.9441574215888977 }, { "label": "en", "prob": 0.9778626561164856 }, { "label": "en", "prob": 0.9495811462402344 }, { "label": "en", "prob": 0.9676570296287537 }, { "label": "en", "prob": 0.9415342807769775 }, { "label": "en", "prob": 0.9687911868095398 }, { "label": "en", "prob": 0.9838618040084839 }, { "label": "en", "prob": 0.861027181148529 }, { "label": "en", "prob": 0.9512061476707458 }, { "label": "en", "prob": 0.9494565725326538 }, { "label": "en", "prob": 0.9404062032699585 }, { "label": "en", "prob": 0.9816917181015015 }, { "label": "en", "prob": 0.9127745032310486 }, { "label": "en", "prob": 0.9355862140655518 }, { "label": "en", "prob": 0.9709415435791016 }, { "label": "en", "prob": 0.9266033172607422 }, { "label": "en", "prob": 0.9703048467636108 }, { "label": "en", "prob": 0.903931736946106 }, { "label": "en", "prob": 0.9831904172897339 }, { "label": "en", "prob": 0.9480568170547485 }, { "label": "en", "prob": 0.9412546157836914 }, { "label": "en", "prob": 0.9504784941673279 }, { "label": "en", "prob": 0.929323136806488 }, { "label": "en", "prob": 0.9816350340843201 }, { "label": "en", "prob": 0.959195077419281 }, { "label": "en", "prob": 0.9606806039810181 }, { "label": "en", "prob": 0.9309576153755188 }, { "label": "en", "prob": 0.847561240196228 }, { "label": "en", "prob": 0.936228334903717 }, { "label": "en", "prob": 0.9561154842376709 }, { "label": "en", "prob": 0.9649767279624939 }, { "label": "en", "prob": 0.9201961159706116 }, { "label": "en", "prob": 0.9376620054244995 }, { "label": "en", "prob": 0.9539101123809814 }, { "label": "en", "prob": 0.8881427645683289 }, { "label": "en", "prob": 0.8884839415550232 }, { "label": "en", "prob": 0.9631054401397705 }, { "label": "en", "prob": 0.9508622884750366 }, { "label": "en", "prob": 0.9047600030899048 }, { "label": "en", "prob": 0.9591304659843445 }, { "label": "en", "prob": 0.983029842376709 }, { "label": "en", "prob": 0.9162030816078186 }, { "label": "en", "prob": 0.9429686665534973 }, { "label": "en", "prob": 0.9606918096542358 }, { "label": "en", "prob": 0.8973115682601929 }, { "label": "en", "prob": 0.9884732961654663 }, { "label": "en", "prob": 0.9517626762390137 }, { "label": "en", "prob": 0.9495773911476135 }, null, null, { "label": "en", "prob": 0.998181164264679 }, null, { "label": "en", "prob": 0.8049929141998291 }, null, { "label": "en", "prob": 0.9821301698684692 }, null, { "label": "en", "prob": 0.9152567982673645 }, null, { "label": "en", "prob": 0.9592176079750061 }, null, null, null, { "label": "en", "prob": 0.9740452170372009 }, null, null, null, null, { "label": "en", "prob": 0.9208060503005981 }, { "label": "en", "prob": 0.8387635350227356 }, { "label": "en", "prob": 0.9074061512947083 }, null, null, { "label": "en", "prob": 0.9955747723579407 }, null, { "label": "en", "prob": 0.9984297156333923 }, { "label": "en", "prob": 0.9905267953872681 }, null, null, { "label": "en", "prob": 0.998613178730011 }, null, null, { "label": "en", "prob": 0.998613178730011 }, null, null, { "label": "en", "prob": 0.998613178730011 }, null, null, { "label": "en", "prob": 0.998613178730011 }, { "label": "en", "prob": 0.9537657499313354 }, null, { "label": "en", "prob": 0.9982559680938721 }, { "label": "en", "prob": 0.9633053541183472 }, null, null, { "label": "en", "prob": 0.8832507133483887 }, { "label": "en", "prob": 0.9984297156333923 }, { "label": "en", "prob": 0.9682120680809021 }, { "label": "en", "prob": 0.9679319858551025 }, null, { "label": "en", "prob": 0.9949617385864258 }, null, { "label": "en", "prob": 0.8262656927108765 }, { "label": "en", "prob": 0.8931183218955994 }, { "label": "en", "prob": 0.9485549926757812 }, null, null, { "label": "en", "prob": 0.998613178730011 }, null, null, { "label": "en", "prob": 0.9982559680938721 }, { "label": "en", "prob": 0.9049680233001709 }, null, { "label": "en", "prob": 0.9982559680938721 }, { "label": "en", "prob": 0.9569452404975891 }, null, { "label": "en", "prob": 0.9982559680938721 }, null, null, { "label": "en", "prob": 0.9982559680938721 }, { "label": "en", "prob": 0.8446248173713684 }, null, { "label": "en", "prob": 0.923333466053009 }, { "label": "en", "prob": 0.8472352623939514 }, { "label": "en", "prob": 0.892910897731781 }, { "label": "en", "prob": 0.9450162649154663 }, { "label": "en", "prob": 0.9043775200843811 }, null, null ] }
454.9
23,259
https://international.la-croix.com/news/politics/scrapping-the-color-code/15055?utm_source=UCAN&utm_campaign=From-our-partners&utm_medium=Referral
international.la-croix.com
0
[]
null
false
[]
true
2,609,023
Dub techno producer from Italy. Based in Turin, he has been active since the mid-2010's, with releases on dub.sphere, Family Grooves, eMBi Lab, Share Records and many other labels.
{ "warc_headers": { "warc-record-id": "<urn:uuid:5d28e021-b70a-4ad2-98e5-ce324326b1dc>", "warc-date": "2021-11-27T05:43:39Z", "content-type": "text/plain", "content-length": 180, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:06e6ce75-9297-47b7-a591-fa95f2e67785>", "warc-target-uri": "https://internationaldjmag.com/artist.php?id=648", "warc-block-digest": "sha1:VLL2BDTY67RPI33N6SXT424S6JKMIRD6" }, "identification": { "label": "en", "prob": 0.9797796607017517 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9797796607017517 } ] }
598.8
180
https://internationaldjmag.com/artist.php?id=648
internationaldjmag.com
0
[]
null
true
[]
false
2,609,024
UK house producer, based in Oxford, with releases on Champion, Madtech, Cr2, Lapsus Music, Freakin 909 and other labels. He has been DJing for well over 20 years, but only made the move into production in the mid-2010s.
{ "warc_headers": { "warc-record-id": "<urn:uuid:da5db3f0-4254-4335-b7f1-7b2877731e71>", "warc-date": "2021-11-27T05:42:37Z", "content-type": "text/plain", "content-length": 219, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:883d37ed-de35-4c20-b200-7fc457fd81b3>", "warc-target-uri": "https://internationaldjmag.com/artist.php?id=846", "warc-block-digest": "sha1:DUF7T4NURF7KIWATE6XOXELHYFOQXGL2" }, "identification": { "label": "en", "prob": 0.9816344380378723 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.9816343784332275 } ] }
735.8
219
https://internationaldjmag.com/artist.php?id=846
internationaldjmag.com
0
[]
null
false
[]
false
2,609,025
Nov 14, 2020 Amazon Best Sellers: Best Voltage TestersNon-Contact AC Voltage Tester/Voltage Tester Pen with Adjustable Sensitivity, LCD Display, LED Fl…Neoteck Non-Contact Voltage Tester 12-1000V AC Voltage Detector Pen Circuit Tester Tool with Le…Klein Tools NCVT-2 Voltage Tester, Non-Contact Dual Range Voltage Tester Pen for Standard and …Klein Tools NCVT-1 Voltage Tester, Non-Contact Voltage Detector for AC Voltage, Low Battery Indic…See a full list onThe Best Receptacle Testers For Your Home in 2020 | SPY [email protected] Send Message Get a Quote News Detail oem SF6-Air Insulated Equipment OEM Insulation. No two industries are alike. That's why Johns Manville takes an application-specific approach when designing and engineering each of our insulation products. Whether your focus is on land, sea or space, we understand better than anyone else what is required to deliver the outstanding thermal, acoustical or safety performance ...1000v Insulated Tools — OEL Worldwide Get Price tif sulphur hexafluoride Oct 15, 2020Is the end coming for sulfur hexafluoride, the most powerful greenhouse gas? by Marie-Charlotte Guetlein and Carine Sebi, The Conversation. Intervention on a medium-voltage circuit breaker, an electrical switchgear using SF6 gas. Credit: Shutterstock Electrical-transmission towers and the cables are part of the landscape of industrialized ...Missing:tif sulphurMust include:tif sulphurImages of TIF Sulphur Hexafluoride Get Price abb cf4 tester L&W S-Tester measures the failure strength of a test piece loaded in compression when the initial span length is 4 mm and the offset is fixed to 1 mm. This will simulate the initial failure in a CMT test when the fluted test piece will leave the symmetrical sinusoidal shape..Laboratory paper testing - ABB Group Get Price avt SF6 room Calibration The AREACHECK P2 is the reliable and dependable room monitor for the surveillance of indoor areas for enrichment of inadmissible SF6 concentrations. P2 safeguards personnel and the environment and serves to reduce SF6 emissions. The SF6 AREACHECK P2 monitors can be operated as a stand-alone solution, or connected to a custom controller via a ...Service and Repairs - Nationwide Support - AVT Services Get Price Rapidox sf6 o2 Network Monitor The Rapidox SF 6 6100 Portable is designed for controlling and monitoring the quality of SF 6 in MV HV gas insulated electrical equipment. Exceptional accuracy and stability are provided when measuring the purity of SF 6 …Missing:Network MonitorMust include:Network MonitorSF6 measuring Equipment | Environmental XPRT Get Price ge SF6 room density sensor Electronic SF6 gas density monitoring with patented quartz tuning fork The Gas Density Sensor uses a quarz tuning fork to sense gas density directly – a unique technology patented by Trafag. With the delivery of continuous output signals (analogue or digital) from this electronically operating sensor…Images of GE SF6 Room Density Sensor Get Price avt SF6-Air detector Our unique, advanced No-Haz SF 6 Sampling Kits allow you to obtain a proper SF 6 sample – without generating any emissions - then properly legally ship your non-compressed No-Haz SF 6 samples to our laboratory, eliminating the need for haz-mat certified shipping staff.Missing:avtMust include:avtImages of AVT Sf6-air Detector Get Price gasbanor SF6 room Transmitter The 3-033-R501 SF 6 Gas Leak Detector raises the industry benchmark for portable SF 6 gas leak detection. It is capable of detecting emissions as small as 0.3 oz/yr in less than one second! The SF 6 Gas Leak Detector can be used to locate and quantify gas leaks, log …Images of Gasbanor SF6 Room Transmitter Get Price odm sf6 gas monitoring The gas monitoring system is a small monitoring system with intervals or full-station units, which can display the temperature, pressure and density of SF6 gas in each gas chamber in the system in a compact, economical and real-time manner. Lanso supplies kinds of SF6 gas density monitor, and our gas monitoring system can meet your different needs.Toxic Gas Detection | gasdetection.com Get Price Rapidox SF6 decomposition monitoring solutions The Rapidox SF 6 6100 Pump Back is the latest in fully-automatic gas analysers, designed for controlling and monitoring the quality of SF 6 in medium high voltage gas insulated electrical equipment. Exceptional accuracy and stability are provided when measuring the purity of SF 6 gas, through specially selected sensors.Brand: Rapidox SF6[PDF]SF6 Product Guide - cambridge-sensotec.co.uk Get Price Micafluid SF6 decomposition Leakmate Abstract: The increasing application of SF6 as an insulating gas has led to many studies on SF6 decomposition in gas-insulated equipment. In the presence-of an electric arc, spark or corona, SF6 decomposes to a wide variety of chemically active products which possess completely different properties from SF6.Missing:MicafluidMust include:MicafluidDecomposition Characteristics of SF6 under Flashover ... Get Price dilo SF6 room solution SF 6 gas monitoring Easy SF 6 stock management. Electronic mass flow meters and weighing devices with PC interfaces enable the collection and registration of SF 6 gas consumption at various locations.. Our special database software "SF 6 Monitoring Manager" centrally manages all acquisitions and disposals. The SF 6 mass balance according to EU directive 1191/2014 can thus be easily created.Images of DILO SF6 Room solution Get Price gasbanor leak pointer Leak Pointer SF6 For quick tracing of small SF 6 leaks. 3-033-R002. The lightweight, cordless SF 6 Leak Pointer can detect SF6 leaks in seven different sensitivity levels with a response rate of one second. The SF 6 Leak Pointer is easy to operate with one hand. Leakage data is clearly presented on an LED display. In addition, an audible alarm alerts the user to the presence of SF 6 leaks.Missing:gasbanorMust include:gasbanorDifference between dangling pointer and memory leak ... Get Price bosean sf6 gas leak pointer For quick tracing of small SF 6 leaks 3-033-R002 The cordless battery-operated device measures in six sensitivity levels within a very short response time. The device switches automatically to the next higher level of sensitivity for detection of larger leaks.DILO 3-033-R002 SF6 Leak Pointer - Protec Get Price dilo sulfur hexafluoride leak testing DILO Company, Inc. 11642 Pyramid Drive Odessa, FL 33556 Phone: 727-376-5593 E-Mail: [email protected] LeakCheck P1:P Sulfur Hexafluoride Leak Detector | Gastech Get Price new sulfur hexafluoride transmitter Miscellaneous Transmitter Recollections SF6 - Sulfur Hexafluoride SF6 was used as a gaseous dielectric medium in all of the high power waveguide runs between the klystron output windows and the four antenna feed horn windows (located in the anechoic chambers).Amazon.com: sulfur hexafluoride Get Price iso SF6-Air monitor and record ISO recording refers to the ability to create isolated recordings of your camera inputs.Typically in a live video production you'll record your main program output for distribution. ISO recording means you can individually record each camera which gives you a lot more freedom in post production.Images of Iso Sf6-air Monitor?and Record Get Price wika sulphur hexafluoride density sensor Sulphur hexafluoride – or SF 6 gas for short – is, so far, the gas with the strongest known greenhouse effect. Its contribution to the greenhouse effect is about 23,000 times that of CO 2 …Sulfur hexafluoride | Sustainable Community Action | Fandom Get Price iso sf6 gas monitoring SF6 gas monitoring system This device is used to monitor and record the quality of the SF 6 gas in a gas compartment. The following quality parameters can be determined with only one measurement: SF 6 …„SF6 Monitoring Manager" Software | DILO GmbH Get Price Cambridge leak pointer Cambridge Lower Secondary Checkpoint Use Cambridge Checkpoint to assess learners at the end of the lower secondary programme (Stage 9). The tests are marked by Cambridge International for English as a first or second language, mathematics and science.pointer in a sentence | Sentence examples by Cambridge ...
{ "warc_headers": { "warc-record-id": "<urn:uuid:dddc2260-05b0-40e5-b51b-088896b213d4>", "warc-date": "2021-11-27T06:16:32Z", "content-type": "text/plain", "content-length": 8186, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:61ff5676-bcc9-41c9-bf79-705ddfe37b64>", "warc-target-uri": "https://interrenet.be/news/7743_Oct.html", "warc-block-digest": "sha1:H4AULGVZXOOZYU2MZJCCVQ2NBLTABQML" }, "identification": { "label": "en", "prob": 0.6396707892417908 }, "annotations": [ "short_sentences", "header", "footer" ], "line_identifications": [ null, null, null, null, { "label": "en", "prob": 0.9127199053764343 }, { "label": "en", "prob": 0.9064978957176208 }, null, null, null, null, null, { "label": "en", "prob": 0.8245622515678406 }, null, null, { "label": "en", "prob": 0.9138734340667725 }, null, null, { "label": "en", "prob": 0.8935724496841431 }, null, null, null, null, null, { "label": "en", "prob": 0.8054623603820801 }, null, null, { "label": "en", "prob": 0.8707307577133179 }, null, null, { "label": "en", "prob": 0.9014246463775635 }, null, null, { "label": "en", "prob": 0.8213487267494202 }, null, null, { "label": "en", "prob": 0.9194478392601013 }, null, null, { "label": "en", "prob": 0.8605759143829346 }, null, null, { "label": "en", "prob": 0.9061579704284668 }, null, null, { "label": "en", "prob": 0.8846396803855896 }, null, null, null, null, null, { "label": "en", "prob": 0.8756269812583923 }, null, null, { "label": "en", "prob": 0.9084325432777405 }, null, null, { "label": "en", "prob": 0.8701209425926208 }, null, null, { "label": "en", "prob": 0.8587384819984436 }, null, null, { "label": "en", "prob": 0.8717202544212341 } ] }
1,979.6
8,156
https://interrenet.be/news/7743_Oct.html
interrenet.be
0
[]
null
false
[]
true
2,609,026
South Korea and Taiwan, both being Japan’s earliest colonies in Asia, have cultivated opposing views towards Japan and its colonialism. While Korean comfort women statues were commonplace in the 1990s, Taiwan’s very first was erected in 2018. While South Korean President Moon Jae-in has emphasized “wiping out” colonization’s vestiges, former Taiwanese President Ma Ying-jeou encouraged embracing Japan’s good legacies. South Korea’s grievance with Japan is also related to the current trade conflict between the two. The two opposing trajectories, in which South Korea’s attitude towards Japan is much more hostile than Taiwan’s, can be explained via numerous reasons, notably the following four historical and political factors. First, Japan’s colonization was less intrusive in Taiwan. Economically, Japan appeased Taiwan’s peasantry class, but chose to align with the Korean landlords. Japan invested in giant Korean corporations, owning much of the capitals (94-100% in modern sectors in 1940) while the Taiwanese were allowed to have more assets in smaller-scale businesses. Politically, Taiwan retained more autonomy. Most governor-generals, the highest colonial position, were civilians. Local reformers, who wanted to demolish outdated practices like foot-binding, could negotiate with Japanese rulers. Elderly leaders helped maintain security under the Hoko system, hence a lesser need for police presence. Japan also organized the first council elections in 1935 as a compromise. In Korea, the generals were all prominent military figures. They dismissed any reformist ideas in the 1920s. Japan deployed more police since there was no Hoko system’s equivalence, and did not hold similar council elections. Culturally, Japan allowed Taiwanese/Chinese subjects in Taiwanese schools. Colonial teachers paid respect to Chinese culture. In Korea, Japan ignored traditions and applied strict monolingual policy from the beginning, imprisoning those promoting the Korean language. Moreover, Korea was geographically bigger so the Japanese assimilation encountered more difficulties. Japan also embraced Taiwan’s identity, distinguishing Taiwanese from Chinese. In 1895, Japan banned immigration from China – an opportunity to develop a more homogenous Taiwanese society. Taiwanese were allowed to choose nationality during the occupation’s first two years. Taiwan’s elites use Japan’s colonization to highlight their identity vis-à-vis Chinese today. Japanese soldiers near Incheon, South Korea. Second, contexts matter. Before colonization, Taiwan was under the Qing dynasty’s weak administration. Conflicts between the Han and the aboriginal occurred frequently. In contrast, Korea had cultivated a long-standing identity. The Korean Empire was proclaimed in 1897 as independent and unified, with bureaucracy, economic modernization, and its own language, and had successfully resisted invasions (including Japan’s). After colonization, Taiwan went back to China. The subsequent Communist-nationalist civil war left the economy deteriorating. Therefore, the Taiwanese had nostalgia for Japan’s rule. A different dynamic played out in Korea: it was under the U.S. and the Soviet, dragged into a disastrous war and suffered from division. In a common Korean perspective, the disaster was associated with the Japanese occupation. Third, foreign policies can reinforce pro or anti-Japanese sentiments. To preserve sovereignty, Taiwan needs to maintain ties with Japan, an East Asian power, and pursue international integration. In contrast, as South Korea thrives as a middle power, Japan’s importance to South Korea declines: Japan’s share of Korea’s trade dropped (18.6% in 1995 to 7.4% in 2015); Korea’s milder response to China’s rise and Dokdo/Takeshima dispute also enhance Japan’s doubt. Strategic calculations also affect comfort women settlement, indirectly sustaining South Korea’s hostility. Post-war Japan did not focus on this since there was little geopolitical interest in mending ties with South Korea. In 1993-1996, with diminishing U.S. presence and newly emerging Asian economies, Japan was more proactive and comfort women received more attention. However, the period was short-lived. Post-war South Korea, under Park Chung-hee, emphasized economic development, putting aside full settlement discussions with Japan. Considering China’s rise and the U.S.’s pressure to form a stronger Korea-Japan-U.S. alliance, both countries will possibly continue prioritizing geopolitics over historical settlement in the near future. Soft power plays a part. Japan’s pop-culture is massive in Taiwan, inspiring fashion, video games, and films. There is a “harizu” (Japan-loving geeks) sub-culture. Public transportations use Japanese cartoon decoration. Conversely, South Korea does not avidly consume Japan’s cultural products. According to Brookings, few Koreans consume Japanese entertainment. Respondents were not decisive on whether Japanese influence was positive (49%) or negative (48%). Furthermore, Korea is often considered Japan’s challenger because of its own cultural appeal. Lastly, domestic politics count. Korean politicians often use anti-Japan rhetoric to mobilize support or distract public criticism. Former President Park Geun-hye, aware of criticism towards her father’s favorable approach to Japan, adopted an uncompromising stance. A 2019 report from Korea’s Democratic Party even suggested the current standoff with Japan provided electoral benefits. Korean civil societies also contribute to the hostility. Korean Council, the most vocal comfort women group, has been reported to exaggerate the number of victims and requested victims to not accept Japan’s assistance. In Japan, the ruling party can set the direction for historical settlement. In 1993, the conservative LDP lost to a progressive opposition, who advocated for Japan’s contrition so progress was made (high-level apologetic remarks, the Asian Women Fund creation), toning down South Korea’s hostility. However, with the conservatives dominating again from 1996 (except for 2009-2012), Japan’s position on historical issues retrogresses. Many LDP officials broke previously-made apologetic statements. Conservatives also contribute to South Korea’s hostility towards Japan and push for nationalistic agendas. These four factors help explain South Korea’s more hostile view to Japan colonialism than Taiwan’s. Having such dynamics in mind is significant to examine the current development of their respective relations with Japan. If you're interested in writing for International Policy Digest - please send us an email via submissions@intpolicydigest.org Share on Facebook Tweet Share on LinkedIn Share this article by email Read Next Latest Article Latest Articles 1 Why Tech Solutions are Vital in the Fight Against Illicit Alcohol by Christopher O'Brien 2 The Taiwan Foreign Policy Fetish by Binoy Kampmark 3 ‘House of Gucci’ Review: It’s Hammy in Parts, but That’s the Point by David Ferguson 4 The Lebanese Establishment is its Own Worse Enemy. by Kristopher O'Brien 5 Totalitarian Cyber-Creep: Mark Zuckerberg in the Metaverse by Binoy Kampmark Home About Us Write for Us Contact Us Advertise Newsletter Disclaimer Cookie Policy Privacy Policy © 2021 Int Policy Digest LLC We are using cookies to give you the best experience on our website. You can find out more about which cookies we are using or switch them off in settings. Close GDPR Cookie Banner Accept Reject Settings Close GDPR Cookie Banner Close GDPR Cookie Settings Privacy Overview Strictly Necessary Cookies Cookie Policy Privacy Overview This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful. Strictly Necessary Cookies Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings. If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
{ "warc_headers": { "warc-record-id": "<urn:uuid:3e69753c-f1e0-4c10-9dc6-b9b9708722fc>", "warc-date": "2021-11-27T06:14:51Z", "content-type": "text/plain", "content-length": 8342, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:116d146a-e7f1-4b5e-927f-33edd7a954cc>", "warc-target-uri": "https://intpolicydigest.org/two-colonies-two-trajectories/", "warc-block-digest": "sha1:LGAK25K7LNSIZDVTAFBTLORRO6QFFMWV" }, "identification": { "label": "en", "prob": 0.8861081004142761 }, "annotations": [ "short_sentences", "footer" ], "line_identifications": [ { "label": "en", "prob": 0.9736177921295166 }, { "label": "en", "prob": 0.9649558663368225 }, { "label": "en", "prob": 0.9593915939331055 }, { "label": "en", "prob": 0.9761894941329956 }, { "label": "en", "prob": 0.9312770962715149 }, { "label": "en", "prob": 0.9424492120742798 }, { "label": "en", "prob": 0.9657647609710693 }, { "label": "en", "prob": 0.9707611203193665 }, { "label": "en", "prob": 0.9673334956169128 }, { "label": "en", "prob": 0.8787862062454224 }, { "label": "en", "prob": 0.9648067951202393 }, { "label": "en", "prob": 0.9460352063179016 }, { "label": "en", "prob": 0.9517665505409241 }, { "label": "en", "prob": 0.9133174419403076 }, { "label": "en", "prob": 0.9441040754318237 }, { "label": "en", "prob": 0.8144773840904236 }, { "label": "en", "prob": 0.828370988368988 }, null, { "label": "en", "prob": 0.833696722984314 }, { "label": "en", "prob": 0.9611874222755432 }, { "label": "en", "prob": 0.8989322185516357 }, null, null, { "label": "en", "prob": 0.8264815807342529 }, { "label": "en", "prob": 0.9223424792289734 }, null, null, null, null, null, { "label": "en", "prob": 0.9633469581604004 }, null, { "label": "en", "prob": 0.9819037914276123 }, { "label": "en", "prob": 0.9560593962669373 }, null, null, null, null, null, { "label": "en", "prob": 0.9185200929641724 }, null, { "label": "en", "prob": 0.8909582495689392 }, null, null, null, null, null, { "label": "en", "prob": 0.9343288540840149 }, { "label": "en", "prob": 0.9675372838973999 }, null, { "label": "en", "prob": 0.807066023349762 }, { "label": "en", "prob": 0.8226158618927002 }, null, null, null, null, null, null, null, { "label": "en", "prob": 0.9559780359268188 }, null, { "label": "en", "prob": 0.818474531173706 }, { "label": "en", "prob": 0.9193376898765564 } ] }
542.3
8,246
https://intpolicydigest.org/two-colonies-two-trajectories/
intpolicydigest.org
0
[]
null
false
[]
true
2,609,027
Looking for primary sources in the history of invention? The Lemelson Center's Modern Inventors Documentation (MIND) program has created this database of invention, technology, and science-related collections located in archives, libraries, historical societies, and museums in the United States and Canada. The Lemelson Center does not maintain its own archive, but serves as a clearinghouse for information on sources. Learn more about the database >> When you select a collection from the list below, you will open a new page with a logo at the top that indicates whether the collection is at the Smithsonian or elsewhere.
{ "warc_headers": { "warc-record-id": "<urn:uuid:3265cdc3-bc97-4280-ab54-7ae9d51cfb23>", "warc-date": "2021-11-27T05:37:24Z", "content-type": "text/plain", "content-length": 625, "warc-type": "conversion", "warc-identified-content-language": "eng", "warc-refers-to": "<urn:uuid:5db09f78-219f-4b73-980b-38dc2ca155d9>", "warc-target-uri": "https://invention.si.edu/study/archives?tags%5B0%5D=151&tags%5B1%5D=151&tags%5B2%5D=166&tags%5B3%5D=158&tags%5B4%5D=167&tags%5B5%5D=168&tags%5B6%5D=159&tags%5B7%5D=159&tags%5B8%5D=151&tags%5B9%5D=167&tags%5B10%5D=166&tags%5B11%5D=194&tags%5B12%5D=168", "warc-block-digest": "sha1:ZKVVUYQ7CU3UYGTVDXXY6BPFNVS3WLOW" }, "identification": { "label": "en", "prob": 0.9157775640487671 }, "annotations": [ "tiny" ], "line_identifications": [ { "label": "en", "prob": 0.942695677280426 }, { "label": "en", "prob": 0.8444681763648987 } ] }
164.8
625
https://invention.si.edu/study/archives?tags%5B0%5D=151&tags%5B1%5D=151&tags%5B2%5D=166&tags%5B3%5D=158&tags%5B4%5D=167&tags%5B5%5D=168&tags%5B6%5D=159&tags%5B7%5D=159&tags%5B8%5D=151&tags%5B9%5D=167&tags%5B10%5D=166&tags%5B11%5D=194&tags%5B12%5D=168
invention.si.edu
1.008
[ [ 564955265129, 564955265759 ] ]
null
true
[ 431992499 ]
false