sentence1
stringlengths
52
3.87M
sentence2
stringlengths
1
47.2k
label
stringclasses
1 value
private function parse(array $data, NodePath $nodePath, $parentId = null) { $parentId = $this->validateParentId($parentId); $csvFile = $this->createCsvFile($this->structure->getTypeFromNodePath($nodePath), $nodePath, $parentId); $parentCols = array_fill_keys(array_keys($parentId), "string"); foreach ($data as $row) { // in case of non-associative array of strings // prepare {"data": $value} objects for each row if (is_scalar($row) || is_null($row)) { $row = (object) [Structure::DATA_COLUMN => $row]; } elseif ($this->analyzer->getNestedArrayAsJson() && is_array($row)) { $row = (object) [Structure::DATA_COLUMN => json_encode($row)]; } // Add parentId to each row if (!empty($parentId)) { $row = (object) array_replace((array) $row, $parentId); } $csvRow = $this->parseRow($row, $nodePath, $parentCols); $csvFile->writeRow($csvRow->getRow()); } }
Parse data of known type @param array $data @param NodePath $nodePath @param string|array $parentId
entailment
private function parseRow( \stdClass $dataRow, NodePath $nodePath, array $parentCols = [], $outerObjectHash = null ) { $csvRow = new CsvRow($this->getHeaders($nodePath, $parentCols)); // Generate parent ID for arrays $arrayParentId = $this->getPrimaryKeyValue($dataRow, $nodePath, $outerObjectHash); $columns = $this->structure->getColumnTypes($nodePath); foreach (array_replace($columns, $parentCols) as $column => $dataType) { $this->parseField($dataRow, $csvRow, $arrayParentId, $column, $dataType, $nodePath); } return $csvRow; }
Parse a single row If the row contains an array, it's recursively parsed @param \stdClass $dataRow Input data @param NodePath $nodePath @param array $parentCols to inject parent columns, which aren't part of $this->struct @param string $outerObjectHash Outer object hash to distinguish different parents in deep nested arrays @return CsvRow
entailment
private function parseField( \stdClass $dataRow, CsvRow $csvRow, $arrayParentId, $column, $dataType, NodePath $nodePath ) { // A hack allowing access to numeric keys in object if (!isset($dataRow->{$column}) && isset(json_decode(json_encode($dataRow), true)[$column]) ) { $dataRow->{$column} = json_decode(json_encode($dataRow), true)[$column]; } // skip empty objects & arrays to prevent creating empty tables or incomplete column names if (!isset($dataRow->{$column}) || is_null($dataRow->{$column}) || (empty($dataRow->{$column}) && !is_scalar($dataRow->{$column})) ) { // do not save empty objects to prevent creation of ["obj_name" => null] if ($dataType != 'object') { $safeColumn = $this->structure->getNodeProperty($nodePath->addChild($column), 'headerNames'); if ($safeColumn === null) { $safeColumn = $this->structure->getNodeProperty($nodePath, 'headerNames'); } $csvRow->setValue($safeColumn, null); } return; } switch ($dataType) { case "array": if (!is_array($dataRow->{$column})) { $dataRow->{$column} = [$dataRow->{$column}]; } $sf = $this->structure->getNodeProperty($nodePath->addChild($column), 'headerNames'); $csvRow->setValue($sf, $arrayParentId); $this->parse( $dataRow->{$column}, $nodePath->addChild($column)->addChild(Structure::ARRAY_NAME), $arrayParentId ); break; case "object": $childRow = $this->parseRow($dataRow->{$column}, $nodePath->addChild($column), [], $arrayParentId); foreach ($childRow->getRow() as $key => $value) { $csvRow->setValue($key, $value); } break; default: // If a column is an object/array while $struct expects a single column, log an error if (is_scalar($dataRow->{$column})) { $sf = $this->structure->getNodeProperty($nodePath->addChild($column), 'headerNames'); if ($sf === null) { $sf = $this->structure->getNodeProperty($nodePath, 'headerNames'); } $csvRow->setValue($sf, $dataRow->{$column}); } else { $jsonColumn = json_encode($dataRow->{$column}); $this->analyzer->getLogger()->error( "Data parse error in '{$column}' - unexpected '" . gettype($dataRow->{$column}) . "' where '{$dataType}' was expected!", [ "data" => $jsonColumn, "row" => json_encode($dataRow) ] ); $sf = $this->structure->getNodeProperty($nodePath->addChild($column), 'headerNames'); $csvRow->setValue($sf, $jsonColumn); } break; } }
Handle the actual write to CsvRow @param \stdClass $dataRow @param CsvRow $csvRow @param string $arrayParentId @param string $column @param string $dataType @param NodePath $nodePath
entailment
private function getHeaders(NodePath $nodePath, &$parent = false) { $headers = []; $nodeData = $this->structure->getNode($nodePath); if ($nodeData['nodeType'] == 'scalar') { $headers[] = $nodeData['headerNames']; } if (is_array($parent) && !empty($parent)) { foreach ($parent as $key => $value) { // check all parent columns $previousPath = $nodePath->popLast(); $previousNode = $this->structure->getNode($previousPath); /* this is a slight WTF, but getHeaders is called for every row, so the below code must not be called if the parent was already generated. */ $actualKey = $this->structure->encodeNodeName($key); if (!isset($previousNode[$key]) && !isset($nodeData[Structure::ARRAY_NAME][$actualKey]) && empty($nodeData[$actualKey]['type']) && empty($nodeData[Structure::ARRAY_NAME][$actualKey]['type']) ) { // check that there is a column with a same name as a column with parent name if (isset($previousNode[Structure::ARRAY_NAME][$actualKey])) { // generate new column name $newColName = $key; $i = 0; while (isset($previousNode[Structure::ARRAY_NAME] [$this->structure->encodeNodeName($newColName)]) ) { $newColName = $key . '_u' . $i; $i++; } // rename the column in parent $parent[$newColName] = $value; unset($parent[$key]); $this->structure->setParentTargetName($key, $newColName); $key = $newColName; } // either way we need to store the parent column in structure $previousNode[Structure::ARRAY_NAME][$this->structure->encodeNodeName($key)] = ['nodeType' => 'scalar', 'type' => 'parent']; $this->structure->saveNode($previousPath, $previousNode); $this->structure->generateHeaderNames(); $nodeData = $this->structure->getNode($nodePath); } } } foreach ($nodeData as $nodeName => $data) { if (is_array($data) && ($data['nodeType'] == 'object')) { $pparent = false; $nodeName = $this->structure->decodeNodeName($nodeName); $ch = $this->getHeaders($nodePath->addChild($nodeName), $pparent); $headers = array_merge($headers, $ch); } else if (is_array($data)) { $headers[] = $data['headerNames']; } } return $headers; }
Get column names for a particular node path @param NodePath $nodePath @param bool $parent Parent column, may be renamed in case a conflict occurs @return array
entailment
private function createCsvFile($type, NodePath $nodePath, &$parentId) { if (empty($this->csvFiles[$type])) { $this->csvFiles[$type] = Table::create( $type, $this->getHeaders($nodePath, $parentId), $this->temp ); $this->csvFiles[$type]->addAttributes(["fullDisplayName" => $type]); if (!empty($this->primaryKeys[$type])) { $this->csvFiles[$type]->setPrimaryKey($this->primaryKeys[$type]); } } return $this->csvFiles[$type]; }
to allow saving a single type to different files @param string $type @param NodePath $nodePath @param $parentId @return Table
entailment
private function validateParentId($parentId) : array { if (!empty($parentId)) { if (is_array($parentId)) { if (count($parentId) != count($parentId, COUNT_RECURSIVE)) { throw new JsonParserException( 'Error assigning parentId to a CSV file! $parentId array cannot be multidimensional.', [ 'parentId' => $parentId ] ); } } else { $parentId = ['JSON_parentId' => $parentId]; } } else { $parentId = []; } $result = []; foreach ($parentId as $key => $value) { $result[$this->structure->getParentTargetName($key)] = $value; } return $result; }
Ensure the parentId array is not multidimensional @param string|array $parentId @return array @throws JsonParserException
entailment
public function getCsvFiles() { // parse what's in cache before returning results while ($batch = $this->cache->getNext()) { // root node is always array $this->parse($batch["data"], new NodePath([$batch['type'], Structure::ARRAY_NAME]), $batch["parentId"]); } return $this->csvFiles; }
Returns an array of CSV files containing results @return Table[]
entailment
public function login(Request $request, AuthenticateUser $authenticate, ThrottlesCommand $throttles) { $username = Authen::getIdentifierName(); $input = $request->only([$username, 'password', 'remember']); $throttles->setRequest($request)->setLoginKey($username); return $authenticate($this, $input, $throttles); }
POST Login the user. POST (:orchestra)/login @return mixed
entailment
public function userLoginHasFailedAuthentication(array $input) { $message = trans('orchestra/foundation::response.credential.invalid-combination'); return $this->redirectWithMessage($this->getRedirectToLoginPath(), $message, 'error')->withInput(); }
Response to user log-in trigger has failed authentication. @param array $input @return mixed
entailment
public function sendLockoutResponse(array $input, $seconds) { $message = trans('auth.throttle', ['seconds' => $seconds]); return $this->redirectWithMessage($this->getRedirectToLoginPath(), $message, 'error')->withInput(); }
Redirect the user after determining they are locked out. @param array $input @param int $seconds @return mixed
entailment
public function getUpdatedAt() { return ! empty($value = $this->getContentValue('updated_at', null)) ? $this->convertToCarbon($value) : null; }
Возвращает дату/время, когда был обновлен. @return Carbon|null
entailment
protected function loadBackendRoutesFrom(string $path, ?string $namespace = '', array $attributes = []): void { $foundation = $this->app->make('orchestra.app'); $attributes = $this->resolveRouteGroupAttributes($namespace, $attributes); $foundation->namespaced(null, $attributes, $this->getRouteLoader($path)); }
Load the backend routes file for the application. @param string $path @param string|null $namespace @param array $attributes @return void
entailment
protected function loadFrontendRoutesFrom(string $path, ?string $namespace = '', array $attributes = []): void { $foundation = $this->app->make('orchestra.app'); $attributes = $this->resolveRouteGroupAttributes($namespace, $attributes); $foundation->group($this->routeGroup, $this->routePrefix, $attributes, $this->getRouteLoader($path)); }
Load the frontend routes file for the application. @param string $path @param string|null $namespace @return void
entailment
public function refresh(...$arguments) { $this->token = (func_num_args() >= 2) ? static::generate(...$arguments) : static::generate(...$this->arguments); return $this; }
{@inheritdoc}
entailment
public function handle() { Collection::make([ $this->laravel->getCachedServicesPath(), $this->laravel->getCachedExtensionServicesPath(), ])->filter(function ($file) { return \file_exists($file); })->each(function ($file) { @\unlink($file); }); }
Execute the console command. @return void
entailment
public function profile($model, $url) { return $this->form->of('orchestra.account', function (FormGrid $form) use ($model, $url) { $form->setup($this, $url, $model); $form->hidden('id'); $form->fieldset(function (Fieldset $fieldset) { $fieldset->control('input:text', 'email') ->label(trans('orchestra/foundation::label.users.email')); $fieldset->control('input:text', 'fullname') ->label(trans('orchestra/foundation::label.users.fullname')); }); }); }
Form view generator for User Account. @param \Orchestra\Model\User $model @param string $url @return \Orchestra\Contracts\Html\Form\Builder
entailment
public function handle($request, Closure $next) { $as = $request->input('_as'); if ($this->authorize() && ! is_null($as)) { $this->auth->loginUsingId($as); return $this->response->redirectTo($request->url()); } return $next($request); }
Handle an incoming request. @param \Illuminate\Http\Request $request @param \Closure $next @return mixed
entailment
public function getRoles() { return \is_string($value = $this->getContentValue('roles', null)) ? array_filter(explode(',', (string) $value)) : null; }
Возвращает массив ролей пользователя. @return null|string[]
entailment
public function types($auth_token, $limit = 200) { return new B2BResponse($this->client->apiRequest( 'get', 'user/report_types', [ '_query' => '_all', // Описатель запроса (язык зависит от контекста) '_size' => (int) $limit, // Максимальное количество данных в выдаче, размер страницы '_offset' => 0, // Смещение окна записей относительно всей выборки '_page' => 1, // Номер страницы '_sort' => '-created_at', // Настройки сортировки '_calc_total' => 'true', // Вычислять ли общее количество '_can_generate' => 'true', // Может ли пользователь генерировать отчеты для данного типа '_content' => 'true', // Признак наличия контента ], [ 'Authorization' => (string) $auth_token, ], $this->client->isTest() ? new Response( 200, $this->getTestingResponseHeaders(), str_replace( [ '%domain%', ], [ AuthToken::extractDomainFromToken($auth_token), ], file_get_contents(__DIR__ . '/report_types.json') ) ) : null )); }
Получение типов отчетов, доступных конкретному пользователю. @param string $auth_token Токен безопасности @param int $limit @throws B2BApiException @return B2BResponse
entailment
public function get($auth_token, $report_uid, $detailed = true, $with_content = true) { return new B2BResponse($this->client->apiRequest( 'get', sprintf('user/reports/%s', urlencode($report_uid)), [ '_detailed' => (bool) $detailed ? 'true' : 'false', '_content' => (bool) $with_content ? 'true' : 'false', ], [ 'Authorization' => (string) $auth_token, ], $this->client->isTest() ? new Response( 200, $this->getTestingResponseHeaders(), str_replace( [ '%domain%', '%some_report_type_uid_with_domain%', ], [ AuthToken::extractDomainFromToken($auth_token), $report_uid, ], file_get_contents(__DIR__ . '/report.json') ) ) : null )); }
Получение имеющегося отчета. @param string $auth_token Токен безопасности @param string $report_uid UID отчета @param bool $detailed @param bool $with_content Признак наличия контента @throws B2BApiException @return B2BResponse
entailment
public function make($auth_token, $query_type, $query_id, $report_type_uid, $is_force = false, array $options = []) { if (! QueryTypes::has($query_type)) { throw new B2BApiInvalidArgumentException(sprintf( 'Passed query type "%s" is not valid', $query_type )); } return new B2BResponse($this->client->apiRequest( 'post', sprintf('user/reports/%s/_make', urlencode($report_type_uid)), [ 'queryType' => (string) $query_type, 'query' => (string) $query_id, 'options' => \array_replace_recursive([ 'FORCE' => (bool) $is_force, ], $options), ], [ 'Authorization' => (string) $auth_token, ], $this->client->isTest() ? new Response( 200, $this->getTestingResponseHeaders(), file_get_contents(__DIR__ . '/make.json') ) : null )); }
Генерация нового отчета. ВНИМАНИЕ! Данная операция спишет с баланса один отчет. @param string $auth_token Токен безопасности @param string $query_type Тип запрашиваемой сущности @param string $query_id Значение запрашиваемой сущности @param string $report_type_uid UID типа отчета @param bool $is_force Нужно ли перегенерировать отчет если он уже существует? @param array $options Дополнительные опции запроса @throws B2BApiInvalidArgumentException @throws B2BApiException @return B2BResponse
entailment
public function refresh($auth_token, $report_uid, array $options = []) { $request_body = empty($options) ? null : ['options' => $options]; return new B2BResponse($this->client->apiRequest( 'post', sprintf('user/reports/%s/_refresh', urlencode($report_uid)), $request_body, [ 'Authorization' => (string) $auth_token, ], $this->client->isTest() ? new Response( 200, $this->getTestingResponseHeaders(), file_get_contents(__DIR__ . '/refresh.json') ) : null )); }
Запрос на обновление данных в отчете. ВНИМАНИЕ! Данная операция спишет с баланса один отчет. @param string $auth_token Токен безопасности @param string $report_uid UID отчета @param array $options Дополнительные опции запроса @throws B2BApiException @return B2BResponse
entailment
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) { $properties['target_id'] = DataDefinition::create('integer')->setLabel(t('Target entity id')); $properties['parent_id'] = DataDefinition::create('integer')->setLabel(t('Parent entity id')); $properties['name'] = DataDefinition::create('string')->setLabel(t('Name')); $properties['description'] = DataDefinition::create('string')->setLabel(t('Description')); $properties['min'] = DataDefinition::create('integer')->setLabel(t('Minimum order quantity')); $properties['unit'] = DataDefinition::create('string')->setLabel(t('Unit of measurement')); $properties['cost'] = DataDefinition::create('float')->setLabel(t('Price')); $properties['currency'] = DataDefinition::create('string')->setLabel(t('Currency')); $properties['select'] = DataDefinition::create('integer')->setLabel(t('Allow select')); return $properties; }
{@inheritdoc}
entailment
public static function schema(FieldStorageDefinitionInterface $field_definition) { return array( 'columns' => array( 'target_id' => array( 'type' => 'int', 'unsigned' => true, 'not null' => false, 'default' => 0, ), 'parent_id' => array( 'type' => 'int', 'unsigned' => true, 'not null' => false, 'default' => 0, ), 'name' => array( 'type' => 'varchar', 'length' => 512, 'not null' => true, ), 'description' => array( 'type' => 'text', 'not null' => false, ), 'min' => array( 'type' => 'int', 'unsigned' => true, 'not null' => false, 'default' => 1, ), 'unit' => array( 'type' => 'varchar', 'length' => 10, 'not null' => false, ), 'cost' => array( 'type' => 'numeric', 'precision' => 10, 'scale' => 2, 'unsigned' => true, 'not null' => false, 'default' => 0, ), 'currency' => array( 'type' => 'varchar', 'length' => 10, 'not null' => false, ), 'select' => array( 'type' => 'int', 'unsigned' => true, 'not null' => false, 'default' => 0, ), ), 'indexes' => [], ); }
{@inheritdoc}
entailment
public function isEmpty() { $isEmpty = TRUE; if ($this->get('target_id')->getValue() || $this->get('name')->getValue()) { $isEmpty = FALSE; } return $isEmpty; }
{@inheritdoc}
entailment
public function activationHasSucceed(Fluent $extension) { $this->dispatch(new RefreshRouteCache()); $message = trans('orchestra/foundation::response.extensions.activate', $extension->getAttributes()); return $this->redirectWithMessage(handles('orchestra::extensions'), $message); }
Response when extension activation has succeed. @param \Illuminate\Support\Fluent $extension @return mixed
entailment
public function configure($content) { foreach ((array) $this->convertToArray($content) as $key => $value) { try { switch (trim(mb_strtolower($key))) { case '_id': case 'name': $this->name = trim((string) $value); break; case 'state': case 'status': $this->status = trim(mb_strtoupper((string) $value)); break; case 'extra': case 'optional': case 'data': $this->data = $value; break; } } catch (Exception $e) { // Do nothing } } }
{@inheritdoc}
entailment
protected function markAsRegistered($provider) { $this['events']->dispatch(\get_class($provider), [$provider]); parent::markAsRegistered($provider); }
Mark the given provider as registered. @param \Illuminate\Support\ServiceProvider $provider @return void
entailment
public function flush() { parent::flush(); $this->booted = false; $this->hasBeenBootstrapped = false; $this->bootingCallbacks = []; $this->bootedCallbacks = []; $this->reboundCallbacks = []; $this->resolvingCallbacks = []; $this->terminatingCallbacks = []; $this->afterResolvingCallbacks = []; $this->globalResolvingCallbacks = []; $this->serviceProviders = []; $this->deferredServices = []; $this->buildStack = []; }
Flush the container of all bindings and resolved instances. @return void
entailment
public static function postInstall(Event $event): void { require_once $event->getComposer()->getConfig()->get('vendor-dir').'/autoload.php'; self::clearCompiled(); }
Handle the post-install Composer event. @param \Composer\Script\Event $event @return void
entailment
private static function clearCompiled(): void { $laravel = new Application(getcwd()); if (\file_exists($servicesPath = $laravel->getCachedServicesPath())) { @\unlink($servicesPath); } if (\file_exists($packagesPath = $laravel->getCachedPackagesPath())) { @\unlink($packagesPath); } if (\file_exists($extensionServicesPath = $laravel->getCachedExtensionServicesPath())) { @\unlink($extensionServicesPath); } }
Clear the cached Laravel bootstrapping files. @return void
entailment
public function configure(Processor $processor, $vendor, $package = null) { $extension = $this->getExtension($vendor, $package); return $processor->configure($this, $extension); }
Configure an extension. GET (:orchestra)/extensions/configure/(:name) @param \Orchestra\Foundation\Processors\Extension\Configure $processor @param string $vendor @param string|null $package @return mixed
entailment
public function update(Processor $processor, $vendor, $package = null) { $extension = $this->getExtension($vendor, $package); return $processor->update($this, $extension, Input::all()); }
Update extension configuration. POST (:orchestra)/extensions/configure/(:name) @param \Orchestra\Foundation\Processors\Extension\Configure $processor @param string $vendor @param string|null $package @return mixed
entailment
public function showConfigurationChanger(array $data) { $name = $data['extension']->name; set_meta('title', Foundation::memory()->get("extensions.available.{$name}.name", $name)); set_meta('description', trans('orchestra/foundation::title.extensions.configure')); return view('orchestra/foundation::extensions.configure', $data); }
Response for extension configuration. @param array $data @return mixed
entailment
protected function convertToCarbon($value) { if ($value instanceof Carbon) { return $value; } if ($value instanceof DateTime) { return Carbon::instance($value); } if (\is_numeric($value)) { return Carbon::createFromTimestamp($value); } if (\is_string($value)) { return Carbon::parse($value); } }
Преобразует полученное значение в объект Carbon. @param Carbon|DateTime|int|string $value @return null|Carbon
entailment
public function processNode(Node $node, Scope $scope): array { $messages = []; $parameters = []; foreach ($node->getParams() as $parameter) { $variable = $parameter->var; if ($variable instanceof Variable && \is_string($variable->name)) { $parameters[$variable->name] = true; } } if ($node instanceof Closure) { foreach ($node->uses as $use) { if (\is_string($use->var->name)) { $parameters[$use->var->name] = true; } } } $unusedVariables = []; $usedVariables = []; $this->gatherVariablesUsage($node, $unusedVariables, $usedVariables, $parameters, $node); foreach ($unusedVariables as $varName => $var) { if (! isset($usedVariables[$varName])) { $messages[] = \sprintf('[Line %3s] %s has an unused variable $%s.', $var->getAttribute('startLine'), \in_array('name', $node->getSubNodeNames(), true) && isset($node->name) ? \sprintf('Function %s()', $node->name) : 'Closure function', $varName ); } } return $messages; }
@param \PhpParser\Node\FunctionLike $node @param \PHPStan\Analyser\Scope $scope @return string[] errors
entailment
public function buildForm(array $form, FormStateInterface $form_state, $cid = 0) { $this->сid = (int) $cid; if ($this->сid) { $this->characteristic = $this->database->characteristicsReadItem($this->сid); } return parent::buildForm($form, $form_state); }
{@inheritdoc}
entailment
public function getQuestion() { return $this->t('Are you sure you want to delete «@title»?', ['@title' => $this->characteristic->title]); }
{@inheritdoc}
entailment
public function submitForm(array &$form, FormStateInterface $form_state) { $this->database->characteristicsDeleteItem($this->characteristic->cid); // Очищает cache. Cache::invalidateTags(['site-commerce-characteristics']); drupal_set_message($this->t('The object <b>@title</b> was successfully deleted.', ['@title' => $this->characteristic->title])); $form_state->setRedirect('site_commerce.characteristics_editor'); }
{@inheritdoc}
entailment
public function buildRow(EntityInterface $entity) { $row['label'] = $this->getLabel($entity); $row['id'] = $entity->id(); return $row + parent::buildRow($entity); }
{@inheritdoc}
entailment
public function getDefaultOperations(EntityInterface $entity) { /** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity */ $operations = parent::getDefaultOperations($entity); if ($this->entityType->hasKey('status')) { if (!$entity->status() && $entity->hasLinkTemplate('enable')) { $operations['enable'] = [ 'title' => t('Enable'), 'weight' => -10, 'url' => $entity->urlInfo('enable'), ]; } elseif ($entity->hasLinkTemplate('disable')) { $operations['disable'] = [ 'title' => t('Disable'), 'weight' => 40, 'url' => $entity->urlInfo('disable'), ]; } } // $operations['duplicate'] = [ // 'title' => $this->t('Duplicate'), // 'weight' => 11, // 'url' => $entity->urlInfo('duplicate-form'), // ]; return $operations; }
{@inheritdoc}
entailment
protected function responseOnUnauthorized($request) { if ($request->ajax()) { return $this->response->make('Unauthorized', 401); } $url = $this->config->get('orchestra/foundation::routes.guest'); return $this->response->redirectGuest($this->foundation->handles($url)); }
Response on authorized request. @param \Illuminate\Http\Request $request @return mixed
entailment
public function bootstrap(Application $app) { if ($app->make('orchestra.extension.status')->is('safe')) { Messages::extend(function (MessageBag $messages) { $messages->add('info', \trans('orchestra/foundation::response.safe-mode')); }); } }
Bootstrap the given application. @param \Illuminate\Contracts\Foundation\Application $app @return void
entailment
public function getSourcesNamesList() { return \is_array($value = $this->getContentValue('content.sources', null)) ? \array_unique(array_filter($value)) : null; }
Возвращает имена источников, используемых в данном типе отчета. @return string[]|array|null
entailment
public function getFieldsList() { return \is_array($value = $this->getContentValue('content.fields', null)) ? \array_unique(array_filter($value)) : null; }
Возвращает имена филдов данных, используемых в данном типе отчета. @return string[]|array|null
entailment
public function setConfigurationPart($configurationID, array $configurationPart) { if (!array_key_exists($configurationID, $this->configuration)) { throw new \InvalidArgumentException(sprintf( 'The configuration ID must be a one of %s, [ %s ] is given.', implode(' and ', array_keys($this->configuration)), $configurationID )); } $this->configuration[$configurationID][] = $configurationPart; }
@param string $configurationID @param array $configurationPart @throws \InvalidArgumentException
entailment
public function showCategories($insert = false, $callback = false, $section = false) { if ($insert && !$callback) { abort(404); } if ($section) { $LFM = session()->get('LFM'); if ($LFM[$section]) { if ($LFM[$section]['options']['true_mime_type']) { $trueMimeType = $LFM[$section]['options']['true_mime_type']; } else { $trueMimeType = false; } } else { $trueMimeType = false; } $available = LFM_CheckAllowInsert($section)['available']; } else { $trueMimeType = false; $available = 'true'; } //check user can upload private file if (config('laravel_file_manager.allow_upload_private_file')) { $files = File::get_uncategory_files($trueMimeType); $categories = Category::get_root_categories(); $parent_id = 0; $breadcrumbs[] = ['id' => 0, 'title' => __('filemanager.root_folder'), 'type' => 'Enable']; $result['parent_category_name'] = __('filemanager.root_folder'); } else { $files = File::where('category_id', '=', -2)->get(); $categories = Category::where('parent_category_id', '=', -2)->get(); $parent_id = -2; $breadcrumbs[] = ['id' => -2, 'title' => __('filemanager.share_folder'), 'type' => 'Enable']; $result['parent_category_name'] = __('filemanager.root_folder'); } $id = Cookie::get('current_category_id', 0); $button_upload_link = route('LFM.FileUpload', ['category_id' => LFM_getEncodeId($id), 'callback' => 'refresh', 'section' => LFM_CheckFalseString($section)]) ; if($id == 0) { $allCategories['share'] = LFM_BuildMenuTree(Category::all(), 'parent_category_id', false, false, -2); $allCategories['public'] = LFM_BuildMenuTree(Category::all(), 'parent_category_id', false, false, -1); $allCategories['root'] = LFM_BuildMenuTree(Category::where('user_id', '=', $this->getUserId())->get(), 'parent_category_id', false, false, 0); $category = false; $allCategories = json_encode($allCategories); if(count($files) ==0 && count($categories) ==0) { $show_icon_folder = true ; } else { $show_icon_folder = false ; } return view('laravel_file_manager::index', compact('categories', 'files', 'category', 'breadcrumbs', 'insert', 'section', 'callback', 'allCategories', 'parent_id', 'available','show_icon_folder','button_upload_link')); } else { $allCategories['root'] = LFM_BuildMenuTree(Category::where('user_id', '=', $this->getUserId())->get(), 'parent_category_id', false, $id, 0); $allCategories['share'] = LFM_BuildMenuTree(Category::all(), 'parent_category_id', false, $id, -2); $allCategories['public'] = LFM_BuildMenuTree(Category::all(), 'parent_category_id', false, $id, -1); $allCategories = json_encode($allCategories); $parent_id = $id; $category = Category::with('parent_category')->find((int)$id); $breadcrumbs = $this->getBreadcrumbs($id, $category); $available = LFM_CheckAllowInsert($section)['available']; if (in_array(-2, Category::getAllParentId($id))) { if ($trueMimeType) { $files = File::where('category_id', '=', $id); $files = $files->whereIn('mimeType', $trueMimeType)->get(); } else { $files = File::where('category_id', '=', $id)->get(); } $categories = $category->child_categories; $result['parent_category_name'] = 'Share'; } elseif (in_array(-1, Category::getAllParentId($id))) { if ($trueMimeType) { $files = File::where('category_id', '=', $id); $files = $files->whereIn('mimeType', $trueMimeType)->get(); } else { $files = File::where('category_id', '=', $id)->get(); } $categories = $category->child_categories; $parent_category_name = 'Public'; } else { $files = $category->UserFiles($trueMimeType); $categories = $category->user_child_categories; $parent_category_name= $category->title; } if (in_array($id, [-1, -2])) { $category = false; } $parent_category_id = LFM_getEncodeId($id); if(count($files) ==0 && count($categories) ==0) { $show_icon_folder = true ; } else { $show_icon_folder = false ; } return view('laravel_file_manager::index', compact('categories', 'files', 'category', 'breadcrumbs', 'insert', 'section', 'callback', 'allCategories', 'parent_id', 'available','show_icon_folder','button_upload_link')); } }
categories
entailment
public function load(string $helper) { if (isset($this->filters[$helper])) { return call_user_func_array($this->filters[$helper], array_slice(func_get_args(), 1)); } }
Check if filter is registered, call filter if is registered @param string $helper @return mixed
entailment
public function collect() { $self = $this; $fileSystem = new FileSystem(); $environment = $this->environment; $this->testTargetRepository->walkOnResources(function ($resource, $index, TestTargetRepository $testTargetRepository) use ($self, $fileSystem, $environment) { $absoluteTargetPath = $fileSystem->getAbsolutePath($resource, $environment->getWorkingDirectoryAtStartup()); if (!file_exists($absoluteTargetPath)) { throw new \UnexpectedValueException(sprintf('The directory or file [ %s ] is not found', $absoluteTargetPath)); } if (is_dir($absoluteTargetPath)) { $files = Finder::create() ->files() ->in($absoluteTargetPath) ->depth($self->isRecursive() ? '>= 0' : '== 0') ->sortByName(); foreach ($files as $file) { call_user_func(array($self, 'collectTestCasesFromFile'), $file->getPathname()); } } else { call_user_func(array($self, 'collectTestCasesFromFile'), $absoluteTargetPath); } }); return $this->suite; }
Collects tests. @return mixed @throws \UnexpectedValueException
entailment
protected function getRecord($tableName, $where = null) { $record = $this->database->table($tableName)->order('RAND()'); return $where ? $record->where($where)->limit(1)->fetch() : $record->limit(1)->fetch(); }
Returns random record from given table. @param string $tableName @return IRow|false
entailment
protected function getId($tableName, $where = null) { $record = $this->getRecord($tableName, $where); return $record ? $record->id : null; }
Returns id of random record from given table. @param string $tableName @return int
entailment
public function scaffold() { $this->updateDependencies([ "vue" => "^2.4.3", ]); $this->updateDevDependencies([ "vue-loader" => "^13.3.0", "vue-template-compiler" => "^2.5.2", ]); $this->updateJavascript($this->name); $this->updateAssets($this->name); }
Scaffold a Vue boilerplate preset. @return void
entailment
protected function registerClientScript() { //UEditorAsset::register($this->view); KindEditorAsset::register($this->view); $clientOptions = Json::encode($this->clientOptions); $fileManagerJson = Url::to(['Kupload', 'action' => 'fileManagerJson']); $uploadJson = Url::to(['Kupload', 'action' => 'uploadJson']); switch ($this->editorType) { case 'uploadButton': $url = Url::to(['Kupload', 'action' => 'uploadJson', 'dir' => 'file']); $script = <<<EOT KindEditor.ready(function(K) { var uploadbutton = K.uploadbutton({ button : K('#uploadButton')[0], fieldName : 'imgFile', url : '{$url}', afterUpload : function(data) { if (data.error === 0) { var url = K.formatUrl(data.url, 'absolute'); K('#{$this->id}').val(url); } else { alert(data.message); } }, afterError : function(str) { alert('自定义错误信息: ' + str); } }); uploadbutton.fileBox.change(function(e) { uploadbutton.submit(); }); }); EOT; break; case 'colorpicker': $script = <<<EOT KindEditor.ready(function(K) { var colorpicker; K('#colorpicker').bind('click', function(e) { e.stopPropagation(); if (colorpicker) { colorpicker.remove(); colorpicker = null; return; } var colorpickerPos = K('#colorpicker').pos(); colorpicker = K.colorpicker({ x : colorpickerPos.x, y : colorpickerPos.y + K('#colorpicker').height(), z : 19811214, selectedColor : 'default', noColor : '无颜色', click : function(color) { K('#{$this->id}').val(color); colorpicker.remove(); colorpicker = null; } }); }); K(document).click(function() { if (colorpicker) { colorpicker.remove(); colorpicker = null; } }); }); EOT; break; case 'file-manager': $script = <<<EOT KindEditor.ready(function(K) { var editor = K.editor({ fileManagerJson : '{$fileManagerJson}' }); K('#filemanager').click(function() { editor.loadPlugin('filemanager', function() { editor.plugin.filemanagerDialog({ viewType : 'VIEW', dirName : 'image', clickFn : function(url, title) { K('#{$this->id}').val(url); editor.hideDialog(); } }); }); }); }); EOT; break; case 'image-dialog': $script = <<<EOT KindEditor.ready(function(K) { var editor = K.editor({ allowFileManager : true, "uploadJson":"{$uploadJson}", "fileManagerJson":"{$fileManagerJson}", }); K('#imageBtn').click(function() { editor.loadPlugin('image', function() { editor.plugin.imageDialog({ imageUrl : K('#{$this->id}').val(), clickFn : function(url, title, width, height, border, align) { K('#{$this->id}').val(url); editor.hideDialog(); } }); }); }); }); EOT; break; case 'file-dialog': $script = <<<EOT KindEditor.ready(function(K) { var editor = K.editor({ allowFileManager : true, "uploadJson":"{$uploadJson}", "fileManagerJson":"{$fileManagerJson}", }); K('#insertfile').click(function() { editor.loadPlugin('insertfile', function() { editor.plugin.fileDialog({ fileUrl : K('#{$this->id}').val(), clickFn : function(url, title) { K('#{$this->id}').val(url); editor.hideDialog(); } }); }); }); }); EOT; break; default: $script = "KindEditor.ready(function(K) { K.create('#" . $this->id . "', " . $clientOptions . "); });"; break; } $this->view->registerJs($script, View::POS_READY); }
注册客户端脚本
entailment
public function serialize(MessageInterface $message): string { if (method_exists($message, 'getProcess')) { $process = $message->getProcess(); } else { $process = false; $payload = $message->getPayload(); if (isset($payload['delayed'])) { $process = DateTime::from($payload['delayed'])->getTimestamp(); } } $data = [ 'message' => [ 'id' => $message->getId(), 'type' => $message->getType(), 'created' => $message->getCreated(), 'process' => $process, 'payload' => $message->getPayload(), 'execute_at' => $process, ] ]; return JSON::encode($data); }
{@inheritdoc}
entailment
public function unserialize(string $string): MessageInterface { $data = JSON::decode($string, Json::FORCE_ARRAY); $message = $data['message']; if (!isset($message['execute_at'])) { $message['execute_at'] = $message['process']; } if (strpos($message['created'], ' ') !== false) { $parts = explode(' ', $message['created']); $message['created'] = end($parts); } return new HermesMessage($message['type'], $message['payload'], $message['id'], $message['created'], $message['execute_at']); }
{@inheritdoc}
entailment
public function send($method, $uri, array $options = []) { $request = new Request($method, $uri); return $this->client->send($request, $options); }
/* {@inheritdoc}
entailment
private function buildConfig() { $env = getenv('CRM_ENV'); $configData = [ 'paths' => [ 'migrations' => [ '%%PHINX_CONFIG_DIR%%/../../../../migrations' ] ], 'environments' => [ 'default_migration_table' => 'phinxlog', 'default_database' => $env, ], ]; foreach ($this->moduleManager->getModules() as $module) { $reflector = new \ReflectionClass($module); $configData['paths']['migrations'][] = dirname($reflector->getFileName()) . '/migrations'; } $configData['environments'][$env] = [ 'adapter' => $this->envConfig->get('CRM_DB_ADAPTER'), 'host' => $this->envConfig->get('CRM_DB_HOST'), 'name' => $this->envConfig->get('CRM_DB_NAME'), 'user' => $this->envConfig->get('CRM_DB_USER'), 'pass' => $this->envConfig->get('CRM_DB_PASS'), 'port' => $this->envConfig->get('CRM_DB_PORT'), 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', ]; return $configData; }
Build phinx config from config.local.neon @return array
entailment
public function clone($destination) { $fs = new Filesystem; if (! $fs->exists($destination)) { $fs->mkdir($destination, 0755); } $fs->mirror($this->source, $destination, null, $this->options); }
Perform source cloning. @param string $destination @return void
entailment
public function copy($file) { $fs = new Filesystem; if (! $fs->exists(dirname($file))) { $fs->mkdir(dirname($file), 0755); } $fs->copy($this->source, $file, true); }
Perform source coping. @param string $file @return void
entailment
public function loadState(array $params) { parent::loadState($params); $this->getPaginator()->page = $this->page; }
Loads state informations. @param array @return void
entailment
public function run($suite) { $printer = $this->createPrinter(); $testResult = new \PHPUnit_Framework_TestResult(); $testRunner = new TestRunner(); $testRunner->setTestResult($testResult); $testRunner->doRun($suite, $this->createArguments($printer, $testResult), false); $this->notification = $printer->getNotification(); }
Runs tests based on the given \PHPUnit_Framework_TestSuite object. @param \PHPUnit_Framework_TestSuite $suite
entailment
protected function createPrinter() { if (defined('PHPUnit_TextUI_ResultPrinter::COLOR_AUTO') && defined('PHPUnit_TextUI_ResultPrinter::COLOR_NEVER')) { $shouldColor = $this->terminal->shouldColor() ? \PHPUnit_TextUI_ResultPrinter::COLOR_AUTO : \PHPUnit_TextUI_ResultPrinter::COLOR_NEVER; } else { $shouldColor = $this->terminal->shouldColor(); } if ($this->hasDetailedProgress()) { $printer = new DetailedProgressPrinter(null, false, $shouldColor); } else { $printer = new ProgressPrinter(null, false, $shouldColor); } $printer->setRunner($this); return $printer; }
@return \Stagehand\TestRunner\Runner\PHPUnitRunner\Printer\ResultPrinter @since Method available since Release 3.3.0
entailment
protected function createArguments(ResultPrinter $printer, \PHPUnit_Framework_TestResult $testResult) { $arguments = array(); $arguments['printer'] = $printer; Stream::register(); $arguments['listeners'] = array( new TestDoxPrinter( fopen('testdox://'.spl_object_hash($testResult), 'w'), $this->terminal, $this->prettifier() ), ); if ($this->hasJUnitXMLFile()) { $arguments['listeners'][] = new JUnitXMLPrinter( null, $this->createJUnitXMLWriter(), $this->testTargetRepository ); } if ($this->shouldStopOnFailure()) { $arguments['stopOnFailure'] = true; $arguments['stopOnError'] = true; } $phpunitConfiguration = $this->phpunitConfigurationFactory->create(); if (!is_null($phpunitConfiguration)) { $arguments['configuration'] = $phpunitConfiguration->getFileName(); } return $arguments; }
@param \Stagehand\TestRunner\Runner\PHPUnitRunner\Printer\ResultPrinter $printer @param \PHPUnit_Framework_TestResult $testResult @return array @since Method available since Release 3.3.0
entailment
private function getFiltered(bool $public = true): array { $result = []; foreach ($this->events as $event) { if ($event['is_public'] === $public) { $result[] = $event; } } return $result; }
Returns array with events filtered by event's visibility @param bool $public @return array
entailment
public function quoteValue($str) { if (is_int($str) || is_float($str)) { return $str; } return "'" . addcslashes(str_replace("'", "''", $str), "\000\n\r\\\032") . "'"; }
Quotes a string value for use in a query. @param string $str string to be quoted @return string the properly quoted string @see http://www.php.net/manual/en/function.PDO-quote.php
entailment
protected function getTableNames($schema = '') { $client = $this->connection->getClient(); $tables = $client->listTables(); $schemaName = $client->getKeyspace()->name(); $names = []; foreach ($tables as $table) { $name = array_get($table, 'table_name'); $resourceName = $name; $internalName = $schemaName . '.' . $resourceName; $name = $resourceName; $quotedName = $this->quoteTableName($schemaName) . '.' . $this->quoteTableName($resourceName);; $settings = compact('schemaName', 'resourceName', 'name', 'internalName', 'quotedName'); $names[strtolower($name)] = new TableSchema($settings); } return $names; }
Returns all table names in the database. @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema. If not empty, the returned table names will be prefixed with the schema name. @return array all table names in the database.
entailment
public function utmParams() : array { return array_filter([ 'utm_source' => $this->utmSession->utmSource, 'utm_medium' => $this->utmSession->utmMedium, 'utm_campaign' => $this->utmSession->utmCampaign, 'utm_content' => $this->utmSession->utmContent, ]); }
Returns array with UTM parameters of campaign @return array
entailment
protected function buildTrackingParamsSession() { $this->utmSession = $this->getSession('utm_session'); $this->utmSession->setExpiration('30 minutes'); if ($this->getParameter('utm_source')) { $this->utmSession->utmSource = $this->getParameter('utm_source'); } if ($this->getParameter('utm_medium')) { $this->utmSession->utmMedium = $this->getParameter('utm_medium'); } if ($this->getParameter('utm_campaign')) { $this->utmSession->utmCampaign = $this->getParameter('utm_campaign'); } if ($this->getParameter('utm_content')) { $this->utmSession->utmContent = $this->getParameter('utm_content'); } // store additional parameters $this->additionalTrackingSession = $this->getSession('additional_tracking_params'); $this->additionalTrackingSession->setExpiration('30 minutes'); if ($this->getParameter('banner_variant')) { $this->additionalTrackingSession->bannerVariant = $this->getParameter('banner_variant'); } }
Store sales funnel UTM parameters and additional tracking parameters to session
entailment
public function onMethodVerificationSuccess(Member $member, $method) { $this->getAuditLogger()->info( sprintf( '"%s" (ID: %s) successfully verified using MFA method', $member->Email ?: $member->Title, $member->ID ), ['method' => get_class($method)] ); }
A successful login using an MFA method @param Member $member @param MethodInterface $method
entailment
public function onMethodVerificationFailure(Member $member, $method) { $context = [ 'method' => get_class($method), ]; if ($lockOutAfterCount = $member->config()->get('lock_out_after_incorrect_logins')) { // Add information about how many attempts have been made $context['attempts'] = $member->FailedLoginCount; $context['attempt_limit'] = $lockOutAfterCount; } $this->getAuditLogger()->info(sprintf( '"%s" (ID: %s) failed to verify using MFA method', $member->Email ?: $member->Title, $member->ID ), $context); }
A failed login using an MFA method @param Member $member @param MethodInterface $method
entailment
public function onSkipRegistration(Member $member) { $this->getAuditLogger()->info(sprintf( '"%s" (ID: %s) skipped MFA registration', $member->Email ?: $member->Title, $member->ID )); }
A user has skipped MFA registration when it is enabled but optional, or within a grace period @param Member $member
entailment
public function getDatabaseSeriesData(Criteria $criteria) { $dbData = []; $res = $this->database->query("SELECT {$criteria->getValueField()} AS value, calendar.week AS week, calendar.month AS month, calendar.year AS year, {$this->getSeries($criteria->getSeries())} {$criteria->getTableName()}.id FROM {$criteria->getTableName()} INNER JOIN calendar ON date({$criteria->getTableName()}.{$criteria->getTimeField()}) = calendar.date AND calendar.date >= '{$criteria->getStartDate()}' AND calendar.date <= '{$criteria->getEndDate()}' {$criteria->getJoin()} WHERE {$criteria->getTableName()}.{$criteria->getTimeField()} >= '{$criteria->getStartDate()}' AND {$criteria->getTableName()}.{$criteria->getTimeField()} <= '{$criteria->getEndDate()}' {$criteria->getWhere()} GROUP BY calendar.year,calendar.month,calendar.week" . $this->getGroupBy($criteria->getGroupBy()) . ' '); foreach ($res as $row) { $value = 0; if ($row->id != null) { $value = $row['value']; } $date = new \DateTime(); $date->setISODate($row->year, $row->week); if (isset($row->name)) { $dbData[$row->name][$date->format('Y-m-d')] = $value; } else { $dbData[' '][$date->format('Y-m-d')] = $value; } } return $dbData; }
pridat do vsetkych queries ?
entailment
public function run() { \DB::table('lfm_file_mime_types')->delete(); \DB::table('lfm_file_mime_types')->insert(array ( 0 => array ( 'id' => 1, 'user_id' => 21, 'name' => 'JPEG Image', 'mimeType' => 'image/jpeg', 'ext' => 'jpeg', 'icon_class' => 'fa-image', 'description' => 'some description', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 1 => array ( 'id' => 2, 'user_id' => 21, 'name' => '3GP', 'mimeType' => 'video/3gpp', 'ext' => '3gp', 'icon_class' => '', 'description' => 'Wikipedia: 3GP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 2 => array ( 'id' => 3, 'user_id' => 21, 'name' => '3GP2', 'mimeType' => 'video/3gpp2', 'ext' => '3g2', 'icon_class' => '', 'description' => 'Wikipedia: 3G2', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 3 => array ( 'id' => 4, 'user_id' => 21, 'name' => '3GPP MSEQ File', 'mimeType' => 'application/vnd.mseq', 'ext' => 'mseq', 'icon_class' => '', 'description' => 'IANA: 3GPP MSEQ File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 4 => array ( 'id' => 5, 'user_id' => 21, 'name' => '3M Post It Notes', 'mimeType' => 'application/vnd.3m.post-it-notes', 'ext' => 'pwn', 'icon_class' => '', 'description' => 'IANA: 3M Post It Notes', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 5 => array ( 'id' => 6, 'user_id' => 21, 'name' => '3rd Generation Partnership Project - Pic Large', 'mimeType' => 'application/vnd.3gpp.pic-bw-large', 'ext' => 'plb', 'icon_class' => '', 'description' => '3GPP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 6 => array ( 'id' => 7, 'user_id' => 21, 'name' => '3rd Generation Partnership Project - Pic Small', 'mimeType' => 'application/vnd.3gpp.pic-bw-small', 'ext' => 'psb', 'icon_class' => '', 'description' => '3GPP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 7 => array ( 'id' => 8, 'user_id' => 21, 'name' => '3rd Generation Partnership Project - Pic Var', 'mimeType' => 'application/vnd.3gpp.pic-bw-var', 'ext' => 'pvb', 'icon_class' => '', 'description' => '3GPP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 8 => array ( 'id' => 9, 'user_id' => 21, 'name' => '3rd Generation Partnership Project - Transaction Capabilities Application Part', 'mimeType' => 'application/vnd.3gpp2.tcap', 'ext' => 'tcap', 'icon_class' => '', 'description' => '3GPP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 9 => array ( 'id' => 10, 'user_id' => 21, 'name' => '7-Zip', 'mimeType' => 'application/x-7z-compressed', 'ext' => '7z', 'icon_class' => '', 'description' => 'Wikipedia: 7-Zip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 10 => array ( 'id' => 11, 'user_id' => 21, 'name' => 'AbiWord', 'mimeType' => 'application/x-abiword', 'ext' => 'abw', 'icon_class' => '', 'description' => 'Wikipedia: AbiWord', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 11 => array ( 'id' => 12, 'user_id' => 21, 'name' => 'Ace Archive', 'mimeType' => 'application/x-ace-compressed', 'ext' => 'ace', 'icon_class' => '', 'description' => 'Wikipedia: ACE', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 12 => array ( 'id' => 13, 'user_id' => 21, 'name' => 'Active Content Compression', 'mimeType' => 'application/vnd.americandynamics.acc', 'ext' => 'acc', 'icon_class' => '', 'description' => 'IANA: Active Content Compression', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 13 => array ( 'id' => 14, 'user_id' => 21, 'name' => 'ACU Cobol', 'mimeType' => 'application/vnd.acucobol', 'ext' => 'acu', 'icon_class' => '', 'description' => 'IANA: ACU Cobol', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 14 => array ( 'id' => 15, 'user_id' => 21, 'name' => 'ACU Cobol', 'mimeType' => 'application/vnd.acucorp', 'ext' => 'atc', 'icon_class' => '', 'description' => 'IANA: ACU Cobol', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 15 => array ( 'id' => 16, 'user_id' => 21, 'name' => 'Adaptive differential pulse-code modulation', 'mimeType' => 'audio/adpcm', 'ext' => 'adp', 'icon_class' => '', 'description' => 'Wikipedia: ADPCM', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 16 => array ( 'id' => 17, 'user_id' => 21, 'name' => 'Adobe (Macropedia) Authorware - Binary File', 'mimeType' => 'application/x-authorware-bin', 'ext' => 'aab', 'icon_class' => '', 'description' => 'Wikipedia: Authorware', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 17 => array ( 'id' => 18, 'user_id' => 21, 'name' => 'Adobe (Macropedia) Authorware - Map', 'mimeType' => 'application/x-authorware-map', 'ext' => 'aam', 'icon_class' => '', 'description' => 'Wikipedia: Authorware', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 18 => array ( 'id' => 19, 'user_id' => 21, 'name' => 'Adobe (Macropedia) Authorware - Segment File', 'mimeType' => 'application/x-authorware-seg', 'ext' => 'aas', 'icon_class' => '', 'description' => 'Wikipedia: Authorware', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 19 => array ( 'id' => 20, 'user_id' => 21, 'name' => 'Adobe AIR Application', 'mimeType' => 'application/vnd.adobe.air-application-installer-package+zip', 'ext' => 'air', 'icon_class' => '', 'description' => 'Building AIR Applications', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 20 => array ( 'id' => 21, 'user_id' => 21, 'name' => 'Adobe Flash', 'mimeType' => 'application/x-shockwave-flash', 'ext' => 'swf', 'icon_class' => '', 'description' => 'Wikipedia: Adobe Flash', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 21 => array ( 'id' => 22, 'user_id' => 21, 'name' => 'Adobe Flex Project', 'mimeType' => 'application/vnd.adobe.fxp', 'ext' => 'fxp', 'icon_class' => '', 'description' => 'IANA: Adobe Flex Project', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 22 => array ( 'id' => 23, 'user_id' => 21, 'name' => 'Adobe Portable Document Format', 'mimeType' => 'application/pdf', 'ext' => 'pdf', 'icon_class' => '', 'description' => 'Adobe PDF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 23 => array ( 'id' => 24, 'user_id' => 21, 'name' => 'Adobe PostScript Printer Description File Format', 'mimeType' => 'application/vnd.cups-ppd', 'ext' => 'ppd', 'icon_class' => '', 'description' => 'IANA: Cups', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 24 => array ( 'id' => 25, 'user_id' => 21, 'name' => 'Adobe Shockwave Player', 'mimeType' => 'application/x-director', 'ext' => 'dir', 'icon_class' => '', 'description' => 'Wikipedia: Adobe Shockwave Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 25 => array ( 'id' => 26, 'user_id' => 21, 'name' => 'Adobe XML Data Package', 'mimeType' => 'application/vnd.adobe.xdp+xml', 'ext' => 'xdp', 'icon_class' => '', 'description' => 'Wikipedia: XML Data Package', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 26 => array ( 'id' => 27, 'user_id' => 21, 'name' => 'Adobe XML Forms Data Format', 'mimeType' => 'application/vnd.adobe.xfdf', 'ext' => 'xfdf', 'icon_class' => '', 'description' => 'Wikipedia: XML Portable Document Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 27 => array ( 'id' => 28, 'user_id' => 21, 'name' => 'Advanced Audio Coding (AAC)', 'mimeType' => 'audio/x-aac', 'ext' => 'aac', 'icon_class' => '', 'description' => 'Wikipedia: AAC', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 28 => array ( 'id' => 29, 'user_id' => 21, 'name' => 'Ahead AIR Application', 'mimeType' => 'application/vnd.ahead.space', 'ext' => 'ahead', 'icon_class' => '', 'description' => 'IANA: Ahead AIR Application', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 29 => array ( 'id' => 30, 'user_id' => 21, 'name' => 'AirZip FileSECURE', 'mimeType' => 'application/vnd.airzip.filesecure.azf', 'ext' => 'azf', 'icon_class' => '', 'description' => 'IANA: AirZip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 30 => array ( 'id' => 31, 'user_id' => 21, 'name' => 'AirZip FileSECURE', 'mimeType' => 'application/vnd.airzip.filesecure.azs', 'ext' => 'azs', 'icon_class' => '', 'description' => 'IANA: AirZip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 31 => array ( 'id' => 32, 'user_id' => 21, 'name' => 'Amazon Kindle eBook format', 'mimeType' => 'application/vnd.amazon.ebook', 'ext' => 'azw', 'icon_class' => '', 'description' => 'Kindle Direct Publishing', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 32 => array ( 'id' => 33, 'user_id' => 21, 'name' => 'AmigaDE', 'mimeType' => 'application/vnd.amiga.ami', 'ext' => 'ami', 'icon_class' => '', 'description' => 'IANA: Amiga', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 33 => array ( 'id' => 34, 'user_id' => 21, 'name' => 'Andrew Toolkit', 'mimeType' => 'application/andrew-inset', 'ext' => 'N/A', 'icon_class' => '', 'description' => 'IANA - Andrew Inset', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 34 => array ( 'id' => 35, 'user_id' => 21, 'name' => 'Android Package Archive', 'mimeType' => 'application/vnd.android.package-archive', 'ext' => 'apk', 'icon_class' => '', 'description' => 'Wikipedia: APK File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 35 => array ( 'id' => 36, 'user_id' => 21, 'name' => 'ANSER-WEB Terminal Client - Certificate Issue', 'mimeType' => 'application/vnd.anser-web-certificate-issue-initiation', 'ext' => 'cii', 'icon_class' => '', 'description' => 'IANA: ANSWER-WEB', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 36 => array ( 'id' => 37, 'user_id' => 21, 'name' => 'ANSER-WEB Terminal Client - Web Funds Transfer', 'mimeType' => 'application/vnd.anser-web-funds-transfer-initiation', 'ext' => 'fti', 'icon_class' => '', 'description' => 'IANA: ANSWER-WEB', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 37 => array ( 'id' => 38, 'user_id' => 21, 'name' => 'Antix Game Player', 'mimeType' => 'application/vnd.antix.game-component', 'ext' => 'atx', 'icon_class' => '', 'description' => 'IANA: Antix Game Component', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 38 => array ( 'id' => 39, 'user_id' => 21, 'name' => 'Apple Installer Package', 'mimeType' => 'application/vnd.apple.installer+xml', 'ext' => 'mpkg', 'icon_class' => '', 'description' => 'IANA: Apple Installer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 39 => array ( 'id' => 40, 'user_id' => 21, 'name' => 'Applixware', 'mimeType' => 'application/applixware', 'ext' => 'aw', 'icon_class' => '', 'description' => 'Vistasource', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 40 => array ( 'id' => 41, 'user_id' => 21, 'name' => 'Archipelago Lesson Player', 'mimeType' => 'application/vnd.hhe.lesson-player', 'ext' => 'les', 'icon_class' => '', 'description' => 'IANA: Archipelago Lesson Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 41 => array ( 'id' => 42, 'user_id' => 21, 'name' => 'Arista Networks Software Image', 'mimeType' => 'application/vnd.aristanetworks.swi', 'ext' => 'swi', 'icon_class' => '', 'description' => 'IANA: Arista Networks Software Image', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 42 => array ( 'id' => 43, 'user_id' => 21, 'name' => 'Assembler Source File', 'mimeType' => 'text/x-asm', 'ext' => 's', 'icon_class' => '', 'description' => 'Wikipedia: Assembly', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 43 => array ( 'id' => 44, 'user_id' => 21, 'name' => 'Atom Publishing Protocol', 'mimeType' => 'application/atomcat+xml', 'ext' => 'atomcat', 'icon_class' => '', 'description' => 'RFC 5023', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 44 => array ( 'id' => 45, 'user_id' => 21, 'name' => 'Atom Publishing Protocol Service Document', 'mimeType' => 'application/atomsvc+xml', 'ext' => 'atomsvc', 'icon_class' => '', 'description' => 'RFC 5023', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 45 => array ( 'id' => 46, 'user_id' => 21, 'name' => 'Atom Syndication Format', 'mimeType' => 'application/atom', 'ext' => 'atom', 'icon_class' => '', 'description' => 'RFC 4287', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 46 => array ( 'id' => 47, 'user_id' => 21, 'name' => 'Attribute Certificate', 'mimeType' => 'application/pkix-attr-cert', 'ext' => 'ac', 'icon_class' => '', 'description' => 'RFC 5877', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 47 => array ( 'id' => 48, 'user_id' => 21, 'name' => 'Audio Interchange File Format', 'mimeType' => 'audio/x-aiff', 'ext' => 'aif', 'icon_class' => '', 'description' => 'Wikipedia: Audio Interchange File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 48 => array ( 'id' => 49, 'user_id' => 21, 'name' => 'Audio Video Interleave (AVI)', 'mimeType' => 'video/x-msvideo', 'ext' => 'avi', 'icon_class' => '', 'description' => 'Wikipedia: AVI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 49 => array ( 'id' => 50, 'user_id' => 21, 'name' => 'Audiograph', 'mimeType' => 'application/vnd.audiograph', 'ext' => 'aep', 'icon_class' => '', 'description' => 'IANA: Audiograph', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 50 => array ( 'id' => 51, 'user_id' => 21, 'name' => 'AutoCAD DXF', 'mimeType' => 'image/vnd.dxf', 'ext' => 'dxf', 'icon_class' => '', 'description' => 'Wikipedia: AutoCAD DXF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 51 => array ( 'id' => 52, 'user_id' => 21, 'name' => 'Autodesk Design Web Format (DWF)', 'mimeType' => 'model/vnd.dwf', 'ext' => 'dwf', 'icon_class' => '', 'description' => 'Wikipedia: Design Web Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 52 => array ( 'id' => 53, 'user_id' => 21, 'name' => 'BAS Partitur Format', 'mimeType' => 'text/plain-bas', 'ext' => 'par', 'icon_class' => '', 'description' => 'Phonetik BAS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 53 => array ( 'id' => 54, 'user_id' => 21, 'name' => 'Binary CPIO Archive', 'mimeType' => 'application/x-bcpio', 'ext' => 'bcpio', 'icon_class' => '', 'description' => 'Wikipedia: cpio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 54 => array ( 'id' => 55, 'user_id' => 21, 'name' => 'Binary Data', 'mimeType' => 'application/octet-stream', 'ext' => 'bin', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 55 => array ( 'id' => 56, 'user_id' => 21, 'name' => 'Bitmap Image File', 'mimeType' => 'image/bmp', 'ext' => 'bmp', 'icon_class' => '', 'description' => 'Wikipedia: BMP File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 56 => array ( 'id' => 57, 'user_id' => 21, 'name' => 'BitTorrent', 'mimeType' => 'application/x-bittorrent', 'ext' => 'torrent', 'icon_class' => '', 'description' => 'Wikipedia: BitTorrent', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 57 => array ( 'id' => 58, 'user_id' => 21, 'name' => 'Blackberry COD File', 'mimeType' => 'application/vnd.rim.cod', 'ext' => 'cod', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 58 => array ( 'id' => 59, 'user_id' => 21, 'name' => 'Blueice Research Multipass', 'mimeType' => 'application/vnd.blueice.multipass', 'ext' => 'mpm', 'icon_class' => '', 'description' => 'IANA: Multipass', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 59 => array ( 'id' => 60, 'user_id' => 21, 'name' => 'BMI Drawing Data Interchange', 'mimeType' => 'application/vnd.bmi', 'ext' => 'bmi', 'icon_class' => '', 'description' => 'IANA: BMI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 60 => array ( 'id' => 61, 'user_id' => 21, 'name' => 'Bourne Shell Script', 'mimeType' => 'application/x-sh', 'ext' => 'sh', 'icon_class' => '', 'description' => 'Wikipedia: Bourne Shell', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 61 => array ( 'id' => 62, 'user_id' => 21, 'name' => 'BTIF', 'mimeType' => 'image/prs.btif', 'ext' => 'btif', 'icon_class' => '', 'description' => 'IANA: BTIF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 62 => array ( 'id' => 63, 'user_id' => 21, 'name' => 'BusinessObjects', 'mimeType' => 'application/vnd.businessobjects', 'ext' => 'rep', 'icon_class' => '', 'description' => 'IANA: BusinessObjects', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 63 => array ( 'id' => 64, 'user_id' => 21, 'name' => 'Bzip Archive', 'mimeType' => 'application/x-bzip', 'ext' => 'bz', 'icon_class' => '', 'description' => 'Wikipedia: Bzip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 64 => array ( 'id' => 65, 'user_id' => 21, 'name' => 'Bzip2 Archive', 'mimeType' => 'application/x-bzip2', 'ext' => 'bz2', 'icon_class' => '', 'description' => 'Wikipedia: Bzip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 65 => array ( 'id' => 66, 'user_id' => 21, 'name' => 'C Shell Script', 'mimeType' => 'application/x-csh', 'ext' => 'csh', 'icon_class' => '', 'description' => 'Wikipedia: C Shell', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 66 => array ( 'id' => 67, 'user_id' => 21, 'name' => 'C Source File', 'mimeType' => 'text/x-c', 'ext' => 'c', 'icon_class' => '', 'description' => 'Wikipedia: C Programming Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 67 => array ( 'id' => 68, 'user_id' => 21, 'name' => 'CambridgeSoft Chem Draw', 'mimeType' => 'application/vnd.chemdraw+xml', 'ext' => 'cdxml', 'icon_class' => '', 'description' => 'IANA: Chem Draw', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 68 => array ( 'id' => 69, 'user_id' => 21, 'name' => 'Cascading Style Sheets (CSS)', 'mimeType' => 'text/css', 'ext' => 'css', 'icon_class' => '', 'description' => 'Wikipedia: CSS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 69 => array ( 'id' => 70, 'user_id' => 21, 'name' => 'ChemDraw eXchange file', 'mimeType' => 'chemical/x-cdx', 'ext' => 'cdx', 'icon_class' => '', 'description' => 'ChemDraw eXchange file', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 70 => array ( 'id' => 71, 'user_id' => 21, 'name' => 'Chemical Markup Language', 'mimeType' => 'chemical/x-cml', 'ext' => 'cml', 'icon_class' => '', 'description' => 'Wikipedia: Chemical Markup Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 71 => array ( 'id' => 72, 'user_id' => 21, 'name' => 'Chemical Style Markup Language', 'mimeType' => 'chemical/x-csml', 'ext' => 'csml', 'icon_class' => '', 'description' => 'Wikipedia: Chemical Style Markup Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 72 => array ( 'id' => 73, 'user_id' => 21, 'name' => 'CIM Database', 'mimeType' => 'application/vnd.contact.cmsg', 'ext' => 'cdbcmsg', 'icon_class' => '', 'description' => 'IANA: CIM Database', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 73 => array ( 'id' => 74, 'user_id' => 21, 'name' => 'Claymore Data Files', 'mimeType' => 'application/vnd.claymore', 'ext' => 'cla', 'icon_class' => '', 'description' => 'IANA: Claymore', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 74 => array ( 'id' => 75, 'user_id' => 21, 'name' => 'Clonk Game', 'mimeType' => 'application/vnd.clonk.c4group', 'ext' => 'c4g', 'icon_class' => '', 'description' => 'IANA: Clonk', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 75 => array ( 'id' => 76, 'user_id' => 21, 'name' => 'Close Captioning - Subtitle', 'mimeType' => 'image/vnd.dvb.subtitle', 'ext' => 'sub', 'icon_class' => '', 'description' => 'Wikipedia: Closed Captioning', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 76 => array ( 'id' => 77, 'user_id' => 21, 'name' => 'Cloud Data Management Interface (CDMI) - Capability', 'mimeType' => 'application/cdmi-capability', 'ext' => 'cdmia', 'icon_class' => '', 'description' => 'RFC 6208', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 77 => array ( 'id' => 78, 'user_id' => 21, 'name' => 'Cloud Data Management Interface (CDMI) - Contaimer', 'mimeType' => 'application/cdmi-container', 'ext' => 'cdmic', 'icon_class' => '', 'description' => 'RFC 6209', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 78 => array ( 'id' => 79, 'user_id' => 21, 'name' => 'Cloud Data Management Interface (CDMI) - Domain', 'mimeType' => 'application/cdmi-domain', 'ext' => 'cdmid', 'icon_class' => '', 'description' => 'RFC 6210', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 79 => array ( 'id' => 80, 'user_id' => 21, 'name' => 'Cloud Data Management Interface (CDMI) - Object', 'mimeType' => 'application/cdmi-object', 'ext' => 'cdmio', 'icon_class' => '', 'description' => 'RFC 6211', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 80 => array ( 'id' => 81, 'user_id' => 21, 'name' => 'Cloud Data Management Interface (CDMI) - Queue', 'mimeType' => 'application/cdmi-queue', 'ext' => 'cdmiq', 'icon_class' => '', 'description' => 'RFC 6212', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 81 => array ( 'id' => 82, 'user_id' => 21, 'name' => 'ClueTrust CartoMobile - Config', 'mimeType' => 'application/vnd.cluetrust.cartomobile-config', 'ext' => 'c11amc', 'icon_class' => '', 'description' => 'IANA: CartoMobile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 82 => array ( 'id' => 83, 'user_id' => 21, 'name' => 'ClueTrust CartoMobile - Config Package', 'mimeType' => 'application/vnd.cluetrust.cartomobile-config-pkg', 'ext' => 'c11amz', 'icon_class' => '', 'description' => 'IANA: CartoMobile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 83 => array ( 'id' => 84, 'user_id' => 21, 'name' => 'CMU Image', 'mimeType' => 'image/x-cmu-raster', 'ext' => 'ras', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 84 => array ( 'id' => 85, 'user_id' => 21, 'name' => 'COLLADA', 'mimeType' => 'model/vnd.collada+xml', 'ext' => 'dae', 'icon_class' => '', 'description' => 'IANA: COLLADA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 85 => array ( 'id' => 86, 'user_id' => 21, 'name' => 'Comma-Seperated Values', 'mimeType' => 'text/csv', 'ext' => 'csv', 'icon_class' => '', 'description' => 'Wikipedia: CSV', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 86 => array ( 'id' => 87, 'user_id' => 21, 'name' => 'Compact Pro', 'mimeType' => 'application/mac-compactpro', 'ext' => 'cpt', 'icon_class' => '', 'description' => 'Compact Pro', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 87 => array ( 'id' => 88, 'user_id' => 21, 'name' => 'Compiled Wireless Markup Language (WMLC)', 'mimeType' => 'application/vnd.wap.wmlc', 'ext' => 'wmlc', 'icon_class' => '', 'description' => 'IANA: WMLC', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 88 => array ( 'id' => 89, 'user_id' => 21, 'name' => 'Computer Graphics Metafile', 'mimeType' => 'image/cgm', 'ext' => 'cgm', 'icon_class' => '', 'description' => 'Wikipedia: Computer Graphics Metafile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 89 => array ( 'id' => 90, 'user_id' => 21, 'name' => 'CoolTalk', 'mimeType' => 'x-conference/x-cooltalk', 'ext' => 'ice', 'icon_class' => '', 'description' => 'Wikipedia: CoolTalk', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 90 => array ( 'id' => 91, 'user_id' => 21, 'name' => 'Corel Metafile Exchange (CMX)', 'mimeType' => 'image/x-cmx', 'ext' => 'cmx', 'icon_class' => '', 'description' => 'Wikipedia: CorelDRAW', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 91 => array ( 'id' => 92, 'user_id' => 21, 'name' => 'CorelXARA', 'mimeType' => 'application/vnd.xara', 'ext' => 'xar', 'icon_class' => '', 'description' => 'IANA: CorelXARA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 92 => array ( 'id' => 93, 'user_id' => 21, 'name' => 'CosmoCaller', 'mimeType' => 'application/vnd.cosmocaller', 'ext' => 'cmc', 'icon_class' => '', 'description' => 'IANA: CosmoCaller', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 93 => array ( 'id' => 94, 'user_id' => 21, 'name' => 'CPIO Archive', 'mimeType' => 'application/x-cpio', 'ext' => 'cpio', 'icon_class' => '', 'description' => 'Wikipedia: cpio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 94 => array ( 'id' => 95, 'user_id' => 21, 'name' => 'CrickSoftware - Clicker', 'mimeType' => 'application/vnd.crick.clicker', 'ext' => 'clkx', 'icon_class' => '', 'description' => 'IANA: Clicker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 95 => array ( 'id' => 96, 'user_id' => 21, 'name' => 'CrickSoftware - Clicker - Keyboard', 'mimeType' => 'application/vnd.crick.clicker.keyboard', 'ext' => 'clkk', 'icon_class' => '', 'description' => 'IANA: Clicker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 96 => array ( 'id' => 97, 'user_id' => 21, 'name' => 'CrickSoftware - Clicker - Palette', 'mimeType' => 'application/vnd.crick.clicker.palette', 'ext' => 'clkp', 'icon_class' => '', 'description' => 'IANA: Clicker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 97 => array ( 'id' => 98, 'user_id' => 21, 'name' => 'CrickSoftware - Clicker - Template', 'mimeType' => 'application/vnd.crick.clicker.template', 'ext' => 'clkt', 'icon_class' => '', 'description' => 'IANA: Clicker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 98 => array ( 'id' => 99, 'user_id' => 21, 'name' => 'CrickSoftware - Clicker - Wordbank', 'mimeType' => 'application/vnd.crick.clicker.wordbank', 'ext' => 'clkw', 'icon_class' => '', 'description' => 'IANA: Clicker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 99 => array ( 'id' => 100, 'user_id' => 21, 'name' => 'Critical Tools - PERT Chart EXPERT', 'mimeType' => 'application/vnd.criticaltools.wbs+xml', 'ext' => 'wbs', 'icon_class' => '', 'description' => 'IANA: Critical Tools', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 100 => array ( 'id' => 101, 'user_id' => 21, 'name' => 'CryptoNote', 'mimeType' => 'application/vnd.rig.cryptonote', 'ext' => 'cryptonote', 'icon_class' => '', 'description' => 'IANA: CryptoNote', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 101 => array ( 'id' => 102, 'user_id' => 21, 'name' => 'Crystallographic Interchange Format', 'mimeType' => 'chemical/x-cif', 'ext' => 'cif', 'icon_class' => '', 'description' => 'Crystallographic Interchange Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 102 => array ( 'id' => 103, 'user_id' => 21, 'name' => 'CrystalMaker Data Format', 'mimeType' => 'chemical/x-cmdf', 'ext' => 'cmdf', 'icon_class' => '', 'description' => 'CrystalMaker Data Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 103 => array ( 'id' => 104, 'user_id' => 21, 'name' => 'CU-SeeMe', 'mimeType' => 'application/cu-seeme', 'ext' => 'cu', 'icon_class' => '', 'description' => 'White Pine', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 104 => array ( 'id' => 105, 'user_id' => 21, 'name' => 'CU-Writer', 'mimeType' => 'application/prs.cww', 'ext' => 'cww', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 105 => array ( 'id' => 106, 'user_id' => 21, 'name' => 'Curl - Applet', 'mimeType' => 'text/vnd.curl', 'ext' => 'curl', 'icon_class' => '', 'description' => 'Curl Applet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 106 => array ( 'id' => 107, 'user_id' => 21, 'name' => 'Curl - Detached Applet', 'mimeType' => 'text/vnd.curl.dcurl', 'ext' => 'dcurl', 'icon_class' => '', 'description' => 'Curl Detached Applet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 107 => array ( 'id' => 108, 'user_id' => 21, 'name' => 'Curl - Manifest File', 'mimeType' => 'text/vnd.curl.mcurl', 'ext' => 'mcurl', 'icon_class' => '', 'description' => 'Curl Manifest File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 108 => array ( 'id' => 109, 'user_id' => 21, 'name' => 'Curl - Source Code', 'mimeType' => 'text/vnd.curl.scurl', 'ext' => 'scurl', 'icon_class' => '', 'description' => 'Curl Source Code', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 109 => array ( 'id' => 110, 'user_id' => 21, 'name' => 'CURL Applet', 'mimeType' => 'application/vnd.curl.car', 'ext' => 'car', 'icon_class' => '', 'description' => 'IANA: CURL Applet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 110 => array ( 'id' => 111, 'user_id' => 21, 'name' => 'CURL Applet', 'mimeType' => 'application/vnd.curl.pcurl', 'ext' => 'pcurl', 'icon_class' => '', 'description' => 'IANA: CURL Applet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 111 => array ( 'id' => 112, 'user_id' => 21, 'name' => 'CustomMenu', 'mimeType' => 'application/vnd.yellowriver-custom-menu', 'ext' => 'cmp', 'icon_class' => '', 'description' => 'IANA: CustomMenu', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 112 => array ( 'id' => 113, 'user_id' => 21, 'name' => 'Data Structure for the Security Suitability of Cryptographic Algorithms', 'mimeType' => 'application/dssc+der', 'ext' => 'dssc', 'icon_class' => '', 'description' => 'RFC 5698', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 113 => array ( 'id' => 114, 'user_id' => 21, 'name' => 'Data Structure for the Security Suitability of Cryptographic Algorithms', 'mimeType' => 'application/dssc+xml', 'ext' => 'xdssc', 'icon_class' => '', 'description' => 'RFC 5698', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 114 => array ( 'id' => 115, 'user_id' => 21, 'name' => 'Debian Package', 'mimeType' => 'application/x-debian-package', 'ext' => 'deb', 'icon_class' => '', 'description' => 'Wikipedia: Debian Package', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 115 => array ( 'id' => 116, 'user_id' => 21, 'name' => 'DECE Audio', 'mimeType' => 'audio/vnd.dece.audio', 'ext' => 'uva', 'icon_class' => '', 'description' => 'IANA: Dece Audio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 116 => array ( 'id' => 117, 'user_id' => 21, 'name' => 'DECE Graphic', 'mimeType' => 'image/vnd.dece.graphic', 'ext' => 'uvi', 'icon_class' => '', 'description' => 'IANA: DECE Graphic', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 117 => array ( 'id' => 118, 'user_id' => 21, 'name' => 'DECE High Definition Video', 'mimeType' => 'video/vnd.dece.hd', 'ext' => 'uvh', 'icon_class' => '', 'description' => 'IANA: DECE HD Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 118 => array ( 'id' => 119, 'user_id' => 21, 'name' => 'DECE Mobile Video', 'mimeType' => 'video/vnd.dece.mobile', 'ext' => 'uvm', 'icon_class' => '', 'description' => 'IANA: DECE Mobile Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 119 => array ( 'id' => 120, 'user_id' => 21, 'name' => 'DECE MP4', 'mimeType' => 'video/vnd.uvvu.mp4', 'ext' => 'uvu', 'icon_class' => '', 'description' => 'IANA: DECE MP4', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 120 => array ( 'id' => 121, 'user_id' => 21, 'name' => 'DECE PD Video', 'mimeType' => 'video/vnd.dece.pd', 'ext' => 'uvp', 'icon_class' => '', 'description' => 'IANA: DECE PD Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 121 => array ( 'id' => 122, 'user_id' => 21, 'name' => 'DECE SD Video', 'mimeType' => 'video/vnd.dece.sd', 'ext' => 'uvs', 'icon_class' => '', 'description' => 'IANA: DECE SD Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 122 => array ( 'id' => 123, 'user_id' => 21, 'name' => 'DECE Video', 'mimeType' => 'video/vnd.dece.video', 'ext' => 'uvv', 'icon_class' => '', 'description' => 'IANA: DECE Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 123 => array ( 'id' => 124, 'user_id' => 21, 'name' => 'Device Independent File Format (DVI)', 'mimeType' => 'application/x-dvi', 'ext' => 'dvi', 'icon_class' => '', 'description' => 'Wikipedia: DVI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 124 => array ( 'id' => 125, 'user_id' => 21, 'name' => 'Digital Siesmograph Networks - SEED Datafiles', 'mimeType' => 'application/vnd.fdsn.seed', 'ext' => 'seed', 'icon_class' => '', 'description' => 'IANA: SEED', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 125 => array ( 'id' => 126, 'user_id' => 21, 'name' => 'Digital Talking Book', 'mimeType' => 'application/x-dtbook+xml', 'ext' => 'dtb', 'icon_class' => '', 'description' => 'Wikipedia: EPUB', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 126 => array ( 'id' => 127, 'user_id' => 21, 'name' => 'Digital Talking Book - Resource File', 'mimeType' => 'application/x-dtbresource+xml', 'ext' => 'res', 'icon_class' => '', 'description' => 'Digital Talking Book', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 127 => array ( 'id' => 128, 'user_id' => 21, 'name' => 'Digital Video Broadcasting', 'mimeType' => 'application/vnd.dvb.ait', 'ext' => 'ait', 'icon_class' => '', 'description' => 'IANA: Digital Video Broadcasting', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 128 => array ( 'id' => 129, 'user_id' => 21, 'name' => 'Digital Video Broadcasting', 'mimeType' => 'application/vnd.dvb.service', 'ext' => 'svc', 'icon_class' => '', 'description' => 'IANA: Digital Video Broadcasting', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 129 => array ( 'id' => 130, 'user_id' => 21, 'name' => 'Digital Winds Music', 'mimeType' => 'audio/vnd.digital-winds', 'ext' => 'eol', 'icon_class' => '', 'description' => 'IANA: Digital Winds', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 130 => array ( 'id' => 131, 'user_id' => 21, 'name' => 'DjVu', 'mimeType' => 'image/vnd.djvu', 'ext' => 'djvu', 'icon_class' => '', 'description' => 'Wikipedia: DjVu', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 131 => array ( 'id' => 132, 'user_id' => 21, 'name' => 'Document Type Definition', 'mimeType' => 'application/xml-dtd', 'ext' => 'dtd', 'icon_class' => '', 'description' => 'W3C DTD', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 132 => array ( 'id' => 133, 'user_id' => 21, 'name' => 'Dolby Meridian Lossless Packing', 'mimeType' => 'application/vnd.dolby.mlp', 'ext' => 'mlp', 'icon_class' => '', 'description' => 'IANA: Dolby Meridian Lossless Packing', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 133 => array ( 'id' => 134, 'user_id' => 21, 'name' => 'Doom Video Game', 'mimeType' => 'application/x-doom', 'ext' => 'wad', 'icon_class' => '', 'description' => 'Wikipedia: Doom WAD', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 134 => array ( 'id' => 135, 'user_id' => 21, 'name' => 'DPGraph', 'mimeType' => 'application/vnd.dpgraph', 'ext' => 'dpg', 'icon_class' => '', 'description' => 'IANA: DPGraph', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 135 => array ( 'id' => 136, 'user_id' => 21, 'name' => 'DRA Audio', 'mimeType' => 'audio/vnd.dra', 'ext' => 'dra', 'icon_class' => '', 'description' => 'IANA: DRA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 136 => array ( 'id' => 137, 'user_id' => 21, 'name' => 'DreamFactory', 'mimeType' => 'application/vnd.dreamfactory', 'ext' => 'dfac', 'icon_class' => '', 'description' => 'IANA: DreamFactory', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 137 => array ( 'id' => 138, 'user_id' => 21, 'name' => 'DTS Audio', 'mimeType' => 'audio/vnd.dts', 'ext' => 'dts', 'icon_class' => '', 'description' => 'IANA: DTS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 138 => array ( 'id' => 139, 'user_id' => 21, 'name' => 'DTS High Definition Audio', 'mimeType' => 'audio/vnd.dts.hd', 'ext' => 'dtshd', 'icon_class' => '', 'description' => 'IANA: DTS HD', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 139 => array ( 'id' => 140, 'user_id' => 21, 'name' => 'DWG Drawing', 'mimeType' => 'image/vnd.dwg', 'ext' => 'dwg', 'icon_class' => '', 'description' => 'Wikipedia: DWG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 140 => array ( 'id' => 141, 'user_id' => 21, 'name' => 'DynaGeo', 'mimeType' => 'application/vnd.dynageo', 'ext' => 'geo', 'icon_class' => '', 'description' => 'IANA: DynaGeo', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 141 => array ( 'id' => 142, 'user_id' => 21, 'name' => 'ECMAScript', 'mimeType' => 'application/ecmascript', 'ext' => 'es', 'icon_class' => '', 'description' => 'ECMA-357', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 142 => array ( 'id' => 143, 'user_id' => 21, 'name' => 'EcoWin Chart', 'mimeType' => 'application/vnd.ecowin.chart', 'ext' => 'mag', 'icon_class' => '', 'description' => 'IANA: EcoWin Chart', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 143 => array ( 'id' => 144, 'user_id' => 21, 'name' => 'EDMICS 2000', 'mimeType' => 'image/vnd.fujixerox.edmics-mmr', 'ext' => 'mmr', 'icon_class' => '', 'description' => 'IANA: EDMICS 2000', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 144 => array ( 'id' => 145, 'user_id' => 21, 'name' => 'EDMICS 2000', 'mimeType' => 'image/vnd.fujixerox.edmics-rlc', 'ext' => 'rlc', 'icon_class' => '', 'description' => 'IANA: EDMICS 2000', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 145 => array ( 'id' => 146, 'user_id' => 21, 'name' => 'Efficient XML Interchange', 'mimeType' => 'application/exi', 'ext' => 'exi', 'icon_class' => '', 'description' => 'Efficient XML Interchange (EXI) Best Practices', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 146 => array ( 'id' => 147, 'user_id' => 21, 'name' => 'EFI Proteus', 'mimeType' => 'application/vnd.proteus.magazine', 'ext' => 'mgz', 'icon_class' => '', 'description' => 'IANA: EFI Proteus', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 147 => array ( 'id' => 148, 'user_id' => 21, 'name' => 'Electronic Publication', 'mimeType' => 'application/epub+zip', 'ext' => 'epub', 'icon_class' => '', 'description' => 'Wikipedia: EPUB', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 148 => array ( 'id' => 149, 'user_id' => 21, 'name' => 'Email Message', 'mimeType' => 'message/rfc822', 'ext' => 'eml', 'icon_class' => '', 'description' => 'RFC 2822', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 149 => array ( 'id' => 150, 'user_id' => 21, 'name' => 'Enliven Viewer', 'mimeType' => 'application/vnd.enliven', 'ext' => 'nml', 'icon_class' => '', 'description' => 'IANA: Enliven Viewer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 150 => array ( 'id' => 151, 'user_id' => 21, 'name' => 'Express by Infoseek', 'mimeType' => 'application/vnd.is-xpr', 'ext' => 'xpr', 'icon_class' => '', 'description' => 'IANA: Express by Infoseek', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 151 => array ( 'id' => 152, 'user_id' => 21, 'name' => 'eXtended Image File Format (XIFF)', 'mimeType' => 'image/vnd.xiff', 'ext' => 'xif', 'icon_class' => '', 'description' => 'IANA: XIFF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 152 => array ( 'id' => 153, 'user_id' => 21, 'name' => 'Extensible Forms Description Language', 'mimeType' => 'application/vnd.xfdl', 'ext' => 'xfdl', 'icon_class' => '', 'description' => 'IANA: Extensible Forms Description Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 153 => array ( 'id' => 154, 'user_id' => 21, 'name' => 'Extensible MultiModal Annotation', 'mimeType' => 'application/emma+xml', 'ext' => 'emma', 'icon_class' => '', 'description' => 'EMMA: Extensible MultiModal Annotation markup language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 154 => array ( 'id' => 155, 'user_id' => 21, 'name' => 'EZPix Secure Photo Album', 'mimeType' => 'application/vnd.ezpix-album', 'ext' => 'ez2', 'icon_class' => '', 'description' => 'IANA: EZPix Secure Photo Album', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 155 => array ( 'id' => 156, 'user_id' => 21, 'name' => 'EZPix Secure Photo Album', 'mimeType' => 'application/vnd.ezpix-package', 'ext' => 'ez3', 'icon_class' => '', 'description' => 'IANA: EZPix Secure Photo Album', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 156 => array ( 'id' => 157, 'user_id' => 21, 'name' => 'FAST Search & Transfer ASA', 'mimeType' => 'image/vnd.fst', 'ext' => 'fst', 'icon_class' => '', 'description' => 'IANA: FAST Search & Transfer ASA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 157 => array ( 'id' => 158, 'user_id' => 21, 'name' => 'FAST Search & Transfer ASA', 'mimeType' => 'video/vnd.fvt', 'ext' => 'fvt', 'icon_class' => '', 'description' => 'IANA: FVT', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 158 => array ( 'id' => 159, 'user_id' => 21, 'name' => 'FastBid Sheet', 'mimeType' => 'image/vnd.fastbidsheet', 'ext' => 'fbs', 'icon_class' => '', 'description' => 'IANA: FastBid Sheet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 159 => array ( 'id' => 160, 'user_id' => 21, 'name' => 'FCS Express Layout Link', 'mimeType' => 'application/vnd.denovo.fcselayout-link', 'ext' => 'fe_launch', 'icon_class' => '', 'description' => 'IANA: FCS Express Layout Link', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 160 => array ( 'id' => 161, 'user_id' => 21, 'name' => 'Flash Video', 'mimeType' => 'video/x-f4v', 'ext' => 'f4v', 'icon_class' => '', 'description' => 'Wikipedia: Flash Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 161 => array ( 'id' => 162, 'user_id' => 21, 'name' => 'Flash Video', 'mimeType' => 'video/x-flv', 'ext' => 'flv', 'icon_class' => '', 'description' => 'Wikipedia: Flash Video', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 162 => array ( 'id' => 163, 'user_id' => 21, 'name' => 'FlashPix', 'mimeType' => 'image/vnd.fpx', 'ext' => 'fpx', 'icon_class' => '', 'description' => 'IANA: FPX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 163 => array ( 'id' => 164, 'user_id' => 21, 'name' => 'FlashPix', 'mimeType' => 'image/vnd.net-fpx', 'ext' => 'npx', 'icon_class' => '', 'description' => 'IANA: FPX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 164 => array ( 'id' => 165, 'user_id' => 21, 'name' => 'FLEXSTOR', 'mimeType' => 'text/vnd.fmi.flexstor', 'ext' => 'flx', 'icon_class' => '', 'description' => 'IANA: FLEXSTOR', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 165 => array ( 'id' => 166, 'user_id' => 21, 'name' => 'FLI/FLC Animation Format', 'mimeType' => 'video/x-fli', 'ext' => 'fli', 'icon_class' => '', 'description' => 'FLI/FLC Animation Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 166 => array ( 'id' => 167, 'user_id' => 21, 'name' => 'FluxTime Clip', 'mimeType' => 'application/vnd.fluxtime.clip', 'ext' => 'ftc', 'icon_class' => '', 'description' => 'IANA: FluxTime Clip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 167 => array ( 'id' => 168, 'user_id' => 21, 'name' => 'Forms Data Format', 'mimeType' => 'application/vnd.fdf', 'ext' => 'fdf', 'icon_class' => '', 'description' => 'IANA: Forms Data Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 168 => array ( 'id' => 169, 'user_id' => 21, 'name' => 'Fortran Source File', 'mimeType' => 'text/x-fortran', 'ext' => 'f', 'icon_class' => '', 'description' => 'Wikipedia: Fortran', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 169 => array ( 'id' => 170, 'user_id' => 21, 'name' => 'FrameMaker Interchange Format', 'mimeType' => 'application/vnd.mif', 'ext' => 'mif', 'icon_class' => '', 'description' => 'IANA: FrameMaker Interchange Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 170 => array ( 'id' => 171, 'user_id' => 21, 'name' => 'FrameMaker Normal Format', 'mimeType' => 'application/vnd.framemaker', 'ext' => 'fm', 'icon_class' => '', 'description' => 'IANA: FrameMaker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 171 => array ( 'id' => 172, 'user_id' => 21, 'name' => 'FreeHand MX', 'mimeType' => 'image/x-freehand', 'ext' => 'fh', 'icon_class' => '', 'description' => 'Wikipedia: Macromedia Freehand', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 172 => array ( 'id' => 173, 'user_id' => 21, 'name' => 'Friendly Software Corporation', 'mimeType' => 'application/vnd.fsc.weblaunch', 'ext' => 'fsc', 'icon_class' => '', 'description' => 'IANA: Friendly Software Corporation', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 173 => array ( 'id' => 174, 'user_id' => 21, 'name' => 'Frogans Player', 'mimeType' => 'application/vnd.frogans.fnc', 'ext' => 'fnc', 'icon_class' => '', 'description' => 'IANA: Frogans Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 174 => array ( 'id' => 175, 'user_id' => 21, 'name' => 'Frogans Player', 'mimeType' => 'application/vnd.frogans.ltf', 'ext' => 'ltf', 'icon_class' => '', 'description' => 'IANA: Frogans Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 175 => array ( 'id' => 176, 'user_id' => 21, 'name' => 'Fujitsu - Xerox 2D CAD Data', 'mimeType' => 'application/vnd.fujixerox.ddd', 'ext' => 'ddd', 'icon_class' => '', 'description' => 'IANA: Fujitsu DDD', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 176 => array ( 'id' => 177, 'user_id' => 21, 'name' => 'Fujitsu - Xerox DocuWorks', 'mimeType' => 'application/vnd.fujixerox.docuworks', 'ext' => 'xdw', 'icon_class' => '', 'description' => 'IANA: Docuworks', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 177 => array ( 'id' => 178, 'user_id' => 21, 'name' => 'Fujitsu - Xerox DocuWorks Binder', 'mimeType' => 'application/vnd.fujixerox.docuworks.binder', 'ext' => 'xbd', 'icon_class' => '', 'description' => 'IANA: Docuworks Binder', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 178 => array ( 'id' => 179, 'user_id' => 21, 'name' => 'Fujitsu Oasys', 'mimeType' => 'application/vnd.fujitsu.oasys', 'ext' => 'oas', 'icon_class' => '', 'description' => 'IANA: Fujitsu Oasys', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 179 => array ( 'id' => 180, 'user_id' => 21, 'name' => 'Fujitsu Oasys', 'mimeType' => 'application/vnd.fujitsu.oasys2', 'ext' => 'oa2', 'icon_class' => '', 'description' => 'IANA: Fujitsu Oasys', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 180 => array ( 'id' => 181, 'user_id' => 21, 'name' => 'Fujitsu Oasys', 'mimeType' => 'application/vnd.fujitsu.oasys3', 'ext' => 'oa3', 'icon_class' => '', 'description' => 'IANA: Fujitsu Oasys', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 181 => array ( 'id' => 182, 'user_id' => 21, 'name' => 'Fujitsu Oasys', 'mimeType' => 'application/vnd.fujitsu.oasysgp', 'ext' => 'fg5', 'icon_class' => '', 'description' => 'IANA: Fujitsu Oasys', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 182 => array ( 'id' => 183, 'user_id' => 21, 'name' => 'Fujitsu Oasys', 'mimeType' => 'application/vnd.fujitsu.oasysprs', 'ext' => 'bh2', 'icon_class' => '', 'description' => 'IANA: Fujitsu Oasys', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 183 => array ( 'id' => 184, 'user_id' => 21, 'name' => 'FutureSplash Animator', 'mimeType' => 'application/x-futuresplash', 'ext' => 'spl', 'icon_class' => '', 'description' => 'Wikipedia: FutureSplash Animator', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 184 => array ( 'id' => 185, 'user_id' => 21, 'name' => 'FuzzySheet', 'mimeType' => 'application/vnd.fuzzysheet', 'ext' => 'fzs', 'icon_class' => '', 'description' => 'IANA: FuzySheet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 185 => array ( 'id' => 186, 'user_id' => 21, 'name' => 'G3 Fax Image', 'mimeType' => 'image/g3fax', 'ext' => 'g3', 'icon_class' => '', 'description' => 'Wikipedia: G3 Fax Image', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 186 => array ( 'id' => 187, 'user_id' => 21, 'name' => 'GameMaker ActiveX', 'mimeType' => 'application/vnd.gmx', 'ext' => 'gmx', 'icon_class' => '', 'description' => 'IANA: GameMaker ActiveX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 187 => array ( 'id' => 188, 'user_id' => 21, 'name' => 'Gen-Trix Studio', 'mimeType' => 'model/vnd.gtw', 'ext' => 'gtw', 'icon_class' => '', 'description' => 'IANA: GTW', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 188 => array ( 'id' => 189, 'user_id' => 21, 'name' => 'Genomatix Tuxedo Framework', 'mimeType' => 'application/vnd.genomatix.tuxedo', 'ext' => 'txd', 'icon_class' => '', 'description' => 'IANA: Genomatix Tuxedo Framework', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 189 => array ( 'id' => 190, 'user_id' => 21, 'name' => 'GeoGebra', 'mimeType' => 'application/vnd.geogebra.file', 'ext' => 'ggb', 'icon_class' => '', 'description' => 'IANA: GeoGebra', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 190 => array ( 'id' => 191, 'user_id' => 21, 'name' => 'GeoGebra', 'mimeType' => 'application/vnd.geogebra.tool', 'ext' => 'ggt', 'icon_class' => '', 'description' => 'IANA: GeoGebra', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 191 => array ( 'id' => 192, 'user_id' => 21, 'name' => 'Geometric Description Language (GDL)', 'mimeType' => 'model/vnd.gdl', 'ext' => 'gdl', 'icon_class' => '', 'description' => 'IANA: GDL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 192 => array ( 'id' => 193, 'user_id' => 21, 'name' => 'GeoMetry Explorer', 'mimeType' => 'application/vnd.geometry-explorer', 'ext' => 'gex', 'icon_class' => '', 'description' => 'IANA: GeoMetry Explorer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 193 => array ( 'id' => 194, 'user_id' => 21, 'name' => 'GEONExT and JSXGraph', 'mimeType' => 'application/vnd.geonext', 'ext' => 'gxt', 'icon_class' => '', 'description' => 'IANA: GEONExT and JSXGraph', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 194 => array ( 'id' => 195, 'user_id' => 21, 'name' => 'GeoplanW', 'mimeType' => 'application/vnd.geoplan', 'ext' => 'g2w', 'icon_class' => '', 'description' => 'IANA: GeoplanW', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 195 => array ( 'id' => 196, 'user_id' => 21, 'name' => 'GeospacW', 'mimeType' => 'application/vnd.geospace', 'ext' => 'g3w', 'icon_class' => '', 'description' => 'IANA: GeospacW', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 196 => array ( 'id' => 197, 'user_id' => 21, 'name' => 'Ghostscript Font', 'mimeType' => 'application/x-font-ghostscript', 'ext' => 'gsf', 'icon_class' => '', 'description' => 'Wikipedia: Ghostscript', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 197 => array ( 'id' => 198, 'user_id' => 21, 'name' => 'Glyph Bitmap Distribution Format', 'mimeType' => 'application/x-font-bdf', 'ext' => 'bdf', 'icon_class' => '', 'description' => 'Wikipedia: Glyph Bitmap Distribution Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 198 => array ( 'id' => 199, 'user_id' => 21, 'name' => 'GNU Tar Files', 'mimeType' => 'application/x-gtar', 'ext' => 'gtar', 'icon_class' => '', 'description' => 'GNU Tar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 199 => array ( 'id' => 200, 'user_id' => 21, 'name' => 'GNU Texinfo Document', 'mimeType' => 'application/x-texinfo', 'ext' => 'texinfo', 'icon_class' => '', 'description' => 'Wikipedia: Texinfo', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 200 => array ( 'id' => 201, 'user_id' => 21, 'name' => 'Gnumeric', 'mimeType' => 'application/x-gnumeric', 'ext' => 'gnumeric', 'icon_class' => '', 'description' => 'Wikipedia: Gnumeric', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 201 => array ( 'id' => 202, 'user_id' => 21, 'name' => 'Google Earth - KML', 'mimeType' => 'application/vnd.google-earth.kml+xml', 'ext' => 'kml', 'icon_class' => '', 'description' => 'IANA: Google Earth', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 202 => array ( 'id' => 203, 'user_id' => 21, 'name' => 'Google Earth - Zipped KML', 'mimeType' => 'application/vnd.google-earth.kmz', 'ext' => 'kmz', 'icon_class' => '', 'description' => 'IANA: Google Earth', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 203 => array ( 'id' => 204, 'user_id' => 21, 'name' => 'GrafEq', 'mimeType' => 'application/vnd.grafeq', 'ext' => 'gqf', 'icon_class' => '', 'description' => 'IANA: GrafEq', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 204 => array ( 'id' => 205, 'user_id' => 21, 'name' => 'Graphics Interchange Format', 'mimeType' => 'image/gif', 'ext' => 'gif', 'icon_class' => '', 'description' => 'Wikipedia: Graphics Interchange Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 205 => array ( 'id' => 206, 'user_id' => 21, 'name' => 'Graphviz', 'mimeType' => 'text/vnd.graphviz', 'ext' => 'gv', 'icon_class' => '', 'description' => 'IANA: Graphviz', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 206 => array ( 'id' => 207, 'user_id' => 21, 'name' => 'Groove - Account', 'mimeType' => 'application/vnd.groove-account', 'ext' => 'gac', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 207 => array ( 'id' => 208, 'user_id' => 21, 'name' => 'Groove - Help', 'mimeType' => 'application/vnd.groove-help', 'ext' => 'ghf', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 208 => array ( 'id' => 209, 'user_id' => 21, 'name' => 'Groove - Identity Message', 'mimeType' => 'application/vnd.groove-identity-message', 'ext' => 'gim', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 209 => array ( 'id' => 210, 'user_id' => 21, 'name' => 'Groove - Injector', 'mimeType' => 'application/vnd.groove-injector', 'ext' => 'grv', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 210 => array ( 'id' => 211, 'user_id' => 21, 'name' => 'Groove - Tool Message', 'mimeType' => 'application/vnd.groove-tool-message', 'ext' => 'gtm', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 211 => array ( 'id' => 212, 'user_id' => 21, 'name' => 'Groove - Tool Template', 'mimeType' => 'application/vnd.groove-tool-template', 'ext' => 'tpl', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 212 => array ( 'id' => 213, 'user_id' => 21, 'name' => 'Groove - Vcard', 'mimeType' => 'application/vnd.groove-vcard', 'ext' => 'vcg', 'icon_class' => '', 'description' => 'IANA: Groove', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 213 => array ( 'id' => 214, 'user_id' => 21, 'name' => 'H.261', 'mimeType' => 'video/h261', 'ext' => 'h261', 'icon_class' => '', 'description' => 'Wikipedia: H.261', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 214 => array ( 'id' => 215, 'user_id' => 21, 'name' => 'H.263', 'mimeType' => 'video/h263', 'ext' => 'h263', 'icon_class' => '', 'description' => 'Wikipedia: H.263', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 215 => array ( 'id' => 216, 'user_id' => 21, 'name' => 'H.264', 'mimeType' => 'video/h264', 'ext' => 'h264', 'icon_class' => '', 'description' => 'Wikipedia: H.264', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 216 => array ( 'id' => 217, 'user_id' => 21, 'name' => 'Hewlett Packard Instant Delivery', 'mimeType' => 'application/vnd.hp-hpid', 'ext' => 'hpid', 'icon_class' => '', 'description' => 'IANA: Hewlett Packard Instant Delivery', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 217 => array ( 'id' => 218, 'user_id' => 21, 'name' => 'Hewlett-Packard\'s WebPrintSmart', 'mimeType' => 'application/vnd.hp-hps', 'ext' => 'hps', 'icon_class' => '', 'description' => 'IANA: Hewlett-Packard\'s WebPrintSmart', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 218 => array ( 'id' => 219, 'user_id' => 21, 'name' => 'Hierarchical Data Format', 'mimeType' => 'application/x-hdf', 'ext' => 'hdf', 'icon_class' => '', 'description' => 'Wikipedia: Hierarchical Data Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 219 => array ( 'id' => 220, 'user_id' => 21, 'name' => 'Hit\'n\'Mix', 'mimeType' => 'audio/vnd.rip', 'ext' => 'rip', 'icon_class' => '', 'description' => 'IANA: Hit\'n\'Mix', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 220 => array ( 'id' => 221, 'user_id' => 21, 'name' => 'Homebanking Computer Interface (HBCI)', 'mimeType' => 'application/vnd.hbci', 'ext' => 'hbci', 'icon_class' => '', 'description' => 'IANA: HBCI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 221 => array ( 'id' => 222, 'user_id' => 21, 'name' => 'HP Indigo Digital Press - Job Layout Languate', 'mimeType' => 'application/vnd.hp-jlyt', 'ext' => 'jlt', 'icon_class' => '', 'description' => 'IANA: HP Job Layout Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 222 => array ( 'id' => 223, 'user_id' => 21, 'name' => 'HP Printer Command Language', 'mimeType' => 'application/vnd.hp-pcl', 'ext' => 'pcl', 'icon_class' => '', 'description' => 'IANA: HP Printer Command Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 223 => array ( 'id' => 224, 'user_id' => 21, 'name' => 'HP-GL/2 and HP RTL', 'mimeType' => 'application/vnd.hp-hpgl', 'ext' => 'hpgl', 'icon_class' => '', 'description' => 'IANA: HP-GL/2 and HP RTL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 224 => array ( 'id' => 225, 'user_id' => 21, 'name' => 'HV Script', 'mimeType' => 'application/vnd.yamaha.hv-script', 'ext' => 'hvs', 'icon_class' => '', 'description' => 'IANA: HV Script', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 225 => array ( 'id' => 226, 'user_id' => 21, 'name' => 'HV Voice Dictionary', 'mimeType' => 'application/vnd.yamaha.hv-dic', 'ext' => 'hvd', 'icon_class' => '', 'description' => 'IANA: HV Voice Dictionary', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 226 => array ( 'id' => 227, 'user_id' => 21, 'name' => 'HV Voice Parameter', 'mimeType' => 'application/vnd.yamaha.hv-voice', 'ext' => 'hvp', 'icon_class' => '', 'description' => 'IANA: HV Voice Parameter', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 227 => array ( 'id' => 228, 'user_id' => 21, 'name' => 'Hydrostatix Master Suite', 'mimeType' => 'application/vnd.hydrostatix.sof-data', 'ext' => 'sfd-hdstx', 'icon_class' => '', 'description' => 'IANA: Hydrostatix Master Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 228 => array ( 'id' => 229, 'user_id' => 21, 'name' => 'Hyperstudio', 'mimeType' => 'application/hyperstudio', 'ext' => 'stk', 'icon_class' => '', 'description' => 'IANA - Hyperstudio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 229 => array ( 'id' => 230, 'user_id' => 21, 'name' => 'Hypertext Application Language', 'mimeType' => 'application/vnd.hal+xml', 'ext' => 'hal', 'icon_class' => '', 'description' => 'IANA: HAL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 230 => array ( 'id' => 231, 'user_id' => 21, 'name' => 'HyperText Markup Language (HTML)', 'mimeType' => 'text/html', 'ext' => 'html', 'icon_class' => '', 'description' => 'Wikipedia: HTML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 231 => array ( 'id' => 232, 'user_id' => 21, 'name' => 'IBM DB2 Rights Manager', 'mimeType' => 'application/vnd.ibm.rights-management', 'ext' => 'irm', 'icon_class' => '', 'description' => 'IANA: IBM DB2 Rights Manager', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 232 => array ( 'id' => 233, 'user_id' => 21, 'name' => 'IBM Electronic Media Management System - Secure Container', 'mimeType' => 'application/vnd.ibm.secure-container', 'ext' => 'sc', 'icon_class' => '', 'description' => 'IANA: EMMS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 233 => array ( 'id' => 234, 'user_id' => 21, 'name' => 'iCalendar', 'mimeType' => 'text/calendar', 'ext' => 'ics', 'icon_class' => '', 'description' => 'Wikipedia: iCalendar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 234 => array ( 'id' => 235, 'user_id' => 21, 'name' => 'ICC profile', 'mimeType' => 'application/vnd.iccprofile', 'ext' => 'icc', 'icon_class' => '', 'description' => 'IANA: ICC profile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 235 => array ( 'id' => 236, 'user_id' => 21, 'name' => 'Icon Image', 'mimeType' => 'image/x-icon', 'ext' => 'ico', 'icon_class' => '', 'description' => 'Wikipedia: ICO File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 236 => array ( 'id' => 237, 'user_id' => 21, 'name' => 'igLoader', 'mimeType' => 'application/vnd.igloader', 'ext' => 'igl', 'icon_class' => '', 'description' => 'IANA: igLoader', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 237 => array ( 'id' => 238, 'user_id' => 21, 'name' => 'Image Exchange Format', 'mimeType' => 'image/ief', 'ext' => 'ief', 'icon_class' => '', 'description' => 'RFC 1314', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 238 => array ( 'id' => 239, 'user_id' => 21, 'name' => 'ImmerVision PURE Players', 'mimeType' => 'application/vnd.immervision-ivp', 'ext' => 'ivp', 'icon_class' => '', 'description' => 'IANA: ImmerVision PURE Players', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 239 => array ( 'id' => 240, 'user_id' => 21, 'name' => 'ImmerVision PURE Players', 'mimeType' => 'application/vnd.immervision-ivu', 'ext' => 'ivu', 'icon_class' => '', 'description' => 'IANA: ImmerVision PURE Players', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 240 => array ( 'id' => 241, 'user_id' => 21, 'name' => 'IMS Networks', 'mimeType' => 'application/reginfo+xml', 'ext' => 'rif', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 241 => array ( 'id' => 242, 'user_id' => 21, 'name' => 'In3D - 3DML', 'mimeType' => 'text/vnd.in3d.3dml', 'ext' => '3dml', 'icon_class' => '', 'description' => 'IANA: In3D', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 242 => array ( 'id' => 243, 'user_id' => 21, 'name' => 'In3D - 3DML', 'mimeType' => 'text/vnd.in3d.spot', 'ext' => 'spot', 'icon_class' => '', 'description' => 'IANA: In3D', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 243 => array ( 'id' => 244, 'user_id' => 21, 'name' => 'Initial Graphics Exchange Specification (IGES)', 'mimeType' => 'model/iges', 'ext' => 'igs', 'icon_class' => '', 'description' => 'Wikipedia: IGES', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 244 => array ( 'id' => 245, 'user_id' => 21, 'name' => 'Interactive Geometry Software', 'mimeType' => 'application/vnd.intergeo', 'ext' => 'i2g', 'icon_class' => '', 'description' => 'IANA: Interactive Geometry Software', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 245 => array ( 'id' => 246, 'user_id' => 21, 'name' => 'Interactive Geometry Software Cinderella', 'mimeType' => 'application/vnd.cinderella', 'ext' => 'cdy', 'icon_class' => '', 'description' => 'IANA: Cinderella', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 246 => array ( 'id' => 247, 'user_id' => 21, 'name' => 'Intercon FormNet', 'mimeType' => 'application/vnd.intercon.formnet', 'ext' => 'xpw', 'icon_class' => '', 'description' => 'IANA: Intercon FormNet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 247 => array ( 'id' => 248, 'user_id' => 21, 'name' => 'International Society for Advancement of Cytometry', 'mimeType' => 'application/vnd.isac.fcs', 'ext' => 'fcs', 'icon_class' => '', 'description' => 'IANA: International Society for Advancement of Cytometry', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 248 => array ( 'id' => 249, 'user_id' => 21, 'name' => 'Internet Protocol Flow Information Export', 'mimeType' => 'application/ipfix', 'ext' => 'ipfix', 'icon_class' => '', 'description' => 'RFC 3917', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 249 => array ( 'id' => 250, 'user_id' => 21, 'name' => 'Internet Public Key Infrastructure - Certificate', 'mimeType' => 'application/pkix-cert', 'ext' => 'cer', 'icon_class' => '', 'description' => 'RFC 2585', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 250 => array ( 'id' => 251, 'user_id' => 21, 'name' => 'Internet Public Key Infrastructure - Certificate Management Protocole', 'mimeType' => 'application/pkixcmp', 'ext' => 'pki', 'icon_class' => '', 'description' => 'RFC 2585', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 251 => array ( 'id' => 252, 'user_id' => 21, 'name' => 'Internet Public Key Infrastructure - Certificate Revocation Lists', 'mimeType' => 'application/pkix-crl', 'ext' => 'crl', 'icon_class' => '', 'description' => 'RFC 2585', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 252 => array ( 'id' => 253, 'user_id' => 21, 'name' => 'Internet Public Key Infrastructure - Certification Path', 'mimeType' => 'application/pkix-pkipath', 'ext' => 'pkipath', 'icon_class' => '', 'description' => 'RFC 2585', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 253 => array ( 'id' => 254, 'user_id' => 21, 'name' => 'IOCOM Visimeet', 'mimeType' => 'application/vnd.insors.igm', 'ext' => 'igm', 'icon_class' => '', 'description' => 'IANA: IOCOM Visimeet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 254 => array ( 'id' => 255, 'user_id' => 21, 'name' => 'IP Unplugged Roaming Client', 'mimeType' => 'application/vnd.ipunplugged.rcprofile', 'ext' => 'rcprofile', 'icon_class' => '', 'description' => 'IANA: IP Unplugged Roaming Client', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 255 => array ( 'id' => 256, 'user_id' => 21, 'name' => 'iRepository / Lucidoc Editor', 'mimeType' => 'application/vnd.irepository.package+xml', 'ext' => 'irp', 'icon_class' => '', 'description' => 'IANA: iRepository / Lucidoc Editor', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 256 => array ( 'id' => 257, 'user_id' => 21, 'name' => 'J2ME App Descriptor', 'mimeType' => 'text/vnd.sun.j2me.app-descriptor', 'ext' => 'jad', 'icon_class' => '', 'description' => 'IANA: J2ME App Descriptor', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 257 => array ( 'id' => 258, 'user_id' => 21, 'name' => 'Java Archive', 'mimeType' => 'application/java-archive', 'ext' => 'jar', 'icon_class' => '', 'description' => 'Wikipedia: JAR file format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 258 => array ( 'id' => 259, 'user_id' => 21, 'name' => 'Java Bytecode File', 'mimeType' => 'application/java-vm', 'ext' => 'class', 'icon_class' => '', 'description' => 'Wikipedia: Java Bytecode', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 259 => array ( 'id' => 260, 'user_id' => 21, 'name' => 'Java Network Launching Protocol', 'mimeType' => 'application/x-java-jnlp-file', 'ext' => 'jnlp', 'icon_class' => '', 'description' => 'Wikipedia: Java Web Start', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 260 => array ( 'id' => 261, 'user_id' => 21, 'name' => 'Java Serialized Object', 'mimeType' => 'application/java-serialized-object', 'ext' => 'ser', 'icon_class' => '', 'description' => 'Java Serialization API', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 261 => array ( 'id' => 262, 'user_id' => 21, 'name' => 'Java Source File', 'mimeType' => 'text/x-java-source,java', 'ext' => 'java', 'icon_class' => '', 'description' => 'Wikipedia: Java', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 262 => array ( 'id' => 263, 'user_id' => 21, 'name' => 'JavaScript', 'mimeType' => 'application/javascript', 'ext' => 'js', 'icon_class' => '', 'description' => 'JavaScript', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 263 => array ( 'id' => 264, 'user_id' => 21, 'name' => 'JavaScript Object Notation (JSON)', 'mimeType' => 'application/json', 'ext' => 'json', 'icon_class' => '', 'description' => 'Wikipedia: JSON', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 264 => array ( 'id' => 265, 'user_id' => 21, 'name' => 'Joda Archive', 'mimeType' => 'application/vnd.joost.joda-archive', 'ext' => 'joda', 'icon_class' => '', 'description' => 'IANA: Joda Archive', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 265 => array ( 'id' => 266, 'user_id' => 21, 'name' => 'JPEG 2000 Compound Image File Format', 'mimeType' => 'video/jpm', 'ext' => 'jpm', 'icon_class' => '', 'description' => 'IANA: JPM', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 266 => array ( 'id' => 267, 'user_id' => 21, 'name' => 'JPEG Image', 'mimeType' => 'image/jpeg', 'ext' => 'jpeg', 'icon_class' => '', 'description' => 'RFC 1314', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 267 => array ( 'id' => 268, 'user_id' => 21, 'name' => 'JPGVideo', 'mimeType' => 'video/jpeg', 'ext' => 'jpgv', 'icon_class' => '', 'description' => 'RFC 3555', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 268 => array ( 'id' => 269, 'user_id' => 21, 'name' => 'Kahootz', 'mimeType' => 'application/vnd.kahootz', 'ext' => 'ktz', 'icon_class' => '', 'description' => 'IANA: Kahootz', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 269 => array ( 'id' => 270, 'user_id' => 21, 'name' => 'Karaoke on Chipnuts Chipsets', 'mimeType' => 'application/vnd.chipnuts.karaoke-mmd', 'ext' => 'mmd', 'icon_class' => '', 'description' => 'IANA: Chipnuts Karaoke', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 270 => array ( 'id' => 271, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Karbon', 'mimeType' => 'application/vnd.kde.karbon', 'ext' => 'karbon', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 271 => array ( 'id' => 272, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - KChart', 'mimeType' => 'application/vnd.kde.kchart', 'ext' => 'chrt', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 272 => array ( 'id' => 273, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kformula', 'mimeType' => 'application/vnd.kde.kformula', 'ext' => 'kfo', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 273 => array ( 'id' => 274, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kivio', 'mimeType' => 'application/vnd.kde.kivio', 'ext' => 'flw', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 274 => array ( 'id' => 275, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kontour', 'mimeType' => 'application/vnd.kde.kontour', 'ext' => 'kon', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 275 => array ( 'id' => 276, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kpresenter', 'mimeType' => 'application/vnd.kde.kpresenter', 'ext' => 'kpr', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 276 => array ( 'id' => 277, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kspread', 'mimeType' => 'application/vnd.kde.kspread', 'ext' => 'ksp', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 277 => array ( 'id' => 278, 'user_id' => 21, 'name' => 'KDE KOffice Office Suite - Kword', 'mimeType' => 'application/vnd.kde.kword', 'ext' => 'kwd', 'icon_class' => '', 'description' => 'IANA: KDE KOffice Office Suite', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 278 => array ( 'id' => 279, 'user_id' => 21, 'name' => 'Kenamea App', 'mimeType' => 'application/vnd.kenameaapp', 'ext' => 'htke', 'icon_class' => '', 'description' => 'IANA: Kenamea App', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 279 => array ( 'id' => 280, 'user_id' => 21, 'name' => 'Kidspiration', 'mimeType' => 'application/vnd.kidspiration', 'ext' => 'kia', 'icon_class' => '', 'description' => 'IANA: Kidspiration', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 280 => array ( 'id' => 281, 'user_id' => 21, 'name' => 'Kinar Applications', 'mimeType' => 'application/vnd.kinar', 'ext' => 'kne', 'icon_class' => '', 'description' => 'IANA: Kina Applications', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 281 => array ( 'id' => 282, 'user_id' => 21, 'name' => 'Kodak Storyshare', 'mimeType' => 'application/vnd.kodak-descriptor', 'ext' => 'sse', 'icon_class' => '', 'description' => 'IANA: Kodak Storyshare', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 282 => array ( 'id' => 283, 'user_id' => 21, 'name' => 'Laser App Enterprise', 'mimeType' => 'application/vnd.las.las+xml', 'ext' => 'lasxml', 'icon_class' => '', 'description' => 'IANA: Laser App Enterprise', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 283 => array ( 'id' => 284, 'user_id' => 21, 'name' => 'LaTeX', 'mimeType' => 'application/x-latex', 'ext' => 'latex', 'icon_class' => '', 'description' => 'Wikipedia: LaTeX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 284 => array ( 'id' => 285, 'user_id' => 21, 'name' => 'Life Balance - Desktop Edition', 'mimeType' => 'application/vnd.llamagraphics.life-balance.desktop', 'ext' => 'lbd', 'icon_class' => '', 'description' => 'IANA: Life Balance', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 285 => array ( 'id' => 286, 'user_id' => 21, 'name' => 'Life Balance - Exchange Format', 'mimeType' => 'application/vnd.llamagraphics.life-balance.exchange+xml', 'ext' => 'lbe', 'icon_class' => '', 'description' => 'IANA: Life Balance', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 286 => array ( 'id' => 287, 'user_id' => 21, 'name' => 'Lightspeed Audio Lab', 'mimeType' => 'application/vnd.jam', 'ext' => 'jam', 'icon_class' => '', 'description' => 'IANA: Lightspeed Audio Lab', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 287 => array ( 'id' => 288, 'user_id' => 21, 'name' => 'Lotus 1-2-3', 'mimeType' => 'application/vnd.lotus-1-2-3', 'ext' => '123', 'icon_class' => '', 'description' => 'IANA: Lotus 1-2-3', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 288 => array ( 'id' => 289, 'user_id' => 21, 'name' => 'Lotus Approach', 'mimeType' => 'application/vnd.lotus-approach', 'ext' => 'apr', 'icon_class' => '', 'description' => 'IANA: Lotus Approach', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 289 => array ( 'id' => 290, 'user_id' => 21, 'name' => 'Lotus Freelance', 'mimeType' => 'application/vnd.lotus-freelance', 'ext' => 'pre', 'icon_class' => '', 'description' => 'IANA: Lotus Freelance', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 290 => array ( 'id' => 291, 'user_id' => 21, 'name' => 'Lotus Notes', 'mimeType' => 'application/vnd.lotus-notes', 'ext' => 'nsf', 'icon_class' => '', 'description' => 'IANA: Lotus Notes', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 291 => array ( 'id' => 292, 'user_id' => 21, 'name' => 'Lotus Organizer', 'mimeType' => 'application/vnd.lotus-organizer', 'ext' => 'org', 'icon_class' => '', 'description' => 'IANA: Lotus Organizer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 292 => array ( 'id' => 293, 'user_id' => 21, 'name' => 'Lotus Screencam', 'mimeType' => 'application/vnd.lotus-screencam', 'ext' => 'scm', 'icon_class' => '', 'description' => 'IANA: Lotus Screencam', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 293 => array ( 'id' => 294, 'user_id' => 21, 'name' => 'Lotus Wordpro', 'mimeType' => 'application/vnd.lotus-wordpro', 'ext' => 'lwp', 'icon_class' => '', 'description' => 'IANA: Lotus Wordpro', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 294 => array ( 'id' => 295, 'user_id' => 21, 'name' => 'Lucent Voice', 'mimeType' => 'audio/vnd.lucent.voice', 'ext' => 'lvp', 'icon_class' => '', 'description' => 'IANA: Lucent Voice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 295 => array ( 'id' => 296, 'user_id' => 21, 'name' => 'M3U (Multimedia Playlist)', 'mimeType' => 'audio/x-mpegurl', 'ext' => 'm3u', 'icon_class' => '', 'description' => 'Wikipedia: M3U', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 296 => array ( 'id' => 297, 'user_id' => 21, 'name' => 'M4v', 'mimeType' => '', 'ext' => 'm4v', 'icon_class' => '', 'description' => 'Wikipedia: M4v', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 297 => array ( 'id' => 298, 'user_id' => 21, 'name' => 'Macintosh BinHex 4.0', 'mimeType' => 'application/mac-binhex40', 'ext' => 'hqx', 'icon_class' => '', 'description' => 'MacMIME', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 298 => array ( 'id' => 299, 'user_id' => 21, 'name' => 'MacPorts Port System', 'mimeType' => 'application/vnd.macports.portpkg', 'ext' => 'portpkg', 'icon_class' => '', 'description' => 'IANA: MacPorts Port System', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 299 => array ( 'id' => 300, 'user_id' => 21, 'name' => 'MapGuide DBXML', 'mimeType' => 'application/vnd.osgeo.mapguide.package', 'ext' => 'mgp', 'icon_class' => '', 'description' => 'IANA: MapGuide DBXML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 300 => array ( 'id' => 301, 'user_id' => 21, 'name' => 'MARC Formats', 'mimeType' => 'application/marc', 'ext' => 'mrc', 'icon_class' => '', 'description' => 'RFC 2220', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 301 => array ( 'id' => 302, 'user_id' => 21, 'name' => 'MARC21 XML Schema', 'mimeType' => 'application/marcxml+xml', 'ext' => 'mrcx', 'icon_class' => '', 'description' => 'RFC 6207', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 302 => array ( 'id' => 303, 'user_id' => 21, 'name' => 'Material Exchange Format', 'mimeType' => 'application/mxf', 'ext' => 'mxf', 'icon_class' => '', 'description' => 'RFC 4539', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 303 => array ( 'id' => 304, 'user_id' => 21, 'name' => 'Mathematica Notebook Player', 'mimeType' => 'application/vnd.wolfram.player', 'ext' => 'nbp', 'icon_class' => '', 'description' => 'IANA: Mathematica Notebook Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 304 => array ( 'id' => 305, 'user_id' => 21, 'name' => 'Mathematica Notebooks', 'mimeType' => 'application/mathematica', 'ext' => 'ma', 'icon_class' => '', 'description' => 'IANA - Mathematica', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 305 => array ( 'id' => 306, 'user_id' => 21, 'name' => 'Mathematical Markup Language', 'mimeType' => 'application/mathml+xml', 'ext' => 'mathml', 'icon_class' => '', 'description' => 'W3C Math Home', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 306 => array ( 'id' => 307, 'user_id' => 21, 'name' => 'Mbox database files', 'mimeType' => 'application/mbox', 'ext' => 'mbox', 'icon_class' => '', 'description' => 'RFC 4155', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 307 => array ( 'id' => 308, 'user_id' => 21, 'name' => 'MedCalc', 'mimeType' => 'application/vnd.medcalcdata', 'ext' => 'mc1', 'icon_class' => '', 'description' => 'IANA: MedCalc', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 308 => array ( 'id' => 309, 'user_id' => 21, 'name' => 'Media Server Control Markup Language', 'mimeType' => 'application/mediaservercontrol+xml', 'ext' => 'mscml', 'icon_class' => '', 'description' => 'RFC 5022', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 309 => array ( 'id' => 310, 'user_id' => 21, 'name' => 'MediaRemote', 'mimeType' => 'application/vnd.mediastation.cdkey', 'ext' => 'cdkey', 'icon_class' => '', 'description' => 'IANA: MediaRemote', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 310 => array ( 'id' => 311, 'user_id' => 21, 'name' => 'Medical Waveform Encoding Format', 'mimeType' => 'application/vnd.mfer', 'ext' => 'mwf', 'icon_class' => '', 'description' => 'IANA: Medical Waveform Encoding Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 311 => array ( 'id' => 312, 'user_id' => 21, 'name' => 'Melody Format for Mobile Platform', 'mimeType' => 'application/vnd.mfmp', 'ext' => 'mfm', 'icon_class' => '', 'description' => 'IANA: Melody Format for Mobile Platform', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 312 => array ( 'id' => 313, 'user_id' => 21, 'name' => 'Mesh Data Type', 'mimeType' => 'model/mesh', 'ext' => 'msh', 'icon_class' => '', 'description' => 'RFC 2077', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 313 => array ( 'id' => 314, 'user_id' => 21, 'name' => 'Metadata Authority Description Schema', 'mimeType' => 'application/mads+xml', 'ext' => 'mads', 'icon_class' => '', 'description' => 'RFC 6207', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 314 => array ( 'id' => 315, 'user_id' => 21, 'name' => 'Metadata Encoding and Transmission Standard', 'mimeType' => 'application/mets+xml', 'ext' => 'mets', 'icon_class' => '', 'description' => 'RFC 6207', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 315 => array ( 'id' => 316, 'user_id' => 21, 'name' => 'Metadata Object Description Schema', 'mimeType' => 'application/mods+xml', 'ext' => 'mods', 'icon_class' => '', 'description' => 'RFC 6207', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 316 => array ( 'id' => 317, 'user_id' => 21, 'name' => 'Metalink', 'mimeType' => 'application/metalink4+xml', 'ext' => 'meta4', 'icon_class' => '', 'description' => 'Wikipedia: Metalink', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 317 => array ( 'id' => 318, 'user_id' => 21, 'name' => 'Micosoft PowerPoint - Macro-Enabled Template File', 'mimeType' => 'application/vnd.ms-powerpoint.template.macroenabled.12', 'ext' => 'potm', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 318 => array ( 'id' => 319, 'user_id' => 21, 'name' => 'Micosoft Word - Macro-Enabled Document', 'mimeType' => 'application/vnd.ms-word.document.macroenabled.12', 'ext' => 'docm', 'icon_class' => 'fa-file-word-o', 'description' => 'IANA: MS Word', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 319 => array ( 'id' => 320, 'user_id' => 21, 'name' => 'Micosoft Word - Macro-Enabled Template', 'mimeType' => 'application/vnd.ms-word.template.macroenabled.12', 'ext' => 'dotm', 'icon_class' => '', 'description' => 'IANA: MS Word', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 320 => array ( 'id' => 321, 'user_id' => 21, 'name' => 'Micro CADAM Helix D&D', 'mimeType' => 'application/vnd.mcd', 'ext' => 'mcd', 'icon_class' => '', 'description' => 'IANA: Micro CADAM Helix D&D', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 321 => array ( 'id' => 322, 'user_id' => 21, 'name' => 'Micrografx', 'mimeType' => 'application/vnd.micrografx.flo', 'ext' => 'flo', 'icon_class' => '', 'description' => 'IANA: Micrografx', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 322 => array ( 'id' => 323, 'user_id' => 21, 'name' => 'Micrografx iGrafx Professional', 'mimeType' => 'application/vnd.micrografx.igx', 'ext' => 'igx', 'icon_class' => '', 'description' => 'IANA: Micrografx', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 323 => array ( 'id' => 324, 'user_id' => 21, 'name' => 'MICROSEC e-Szign¢', 'mimeType' => 'application/vnd.eszigno3+xml', 'ext' => 'es3', 'icon_class' => '', 'description' => 'IANA: MICROSEC e-Szign¢', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 324 => array ( 'id' => 325, 'user_id' => 21, 'name' => 'Microsoft Access', 'mimeType' => 'application/x-msaccess', 'ext' => 'mdb', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Access', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 325 => array ( 'id' => 326, 'user_id' => 21, 'name' => 'Microsoft Advanced Systems Format (ASF)', 'mimeType' => 'video/x-ms-asf', 'ext' => 'asf', 'icon_class' => '', 'description' => 'Wikipedia: Advanced Systems Format (ASF)', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 326 => array ( 'id' => 327, 'user_id' => 21, 'name' => 'Microsoft Application', 'mimeType' => 'application/x-msdownload', 'ext' => 'exe', 'icon_class' => '', 'description' => 'Wikipedia: EXE', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 327 => array ( 'id' => 328, 'user_id' => 21, 'name' => 'Microsoft Artgalry', 'mimeType' => 'application/vnd.ms-artgalry', 'ext' => 'cil', 'icon_class' => '', 'description' => 'IANA: MS Artgalry', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 328 => array ( 'id' => 329, 'user_id' => 21, 'name' => 'Microsoft Cabinet File', 'mimeType' => 'application/vnd.ms-cab-compressed', 'ext' => 'cab', 'icon_class' => '', 'description' => 'IANA: MS Cabinet File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 329 => array ( 'id' => 330, 'user_id' => 21, 'name' => 'Microsoft Class Server', 'mimeType' => 'application/vnd.ms-ims', 'ext' => 'ims', 'icon_class' => '', 'description' => 'IANA: MS Class Server', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 330 => array ( 'id' => 331, 'user_id' => 21, 'name' => 'Microsoft ClickOnce', 'mimeType' => 'application/x-ms-application', 'ext' => 'application', 'icon_class' => '', 'description' => 'Wikipedia: ClickOnce', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 331 => array ( 'id' => 332, 'user_id' => 21, 'name' => 'Microsoft Clipboard Clip', 'mimeType' => 'application/x-msclip', 'ext' => 'clp', 'icon_class' => '', 'description' => 'Wikipedia: Clipboard', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 332 => array ( 'id' => 333, 'user_id' => 21, 'name' => 'Microsoft Document Imaging Format', 'mimeType' => 'image/vnd.ms-modi', 'ext' => 'mdi', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Document Image Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 333 => array ( 'id' => 334, 'user_id' => 21, 'name' => 'Microsoft Embedded OpenType', 'mimeType' => 'application/vnd.ms-fontobject', 'ext' => 'eot', 'icon_class' => '', 'description' => 'IANA: MS Embedded OpenType', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 334 => array ( 'id' => 335, 'user_id' => 21, 'name' => 'Microsoft Excel', 'mimeType' => 'application/vnd.ms-excel', 'ext' => 'xls', 'icon_class' => '', 'description' => 'IANA: MS Excel', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 335 => array ( 'id' => 336, 'user_id' => 21, 'name' => 'Microsoft Excel - Add-In File', 'mimeType' => 'application/vnd.ms-excel.addin.macroenabled.12', 'ext' => 'xlam', 'icon_class' => '', 'description' => 'IANA: MS Excel', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 336 => array ( 'id' => 337, 'user_id' => 21, 'name' => 'Microsoft Excel - Binary Workbook', 'mimeType' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12', 'ext' => 'xlsb', 'icon_class' => '', 'description' => 'IANA: MS Excel', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 337 => array ( 'id' => 338, 'user_id' => 21, 'name' => 'Microsoft Excel - Macro-Enabled Template File', 'mimeType' => 'application/vnd.ms-excel.template.macroenabled.12', 'ext' => 'xltm', 'icon_class' => '', 'description' => 'IANA: MS Excel', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 338 => array ( 'id' => 339, 'user_id' => 21, 'name' => 'Microsoft Excel - Macro-Enabled Workbook', 'mimeType' => 'application/vnd.ms-excel.sheet.macroenabled.12', 'ext' => 'xlsm', 'icon_class' => '', 'description' => 'IANA: MS Excel', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 339 => array ( 'id' => 340, 'user_id' => 21, 'name' => 'Microsoft Html Help File', 'mimeType' => 'application/vnd.ms-htmlhelp', 'ext' => 'chm', 'icon_class' => '', 'description' => 'IANA:MS Html Help File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 340 => array ( 'id' => 341, 'user_id' => 21, 'name' => 'Microsoft Information Card', 'mimeType' => 'application/x-mscardfile', 'ext' => 'crd', 'icon_class' => '', 'description' => 'Wikipedia: Information Card', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 341 => array ( 'id' => 342, 'user_id' => 21, 'name' => 'Microsoft Learning Resource Module', 'mimeType' => 'application/vnd.ms-lrm', 'ext' => 'lrm', 'icon_class' => '', 'description' => 'IANA: MS Learning Resource Module', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 342 => array ( 'id' => 343, 'user_id' => 21, 'name' => 'Microsoft MediaView', 'mimeType' => 'application/x-msmediaview', 'ext' => 'mvb', 'icon_class' => '', 'description' => 'Windows Help', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 343 => array ( 'id' => 344, 'user_id' => 21, 'name' => 'Microsoft Money', 'mimeType' => 'application/x-msmoney', 'ext' => 'mny', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Money', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 344 => array ( 'id' => 345, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Presentation', 'mimeType' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'ext' => 'pptx', 'icon_class' => '', 'description' => 'IANA: OOXML - Presentation', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 345 => array ( 'id' => 346, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Presentation (Slide)', 'mimeType' => 'application/vnd.openxmlformats-officedocument.presentationml.slide', 'ext' => 'sldx', 'icon_class' => '', 'description' => 'IANA: OOXML - Presentation', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 346 => array ( 'id' => 347, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Presentation (Slideshow)', 'mimeType' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow', 'ext' => 'ppsx', 'icon_class' => '', 'description' => 'IANA: OOXML - Presentation', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 347 => array ( 'id' => 348, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Presentation Template', 'mimeType' => 'application/vnd.openxmlformats-officedocument.presentationml.template', 'ext' => 'potx', 'icon_class' => '', 'description' => 'IANA: OOXML - Presentation Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 348 => array ( 'id' => 349, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Spreadsheet', 'mimeType' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'ext' => 'xlsx', 'icon_class' => '', 'description' => 'IANA: OOXML - Spreadsheet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 349 => array ( 'id' => 350, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Spreadsheet Teplate', 'mimeType' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template', 'ext' => 'xltx', 'icon_class' => '', 'description' => 'IANA: OOXML - Spreadsheet Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 350 => array ( 'id' => 351, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Word Document', 'mimeType' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'ext' => 'docx', 'icon_class' => 'fa-file-word-o', 'description' => 'IANA: OOXML - Word Document', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 351 => array ( 'id' => 352, 'user_id' => 21, 'name' => 'Microsoft Office - OOXML - Word Document Template', 'mimeType' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'ext' => 'dotx', 'icon_class' => '', 'description' => 'IANA: OOXML - Word Document Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 352 => array ( 'id' => 353, 'user_id' => 21, 'name' => 'Microsoft Office Binder', 'mimeType' => 'application/x-msbinder', 'ext' => 'obd', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Shared Tools', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 353 => array ( 'id' => 354, 'user_id' => 21, 'name' => 'Microsoft Office System Release Theme', 'mimeType' => 'application/vnd.ms-officetheme', 'ext' => 'thmx', 'icon_class' => '', 'description' => 'IANA: MS Office System Release Theme', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 354 => array ( 'id' => 355, 'user_id' => 21, 'name' => 'Microsoft OneNote', 'mimeType' => 'application/onenote', 'ext' => 'onetoc', 'icon_class' => '', 'description' => 'MS OneNote 2010', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 355 => array ( 'id' => 356, 'user_id' => 21, 'name' => 'Microsoft PlayReady Ecosystem', 'mimeType' => 'audio/vnd.ms-playready.media.pya', 'ext' => 'pya', 'icon_class' => '', 'description' => 'IANA: Microsoft PlayReady Ecosystem', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 356 => array ( 'id' => 357, 'user_id' => 21, 'name' => 'Microsoft PlayReady Ecosystem Video', 'mimeType' => 'video/vnd.ms-playready.media.pyv', 'ext' => 'pyv', 'icon_class' => '', 'description' => 'IANA: Microsoft PlayReady Ecosystem', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 357 => array ( 'id' => 358, 'user_id' => 21, 'name' => 'Microsoft PowerPoint', 'mimeType' => 'application/vnd.ms-powerpoint', 'ext' => 'ppt', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 358 => array ( 'id' => 359, 'user_id' => 21, 'name' => 'Microsoft PowerPoint - Add-in file', 'mimeType' => 'application/vnd.ms-powerpoint.addin.macroenabled.12', 'ext' => 'ppam', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 359 => array ( 'id' => 360, 'user_id' => 21, 'name' => 'Microsoft PowerPoint - Macro-Enabled Open XML Slide', 'mimeType' => 'application/vnd.ms-powerpoint.slide.macroenabled.12', 'ext' => 'sldm', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 360 => array ( 'id' => 361, 'user_id' => 21, 'name' => 'Microsoft PowerPoint - Macro-Enabled Presentation File', 'mimeType' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12', 'ext' => 'pptm', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 361 => array ( 'id' => 362, 'user_id' => 21, 'name' => 'Microsoft PowerPoint - Macro-Enabled Slide Show File', 'mimeType' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12', 'ext' => 'ppsm', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 362 => array ( 'id' => 363, 'user_id' => 21, 'name' => 'Microsoft Project', 'mimeType' => 'application/vnd.ms-project', 'ext' => 'mpp', 'icon_class' => '', 'description' => 'IANA: MS PowerPoint', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 363 => array ( 'id' => 364, 'user_id' => 21, 'name' => 'Microsoft Publisher', 'mimeType' => 'application/x-mspublisher', 'ext' => 'pub', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Publisher', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 364 => array ( 'id' => 365, 'user_id' => 21, 'name' => 'Microsoft Schedule+', 'mimeType' => 'application/x-msschedule', 'ext' => 'scd', 'icon_class' => '', 'description' => 'Wikipedia: Microsoft Schedule Plus', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 365 => array ( 'id' => 366, 'user_id' => 21, 'name' => 'Microsoft Silverlight', 'mimeType' => 'application/x-silverlight-app', 'ext' => 'xap', 'icon_class' => '', 'description' => 'Wikipedia: Silverlight', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 366 => array ( 'id' => 367, 'user_id' => 21, 'name' => 'Microsoft Trust UI Provider - Certificate Trust Link', 'mimeType' => 'application/vnd.ms-pki.stl', 'ext' => 'stl', 'icon_class' => '', 'description' => 'IANA: MS Trust UI Provider', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 367 => array ( 'id' => 368, 'user_id' => 21, 'name' => 'Microsoft Trust UI Provider - Security Catalog', 'mimeType' => 'application/vnd.ms-pki.seccat', 'ext' => 'cat', 'icon_class' => '', 'description' => 'IANA: MS Trust UI Provider', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 368 => array ( 'id' => 369, 'user_id' => 21, 'name' => 'Microsoft Visio', 'mimeType' => 'application/vnd.visio', 'ext' => 'vsd', 'icon_class' => '', 'description' => 'IANA: Visio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 369 => array ( 'id' => 370, 'user_id' => 21, 'name' => 'Microsoft Windows Media', 'mimeType' => 'video/x-ms-wm', 'ext' => 'wm', 'icon_class' => '', 'description' => 'Wikipedia: Advanced Systems Format (ASF)', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 370 => array ( 'id' => 371, 'user_id' => 21, 'name' => 'Microsoft Windows Media Audio', 'mimeType' => 'audio/x-ms-wma', 'ext' => 'wma', 'icon_class' => '', 'description' => 'Wikipedia: Windows Media Audio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 371 => array ( 'id' => 372, 'user_id' => 21, 'name' => 'Microsoft Windows Media Audio Redirector', 'mimeType' => 'audio/x-ms-wax', 'ext' => 'wax', 'icon_class' => '', 'description' => 'Windows Media Metafiles', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 372 => array ( 'id' => 373, 'user_id' => 21, 'name' => 'Microsoft Windows Media Audio/Video Playlist', 'mimeType' => 'video/x-ms-wmx', 'ext' => 'wmx', 'icon_class' => '', 'description' => 'Wikipedia: Advanced Systems Format (ASF)', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 373 => array ( 'id' => 374, 'user_id' => 21, 'name' => 'Microsoft Windows Media Player Download Package', 'mimeType' => 'application/x-ms-wmd', 'ext' => 'wmd', 'icon_class' => '', 'description' => 'Wikipedia: Windows Media Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 374 => array ( 'id' => 375, 'user_id' => 21, 'name' => 'Microsoft Windows Media Player Playlist', 'mimeType' => 'application/vnd.ms-wpl', 'ext' => 'wpl', 'icon_class' => '', 'description' => 'IANA: MS Windows Media Player Playlist', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 375 => array ( 'id' => 376, 'user_id' => 21, 'name' => 'Microsoft Windows Media Player Skin Package', 'mimeType' => 'application/x-ms-wmz', 'ext' => 'wmz', 'icon_class' => '', 'description' => 'Wikipedia: Windows Media Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 376 => array ( 'id' => 377, 'user_id' => 21, 'name' => 'Microsoft Windows Media Video', 'mimeType' => 'video/x-ms-wmv', 'ext' => 'wmv', 'icon_class' => '', 'description' => 'Wikipedia: Advanced Systems Format (ASF)', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 377 => array ( 'id' => 378, 'user_id' => 21, 'name' => 'Microsoft Windows Media Video Playlist', 'mimeType' => 'video/x-ms-wvx', 'ext' => 'wvx', 'icon_class' => '', 'description' => 'Wikipedia: Advanced Systems Format (ASF)', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 378 => array ( 'id' => 379, 'user_id' => 21, 'name' => 'Microsoft Windows Metafile', 'mimeType' => 'application/x-msmetafile', 'ext' => 'wmf', 'icon_class' => '', 'description' => 'Wikipedia: Windows Metafile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 379 => array ( 'id' => 380, 'user_id' => 21, 'name' => 'Microsoft Windows Terminal Services', 'mimeType' => 'application/x-msterminal', 'ext' => 'trm', 'icon_class' => '', 'description' => 'Wikipedia: Terminal Server', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 380 => array ( 'id' => 381, 'user_id' => 21, 'name' => 'Microsoft Word', 'mimeType' => 'application/msword', 'ext' => 'doc', 'icon_class' => 'fa-file-word-o', 'description' => 'Wikipedia: Microsoft Word', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 381 => array ( 'id' => 382, 'user_id' => 21, 'name' => 'Microsoft Wordpad', 'mimeType' => 'application/x-mswrite', 'ext' => 'wri', 'icon_class' => '', 'description' => 'Wikipedia: Wordpad', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 382 => array ( 'id' => 383, 'user_id' => 21, 'name' => 'Microsoft Works', 'mimeType' => 'application/vnd.ms-works', 'ext' => 'wps', 'icon_class' => '', 'description' => 'IANA: MS Works', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 383 => array ( 'id' => 384, 'user_id' => 21, 'name' => 'Microsoft XAML Browser Application', 'mimeType' => 'application/x-ms-xbap', 'ext' => 'xbap', 'icon_class' => '', 'description' => 'Wikipedia: XAML Browser', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 384 => array ( 'id' => 385, 'user_id' => 21, 'name' => 'Microsoft XML Paper Specification', 'mimeType' => 'application/vnd.ms-xpsdocument', 'ext' => 'xps', 'icon_class' => '', 'description' => 'IANA: MS XML Paper Specification', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 385 => array ( 'id' => 386, 'user_id' => 21, 'name' => 'MIDI - Musical Instrument Digital Interface', 'mimeType' => 'audio/midi', 'ext' => 'mid', 'icon_class' => '', 'description' => 'Wikipedia: MIDI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 386 => array ( 'id' => 387, 'user_id' => 21, 'name' => 'MiniPay', 'mimeType' => 'application/vnd.ibm.minipay', 'ext' => 'mpy', 'icon_class' => '', 'description' => 'IANA: MiniPay', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 387 => array ( 'id' => 388, 'user_id' => 21, 'name' => 'MO:DCA-P', 'mimeType' => 'application/vnd.ibm.modcap', 'ext' => 'afp', 'icon_class' => '', 'description' => 'IANA: MO:DCA-P', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 388 => array ( 'id' => 389, 'user_id' => 21, 'name' => 'Mobile Information Device Profile', 'mimeType' => 'application/vnd.jcp.javame.midlet-rms', 'ext' => 'rms', 'icon_class' => '', 'description' => 'IANA: Mobile Information Device Profile', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 389 => array ( 'id' => 390, 'user_id' => 21, 'name' => 'MobileTV', 'mimeType' => 'application/vnd.tmobile-livetv', 'ext' => 'tmo', 'icon_class' => '', 'description' => 'IANA: MobileTV', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 390 => array ( 'id' => 391, 'user_id' => 21, 'name' => 'Mobipocket', 'mimeType' => 'application/x-mobipocket-ebook', 'ext' => 'prc', 'icon_class' => '', 'description' => 'Wikipedia: Mobipocket', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 391 => array ( 'id' => 392, 'user_id' => 21, 'name' => 'Mobius Management Systems - Basket file', 'mimeType' => 'application/vnd.mobius.mbk', 'ext' => 'mbk', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 392 => array ( 'id' => 393, 'user_id' => 21, 'name' => 'Mobius Management Systems - Distribution Database', 'mimeType' => 'application/vnd.mobius.dis', 'ext' => 'dis', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 393 => array ( 'id' => 394, 'user_id' => 21, 'name' => 'Mobius Management Systems - Policy Definition Language File', 'mimeType' => 'application/vnd.mobius.plc', 'ext' => 'plc', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 394 => array ( 'id' => 395, 'user_id' => 21, 'name' => 'Mobius Management Systems - Query File', 'mimeType' => 'application/vnd.mobius.mqy', 'ext' => 'mqy', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 395 => array ( 'id' => 396, 'user_id' => 21, 'name' => 'Mobius Management Systems - Script Language', 'mimeType' => 'application/vnd.mobius.msl', 'ext' => 'msl', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 396 => array ( 'id' => 397, 'user_id' => 21, 'name' => 'Mobius Management Systems - Topic Index File', 'mimeType' => 'application/vnd.mobius.txf', 'ext' => 'txf', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 397 => array ( 'id' => 398, 'user_id' => 21, 'name' => 'Mobius Management Systems - UniversalArchive', 'mimeType' => 'application/vnd.mobius.daf', 'ext' => 'daf', 'icon_class' => '', 'description' => 'IANA: Mobius Management Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 398 => array ( 'id' => 399, 'user_id' => 21, 'name' => 'mod_fly / fly.cgi', 'mimeType' => 'text/vnd.fly', 'ext' => 'fly', 'icon_class' => '', 'description' => 'IANA: Fly', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 399 => array ( 'id' => 400, 'user_id' => 21, 'name' => 'Mophun Certificate', 'mimeType' => 'application/vnd.mophun.certificate', 'ext' => 'mpc', 'icon_class' => '', 'description' => 'IANA: Mophun Certificate', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 400 => array ( 'id' => 401, 'user_id' => 21, 'name' => 'Mophun VM', 'mimeType' => 'application/vnd.mophun.application', 'ext' => 'mpn', 'icon_class' => '', 'description' => 'IANA: Mophun VM', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 401 => array ( 'id' => 402, 'user_id' => 21, 'name' => 'Motion JPEG 2000', 'mimeType' => 'video/mj2', 'ext' => 'mj2', 'icon_class' => '', 'description' => 'IANA: MJ2', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 402 => array ( 'id' => 403, 'user_id' => 21, 'name' => 'MPEG Audio', 'mimeType' => 'audio/mpeg', 'ext' => 'mpga', 'icon_class' => ' fa-file-audio-o', 'description' => 'Wikipedia: MPGA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 403 => array ( 'id' => 404, 'user_id' => 21, 'name' => 'MPEG Url', 'mimeType' => 'video/vnd.mpegurl', 'ext' => 'mxu', 'icon_class' => '', 'description' => 'IANA: MPEG Url', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 404 => array ( 'id' => 405, 'user_id' => 21, 'name' => 'MPEG Video', 'mimeType' => 'video/mpeg', 'ext' => 'mpeg', 'icon_class' => '', 'description' => 'Wikipedia: MPEG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 405 => array ( 'id' => 406, 'user_id' => 21, 'name' => 'MPEG-21', 'mimeType' => 'application/mp21', 'ext' => 'm21', 'icon_class' => '', 'description' => 'Wikipedia: MPEG-21', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 406 => array ( 'id' => 407, 'user_id' => 21, 'name' => 'MPEG-4 Audio', 'mimeType' => 'audio/mp4', 'ext' => 'mp4a', 'icon_class' => '', 'description' => 'Wikipedia: MP4A', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 407 => array ( 'id' => 408, 'user_id' => 21, 'name' => 'MPEG-4 Video', 'mimeType' => 'video/mp4', 'ext' => 'mp4', 'icon_class' => 'fa-file-video-o', 'description' => 'Wikipedia: MP4', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 408 => array ( 'id' => 409, 'user_id' => 21, 'name' => 'MPEG4', 'mimeType' => 'application/mp4', 'ext' => 'mp4', 'icon_class' => '', 'description' => 'RFC 4337', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 409 => array ( 'id' => 410, 'user_id' => 21, 'name' => 'Multimedia Playlist Unicode', 'mimeType' => 'application/vnd.apple.mpegurl', 'ext' => 'm3u8', 'icon_class' => '', 'description' => 'Wikipedia: M3U', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 410 => array ( 'id' => 411, 'user_id' => 21, 'name' => 'MUsical Score Interpreted Code Invented for the ASCII designation of Notation', 'mimeType' => 'application/vnd.musician', 'ext' => 'mus', 'icon_class' => '', 'description' => 'IANA: MUSICIAN', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 411 => array ( 'id' => 412, 'user_id' => 21, 'name' => 'Muvee Automatic Video Editing', 'mimeType' => 'application/vnd.muvee.style', 'ext' => 'msty', 'icon_class' => '', 'description' => 'IANA: Muvee', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 412 => array ( 'id' => 413, 'user_id' => 21, 'name' => 'MXML', 'mimeType' => 'application/xv+xml', 'ext' => 'mxml', 'icon_class' => '', 'description' => 'Wikipedia: MXML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 413 => array ( 'id' => 414, 'user_id' => 21, 'name' => 'N-Gage Game Data', 'mimeType' => 'application/vnd.nokia.n-gage.data', 'ext' => 'ngdat', 'icon_class' => '', 'description' => 'IANA: N-Gage Game Data', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 414 => array ( 'id' => 415, 'user_id' => 21, 'name' => 'N-Gage Game Installer', 'mimeType' => 'application/vnd.nokia.n-gage.symbian.install', 'ext' => 'n-gage', 'icon_class' => '', 'description' => 'IANA: N-Gage Game Installer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 415 => array ( 'id' => 416, 'user_id' => 21, 'name' => 'Navigation Control file for XML (for ePub)', 'mimeType' => 'application/x-dtbncx+xml', 'ext' => 'ncx', 'icon_class' => '', 'description' => 'Wikipedia: EPUB', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 416 => array ( 'id' => 417, 'user_id' => 21, 'name' => 'Network Common Data Form (NetCDF)', 'mimeType' => 'application/x-netcdf', 'ext' => 'nc', 'icon_class' => '', 'description' => 'Wikipedia: NetCDF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 417 => array ( 'id' => 418, 'user_id' => 21, 'name' => 'neuroLanguage', 'mimeType' => 'application/vnd.neurolanguage.nlu', 'ext' => 'nlu', 'icon_class' => '', 'description' => 'IANA: neuroLanguage', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 418 => array ( 'id' => 419, 'user_id' => 21, 'name' => 'New Moon Liftoff/DNA', 'mimeType' => 'application/vnd.dna', 'ext' => 'dna', 'icon_class' => '', 'description' => 'IANA: New Moon Liftoff/DNA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 419 => array ( 'id' => 420, 'user_id' => 21, 'name' => 'NobleNet Directory', 'mimeType' => 'application/vnd.noblenet-directory', 'ext' => 'nnd', 'icon_class' => '', 'description' => 'IANA: NobleNet Directory', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 420 => array ( 'id' => 421, 'user_id' => 21, 'name' => 'NobleNet Sealer', 'mimeType' => 'application/vnd.noblenet-sealer', 'ext' => 'nns', 'icon_class' => '', 'description' => 'IANA: NobleNet Sealer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 421 => array ( 'id' => 422, 'user_id' => 21, 'name' => 'NobleNet Web', 'mimeType' => 'application/vnd.noblenet-web', 'ext' => 'nnw', 'icon_class' => '', 'description' => 'IANA: NobleNet Web', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 422 => array ( 'id' => 423, 'user_id' => 21, 'name' => 'Nokia Radio Application - Preset', 'mimeType' => 'application/vnd.nokia.radio-preset', 'ext' => 'rpst', 'icon_class' => '', 'description' => 'IANA: Nokia Radio Application', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 423 => array ( 'id' => 424, 'user_id' => 21, 'name' => 'Nokia Radio Application - Preset', 'mimeType' => 'application/vnd.nokia.radio-presets', 'ext' => 'rpss', 'icon_class' => '', 'description' => 'IANA: Nokia Radio Application', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 424 => array ( 'id' => 425, 'user_id' => 21, 'name' => 'Notation3', 'mimeType' => 'text/n3', 'ext' => 'n3', 'icon_class' => '', 'description' => 'Wikipedia: Notation3', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 425 => array ( 'id' => 426, 'user_id' => 21, 'name' => 'Novadigm\'s RADIA and EDM products', 'mimeType' => 'application/vnd.novadigm.edm', 'ext' => 'edm', 'icon_class' => '', 'description' => 'IANA: Novadigm\'s RADIA and EDM products', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 426 => array ( 'id' => 427, 'user_id' => 21, 'name' => 'Novadigm\'s RADIA and EDM products', 'mimeType' => 'application/vnd.novadigm.edx', 'ext' => 'edx', 'icon_class' => '', 'description' => 'IANA: Novadigm\'s RADIA and EDM products', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 427 => array ( 'id' => 428, 'user_id' => 21, 'name' => 'Novadigm\'s RADIA and EDM products', 'mimeType' => 'application/vnd.novadigm.ext', 'ext' => 'ext', 'icon_class' => '', 'description' => 'IANA: Novadigm\'s RADIA and EDM products', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 428 => array ( 'id' => 429, 'user_id' => 21, 'name' => 'NpGraphIt', 'mimeType' => 'application/vnd.flographit', 'ext' => 'gph', 'icon_class' => '', 'description' => 'IANA: FloGraphIt', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 429 => array ( 'id' => 430, 'user_id' => 21, 'name' => 'Nuera ECELP 4800', 'mimeType' => 'audio/vnd.nuera.ecelp4800', 'ext' => 'ecelp4800', 'icon_class' => '', 'description' => 'IANA: ECELP 4800', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 430 => array ( 'id' => 431, 'user_id' => 21, 'name' => 'Nuera ECELP 7470', 'mimeType' => 'audio/vnd.nuera.ecelp7470', 'ext' => 'ecelp7470', 'icon_class' => '', 'description' => 'IANA: ECELP 7470', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 431 => array ( 'id' => 432, 'user_id' => 21, 'name' => 'Nuera ECELP 9600', 'mimeType' => 'audio/vnd.nuera.ecelp9600', 'ext' => 'ecelp9600', 'icon_class' => '', 'description' => 'IANA: ECELP 9600', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 432 => array ( 'id' => 433, 'user_id' => 21, 'name' => 'Office Document Architecture', 'mimeType' => 'application/oda', 'ext' => 'oda', 'icon_class' => '', 'description' => 'RFC 2161', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 433 => array ( 'id' => 434, 'user_id' => 21, 'name' => 'Ogg', 'mimeType' => 'application/ogg', 'ext' => 'ogx', 'icon_class' => '', 'description' => 'Wikipedia: Ogg', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 434 => array ( 'id' => 435, 'user_id' => 21, 'name' => 'Ogg Audio', 'mimeType' => 'audio/ogg', 'ext' => 'oga', 'icon_class' => ' fa-file-audio-o', 'description' => 'Wikipedia: Ogg', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 435 => array ( 'id' => 436, 'user_id' => 21, 'name' => 'Ogg Video', 'mimeType' => 'video/ogg', 'ext' => 'ogv', 'icon_class' => 'fa-file-video-o', 'description' => 'Wikipedia: Ogg', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 436 => array ( 'id' => 437, 'user_id' => 21, 'name' => 'OMA Download Agents', 'mimeType' => 'application/vnd.oma.dd2+xml', 'ext' => 'dd2', 'icon_class' => '', 'description' => 'IANA: OMA Download Agents', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 437 => array ( 'id' => 438, 'user_id' => 21, 'name' => 'Open Document Text Web', 'mimeType' => 'application/vnd.oasis.opendocument.text-web', 'ext' => 'oth', 'icon_class' => '', 'description' => 'IANA: OpenDocument Text Web', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 438 => array ( 'id' => 439, 'user_id' => 21, 'name' => 'Open eBook Publication Structure', 'mimeType' => 'application/oebps-package+xml', 'ext' => 'opf', 'icon_class' => '', 'description' => 'Wikipedia: Open eBook', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 439 => array ( 'id' => 440, 'user_id' => 21, 'name' => 'Open Financial Exchange', 'mimeType' => 'application/vnd.intu.qbo', 'ext' => 'qbo', 'icon_class' => '', 'description' => 'IANA: Open Financial Exchange', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 440 => array ( 'id' => 441, 'user_id' => 21, 'name' => 'Open Office Extension', 'mimeType' => 'application/vnd.openofficeorg.extension', 'ext' => 'oxt', 'icon_class' => '', 'description' => 'IANA: Open Office Extension', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 441 => array ( 'id' => 442, 'user_id' => 21, 'name' => 'Open Score Format', 'mimeType' => 'application/vnd.yamaha.openscoreformat', 'ext' => 'osf', 'icon_class' => '', 'description' => 'IANA: Open Score Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 442 => array ( 'id' => 443, 'user_id' => 21, 'name' => 'Open Web Media Project - Audio', 'mimeType' => 'audio/webm', 'ext' => 'weba', 'icon_class' => '', 'description' => 'WebM Project', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 443 => array ( 'id' => 444, 'user_id' => 21, 'name' => 'Open Web Media Project - Video', 'mimeType' => 'video/webm', 'ext' => 'webm', 'icon_class' => 'fa-file-video-o', 'description' => 'WebM Project', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 444 => array ( 'id' => 445, 'user_id' => 21, 'name' => 'OpenDocument Chart', 'mimeType' => 'application/vnd.oasis.opendocument.chart', 'ext' => 'odc', 'icon_class' => '', 'description' => 'IANA: OpenDocument Chart', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 445 => array ( 'id' => 446, 'user_id' => 21, 'name' => 'OpenDocument Chart Template', 'mimeType' => 'application/vnd.oasis.opendocument.chart-template', 'ext' => 'otc', 'icon_class' => '', 'description' => 'IANA: OpenDocument Chart Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 446 => array ( 'id' => 447, 'user_id' => 21, 'name' => 'OpenDocument Database', 'mimeType' => 'application/vnd.oasis.opendocument.database', 'ext' => 'odb', 'icon_class' => '', 'description' => 'IANA: OpenDocument Database', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 447 => array ( 'id' => 448, 'user_id' => 21, 'name' => 'OpenDocument Formula', 'mimeType' => 'application/vnd.oasis.opendocument.formula', 'ext' => 'odf', 'icon_class' => '', 'description' => 'IANA: OpenDocument Formula', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 448 => array ( 'id' => 449, 'user_id' => 21, 'name' => 'OpenDocument Formula Template', 'mimeType' => 'application/vnd.oasis.opendocument.formula-template', 'ext' => 'odft', 'icon_class' => '', 'description' => 'IANA: OpenDocument Formula Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 449 => array ( 'id' => 450, 'user_id' => 21, 'name' => 'OpenDocument Graphics', 'mimeType' => 'application/vnd.oasis.opendocument.graphics', 'ext' => 'odg', 'icon_class' => '', 'description' => 'IANA: OpenDocument Graphics', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 450 => array ( 'id' => 451, 'user_id' => 21, 'name' => 'OpenDocument Graphics Template', 'mimeType' => 'application/vnd.oasis.opendocument.graphics-template', 'ext' => 'otg', 'icon_class' => '', 'description' => 'IANA: OpenDocument Graphics Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 451 => array ( 'id' => 452, 'user_id' => 21, 'name' => 'OpenDocument Image', 'mimeType' => 'application/vnd.oasis.opendocument.image', 'ext' => 'odi', 'icon_class' => '', 'description' => 'IANA: OpenDocument Image', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 452 => array ( 'id' => 453, 'user_id' => 21, 'name' => 'OpenDocument Image Template', 'mimeType' => 'application/vnd.oasis.opendocument.image-template', 'ext' => 'oti', 'icon_class' => '', 'description' => 'IANA: OpenDocument Image Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 453 => array ( 'id' => 454, 'user_id' => 21, 'name' => 'OpenDocument Presentation', 'mimeType' => 'application/vnd.oasis.opendocument.presentation', 'ext' => 'odp', 'icon_class' => '', 'description' => 'IANA: OpenDocument Presentation', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 454 => array ( 'id' => 455, 'user_id' => 21, 'name' => 'OpenDocument Presentation Template', 'mimeType' => 'application/vnd.oasis.opendocument.presentation-template', 'ext' => 'otp', 'icon_class' => '', 'description' => 'IANA: OpenDocument Presentation Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 455 => array ( 'id' => 456, 'user_id' => 21, 'name' => 'OpenDocument Spreadsheet', 'mimeType' => 'application/vnd.oasis.opendocument.spreadsheet', 'ext' => 'ods', 'icon_class' => '', 'description' => 'IANA: OpenDocument Spreadsheet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 456 => array ( 'id' => 457, 'user_id' => 21, 'name' => 'OpenDocument Spreadsheet Template', 'mimeType' => 'application/vnd.oasis.opendocument.spreadsheet-template', 'ext' => 'ots', 'icon_class' => '', 'description' => 'IANA: OpenDocument Spreadsheet Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 457 => array ( 'id' => 458, 'user_id' => 21, 'name' => 'OpenDocument Text', 'mimeType' => 'application/vnd.oasis.opendocument.text', 'ext' => 'odt', 'icon_class' => '', 'description' => 'IANA: OpenDocument Text', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 458 => array ( 'id' => 459, 'user_id' => 21, 'name' => 'OpenDocument Text Master', 'mimeType' => 'application/vnd.oasis.opendocument.text-master', 'ext' => 'odm', 'icon_class' => '', 'description' => 'IANA: OpenDocument Text Master', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 459 => array ( 'id' => 460, 'user_id' => 21, 'name' => 'OpenDocument Text Template', 'mimeType' => 'application/vnd.oasis.opendocument.text-template', 'ext' => 'ott', 'icon_class' => '', 'description' => 'IANA: OpenDocument Text Template', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 460 => array ( 'id' => 461, 'user_id' => 21, 'name' => 'OpenGL Textures (KTX)', 'mimeType' => 'image/ktx', 'ext' => 'ktx', 'icon_class' => '', 'description' => 'KTX File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 461 => array ( 'id' => 462, 'user_id' => 21, 'name' => 'OpenOffice - Calc (Spreadsheet)', 'mimeType' => 'application/vnd.sun.xml.calc', 'ext' => 'sxc', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 462 => array ( 'id' => 463, 'user_id' => 21, 'name' => 'OpenOffice - Calc Template (Spreadsheet)', 'mimeType' => 'application/vnd.sun.xml.calc.template', 'ext' => 'stc', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 463 => array ( 'id' => 464, 'user_id' => 21, 'name' => 'OpenOffice - Draw (Graphics)', 'mimeType' => 'application/vnd.sun.xml.draw', 'ext' => 'sxd', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 464 => array ( 'id' => 465, 'user_id' => 21, 'name' => 'OpenOffice - Draw Template (Graphics)', 'mimeType' => 'application/vnd.sun.xml.draw.template', 'ext' => 'std', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 465 => array ( 'id' => 466, 'user_id' => 21, 'name' => 'OpenOffice - Impress (Presentation)', 'mimeType' => 'application/vnd.sun.xml.impress', 'ext' => 'sxi', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 466 => array ( 'id' => 467, 'user_id' => 21, 'name' => 'OpenOffice - Impress Template (Presentation)', 'mimeType' => 'application/vnd.sun.xml.impress.template', 'ext' => 'sti', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 467 => array ( 'id' => 468, 'user_id' => 21, 'name' => 'OpenOffice - Math (Formula)', 'mimeType' => 'application/vnd.sun.xml.math', 'ext' => 'sxm', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 468 => array ( 'id' => 469, 'user_id' => 21, 'name' => 'OpenOffice - Writer (Text - HTML)', 'mimeType' => 'application/vnd.sun.xml.writer', 'ext' => 'sxw', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 469 => array ( 'id' => 470, 'user_id' => 21, 'name' => 'OpenOffice - Writer (Text - HTML)', 'mimeType' => 'application/vnd.sun.xml.writer.global', 'ext' => 'sxg', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 470 => array ( 'id' => 471, 'user_id' => 21, 'name' => 'OpenOffice - Writer Template (Text - HTML)', 'mimeType' => 'application/vnd.sun.xml.writer.template', 'ext' => 'stw', 'icon_class' => '', 'description' => 'Wikipedia: OpenOffice', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 471 => array ( 'id' => 472, 'user_id' => 21, 'name' => 'OpenType Font File', 'mimeType' => 'application/x-font-otf', 'ext' => 'otf', 'icon_class' => '', 'description' => 'OpenType Font File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 472 => array ( 'id' => 473, 'user_id' => 21, 'name' => 'OSFPVG', 'mimeType' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml', 'ext' => 'osfpvg', 'icon_class' => '', 'description' => 'IANA: OSFPVG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 473 => array ( 'id' => 474, 'user_id' => 21, 'name' => 'OSGi Deployment Package', 'mimeType' => 'application/vnd.osgi.dp', 'ext' => 'dp', 'icon_class' => '', 'description' => 'IANA: OSGi Deployment Package', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 474 => array ( 'id' => 475, 'user_id' => 21, 'name' => 'PalmOS Data', 'mimeType' => 'application/vnd.palm', 'ext' => 'pdb', 'icon_class' => '', 'description' => 'IANA: PalmOS Data', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 475 => array ( 'id' => 476, 'user_id' => 21, 'name' => 'Pascal Source File', 'mimeType' => 'text/x-pascal', 'ext' => 'p', 'icon_class' => '', 'description' => 'Wikipedia: Pascal', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 476 => array ( 'id' => 477, 'user_id' => 21, 'name' => 'PawaaFILE', 'mimeType' => 'application/vnd.pawaafile', 'ext' => 'paw', 'icon_class' => '', 'description' => 'IANA: PawaaFILE', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 477 => array ( 'id' => 478, 'user_id' => 21, 'name' => 'PCL 6 Enhanced (Formely PCL XL)', 'mimeType' => 'application/vnd.hp-pclxl', 'ext' => 'pclxl', 'icon_class' => '', 'description' => 'IANA: HP PCL XL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 478 => array ( 'id' => 479, 'user_id' => 21, 'name' => 'Pcsel eFIF File', 'mimeType' => 'application/vnd.picsel', 'ext' => 'efif', 'icon_class' => '', 'description' => 'IANA: Picsel eFIF File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 479 => array ( 'id' => 480, 'user_id' => 21, 'name' => 'PCX Image', 'mimeType' => 'image/x-pcx', 'ext' => 'pcx', 'icon_class' => '', 'description' => 'Wikipedia: PCX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 480 => array ( 'id' => 481, 'user_id' => 21, 'name' => 'Photoshop Document', 'mimeType' => 'image/vnd.adobe.photoshop', 'ext' => 'psd', 'icon_class' => '', 'description' => 'Wikipedia: Photoshop Document', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 481 => array ( 'id' => 482, 'user_id' => 21, 'name' => 'PICSRules', 'mimeType' => 'application/pics-rules', 'ext' => 'prf', 'icon_class' => '', 'description' => 'W3C PICSRules', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 482 => array ( 'id' => 483, 'user_id' => 21, 'name' => 'PICT Image', 'mimeType' => 'image/x-pict', 'ext' => 'pic', 'icon_class' => '', 'description' => 'Wikipedia: PICT', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 483 => array ( 'id' => 484, 'user_id' => 21, 'name' => 'pIRCh', 'mimeType' => 'application/x-chat', 'ext' => 'chat', 'icon_class' => '', 'description' => 'Wikipedia: pIRCh', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 484 => array ( 'id' => 485, 'user_id' => 21, 'name' => 'PKCS #10 - Certification Request Standard', 'mimeType' => 'application/pkcs10', 'ext' => 'p10', 'icon_class' => '', 'description' => 'RFC 2986', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 485 => array ( 'id' => 486, 'user_id' => 21, 'name' => 'PKCS #12 - Personal Information Exchange Syntax Standard', 'mimeType' => 'application/x-pkcs12', 'ext' => 'p12', 'icon_class' => '', 'description' => 'RFC 2986', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 486 => array ( 'id' => 487, 'user_id' => 21, 'name' => 'PKCS #7 - Cryptographic Message Syntax Standard', 'mimeType' => 'application/pkcs7-mime', 'ext' => 'p7m', 'icon_class' => '', 'description' => 'RFC 2315', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 487 => array ( 'id' => 488, 'user_id' => 21, 'name' => 'PKCS #7 - Cryptographic Message Syntax Standard', 'mimeType' => 'application/pkcs7-signature', 'ext' => 'p7s', 'icon_class' => '', 'description' => 'RFC 2315', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 488 => array ( 'id' => 489, 'user_id' => 21, 'name' => 'PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)', 'mimeType' => 'application/x-pkcs7-certreqresp', 'ext' => 'p7r', 'icon_class' => '', 'description' => 'RFC 2986', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 489 => array ( 'id' => 490, 'user_id' => 21, 'name' => 'PKCS #7 - Cryptographic Message Syntax Standard (Certificates)', 'mimeType' => 'application/x-pkcs7-certificates', 'ext' => 'p7b', 'icon_class' => '', 'description' => 'RFC 2986', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 490 => array ( 'id' => 491, 'user_id' => 21, 'name' => 'PKCS #8 - Private-Key Information Syntax Standard', 'mimeType' => 'application/pkcs8', 'ext' => 'p8', 'icon_class' => '', 'description' => 'RFC 5208', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 491 => array ( 'id' => 492, 'user_id' => 21, 'name' => 'PocketLearn Viewers', 'mimeType' => 'application/vnd.pocketlearn', 'ext' => 'plf', 'icon_class' => '', 'description' => 'IANA: PocketLearn Viewers', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 492 => array ( 'id' => 493, 'user_id' => 21, 'name' => 'Portable Anymap Image', 'mimeType' => 'image/x-portable-anymap', 'ext' => 'pnm', 'icon_class' => '', 'description' => 'Wikipedia: Netpbm Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 493 => array ( 'id' => 494, 'user_id' => 21, 'name' => 'Portable Bitmap Format', 'mimeType' => 'image/x-portable-bitmap', 'ext' => 'pbm', 'icon_class' => '', 'description' => 'Wikipedia: Netpbm Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 494 => array ( 'id' => 495, 'user_id' => 21, 'name' => 'Portable Compiled Format', 'mimeType' => 'application/x-font-pcf', 'ext' => 'pcf', 'icon_class' => '', 'description' => 'Wikipedia: Portable Compiled Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 495 => array ( 'id' => 496, 'user_id' => 21, 'name' => 'Portable Font Resource', 'mimeType' => 'application/font-tdpfr', 'ext' => 'pfr', 'icon_class' => '', 'description' => 'RFC 3073', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 496 => array ( 'id' => 497, 'user_id' => 21, 'name' => 'Portable Game Notation (Chess Games)', 'mimeType' => 'application/x-chess-pgn', 'ext' => 'pgn', 'icon_class' => '', 'description' => 'Wikipedia: Portable Game Notationb', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 497 => array ( 'id' => 498, 'user_id' => 21, 'name' => 'Portable Graymap Format', 'mimeType' => 'image/x-portable-graymap', 'ext' => 'pgm', 'icon_class' => '', 'description' => 'Wikipedia: Netpbm Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 498 => array ( 'id' => 499, 'user_id' => 21, 'name' => 'Portable Network Graphics (PNG)', 'mimeType' => 'image/png', 'ext' => 'png', 'icon_class' => '', 'description' => 'RFC 2083', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 499 => array ( 'id' => 500, 'user_id' => 21, 'name' => 'Portable Pixmap Format', 'mimeType' => 'image/x-portable-pixmap', 'ext' => 'ppm', 'icon_class' => '', 'description' => 'Wikipedia: Netpbm Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), )); \DB::table('lfm_file_mime_types')->insert(array ( 0 => array ( 'id' => 501, 'user_id' => 21, 'name' => 'Portable Symmetric Key Container', 'mimeType' => 'application/pskc+xml', 'ext' => 'pskcxml', 'icon_class' => '', 'description' => 'RFC 6030', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 1 => array ( 'id' => 502, 'user_id' => 21, 'name' => 'PosML', 'mimeType' => 'application/vnd.ctc-posml', 'ext' => 'pml', 'icon_class' => '', 'description' => 'IANA: PosML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 2 => array ( 'id' => 503, 'user_id' => 21, 'name' => 'PostScript', 'mimeType' => 'application/postscript', 'ext' => 'ai', 'icon_class' => '', 'description' => 'Wikipedia: PostScript', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 3 => array ( 'id' => 504, 'user_id' => 21, 'name' => 'PostScript Fonts', 'mimeType' => 'application/x-font-type1', 'ext' => 'pfa', 'icon_class' => '', 'description' => 'Wikipedia: PostScript Fonts', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 4 => array ( 'id' => 505, 'user_id' => 21, 'name' => 'PowerBuilder', 'mimeType' => 'application/vnd.powerbuilder6', 'ext' => 'pbd', 'icon_class' => '', 'description' => 'IANA: PowerBuilder', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 5 => array ( 'id' => 506, 'user_id' => 21, 'name' => 'Pretty Good Privacy', 'mimeType' => 'application/pgp-encrypted', 'ext' => '', 'icon_class' => '', 'description' => 'RFC 2015', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 6 => array ( 'id' => 507, 'user_id' => 21, 'name' => 'Pretty Good Privacy - Signature', 'mimeType' => 'application/pgp-signature', 'ext' => 'pgp', 'icon_class' => '', 'description' => 'RFC 2015', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 7 => array ( 'id' => 508, 'user_id' => 21, 'name' => 'Preview Systems ZipLock/VBox', 'mimeType' => 'application/vnd.previewsystems.box', 'ext' => 'box', 'icon_class' => '', 'description' => 'IANA: Preview Systems ZipLock/Vbox', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 8 => array ( 'id' => 509, 'user_id' => 21, 'name' => 'Princeton Video Image', 'mimeType' => 'application/vnd.pvi.ptid1', 'ext' => 'ptid', 'icon_class' => '', 'description' => 'IANA: Princeton Video Image', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 9 => array ( 'id' => 510, 'user_id' => 21, 'name' => 'Pronunciation Lexicon Specification', 'mimeType' => 'application/pls+xml', 'ext' => 'pls', 'icon_class' => '', 'description' => 'RFC 4267', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 10 => array ( 'id' => 511, 'user_id' => 21, 'name' => 'Proprietary P&G Standard Reporting System', 'mimeType' => 'application/vnd.pg.format', 'ext' => 'str', 'icon_class' => '', 'description' => 'IANA: Proprietary P&G Standard Reporting System', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 11 => array ( 'id' => 512, 'user_id' => 21, 'name' => 'Proprietary P&G Standard Reporting System', 'mimeType' => 'application/vnd.pg.osasli', 'ext' => 'ei6', 'icon_class' => '', 'description' => 'IANA: Proprietary P&G Standard Reporting System', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 12 => array ( 'id' => 513, 'user_id' => 21, 'name' => 'PRS Lines Tag', 'mimeType' => 'text/prs.lines.tag', 'ext' => 'dsc', 'icon_class' => '', 'description' => 'IANA: PRS Lines Tag', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 13 => array ( 'id' => 514, 'user_id' => 21, 'name' => 'PSF Fonts', 'mimeType' => 'application/x-font-linux-psf', 'ext' => 'psf', 'icon_class' => '', 'description' => 'PSF Fonts', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 14 => array ( 'id' => 515, 'user_id' => 21, 'name' => 'PubliShare Objects', 'mimeType' => 'application/vnd.publishare-delta-tree', 'ext' => 'qps', 'icon_class' => '', 'description' => 'IANA: PubliShare Objects', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 15 => array ( 'id' => 516, 'user_id' => 21, 'name' => 'Qualcomm\'s Plaza Mobile Internet', 'mimeType' => 'application/vnd.pmi.widget', 'ext' => 'wg', 'icon_class' => '', 'description' => 'IANA: Qualcomm\'s Plaza Mobile Internet', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 16 => array ( 'id' => 517, 'user_id' => 21, 'name' => 'QuarkXpress', 'mimeType' => 'application/vnd.quark.quarkxpress', 'ext' => 'qxd', 'icon_class' => '', 'description' => 'IANA: QuarkXPress', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 17 => array ( 'id' => 518, 'user_id' => 21, 'name' => 'QUASS Stream Player', 'mimeType' => 'application/vnd.epson.esf', 'ext' => 'esf', 'icon_class' => '', 'description' => 'IANA: QUASS Stream Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 18 => array ( 'id' => 519, 'user_id' => 21, 'name' => 'QUASS Stream Player', 'mimeType' => 'application/vnd.epson.msf', 'ext' => 'msf', 'icon_class' => '', 'description' => 'IANA: QUASS Stream Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 19 => array ( 'id' => 520, 'user_id' => 21, 'name' => 'QUASS Stream Player', 'mimeType' => 'application/vnd.epson.ssf', 'ext' => 'ssf', 'icon_class' => '', 'description' => 'IANA: QUASS Stream Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 20 => array ( 'id' => 521, 'user_id' => 21, 'name' => 'QuickAnime Player', 'mimeType' => 'application/vnd.epson.quickanime', 'ext' => 'qam', 'icon_class' => '', 'description' => 'IANA: QuickAnime Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 21 => array ( 'id' => 522, 'user_id' => 21, 'name' => 'Quicken', 'mimeType' => 'application/vnd.intu.qfx', 'ext' => 'qfx', 'icon_class' => '', 'description' => 'IANA: Quicken', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 22 => array ( 'id' => 523, 'user_id' => 21, 'name' => 'Quicktime Video', 'mimeType' => 'video/quicktime', 'ext' => 'qt', 'icon_class' => '', 'description' => 'Wikipedia: Quicktime', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 23 => array ( 'id' => 524, 'user_id' => 21, 'name' => 'RAR Archive', 'mimeType' => 'application/x-rar', 'ext' => 'rar', 'icon_class' => '', 'description' => 'Wikipedia: RAR', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 24 => array ( 'id' => 525, 'user_id' => 21, 'name' => 'Real Audio Sound', 'mimeType' => 'audio/x-pn-realaudio', 'ext' => 'ram', 'icon_class' => '', 'description' => 'Wikipedia: RealPlayer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 25 => array ( 'id' => 526, 'user_id' => 21, 'name' => 'Real Audio Sound', 'mimeType' => 'audio/x-pn-realaudio-plugin', 'ext' => 'rmp', 'icon_class' => '', 'description' => 'Wikipedia: RealPlayer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 26 => array ( 'id' => 527, 'user_id' => 21, 'name' => 'Really Simple Discovery', 'mimeType' => 'application/rsd+xml', 'ext' => 'rsd', 'icon_class' => '', 'description' => 'Wikipedia: Really Simple Discovery', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 27 => array ( 'id' => 528, 'user_id' => 21, 'name' => 'RealMedia', 'mimeType' => 'application/vnd.rn-realmedia', 'ext' => 'rm', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 28 => array ( 'id' => 529, 'user_id' => 21, 'name' => 'RealVNC', 'mimeType' => 'application/vnd.realvnc.bed', 'ext' => 'bed', 'icon_class' => '', 'description' => 'IANA: RealVNC', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 29 => array ( 'id' => 530, 'user_id' => 21, 'name' => 'Recordare Applications', 'mimeType' => 'application/vnd.recordare.musicxml', 'ext' => 'mxl', 'icon_class' => '', 'description' => 'IANA: Recordare Apps', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 30 => array ( 'id' => 531, 'user_id' => 21, 'name' => 'Recordare Applications', 'mimeType' => 'application/vnd.recordare.musicxml+xml', 'ext' => 'musicxml', 'icon_class' => '', 'description' => 'IANA: Recordare Apps', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 31 => array ( 'id' => 532, 'user_id' => 21, 'name' => 'Relax NG Compact Syntax', 'mimeType' => 'application/relax-ng-compact-syntax', 'ext' => 'rnc', 'icon_class' => '', 'description' => 'Relax NG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 32 => array ( 'id' => 533, 'user_id' => 21, 'name' => 'RemoteDocs R-Viewer', 'mimeType' => 'application/vnd.data-vision.rdz', 'ext' => 'rdz', 'icon_class' => '', 'description' => 'IANA: Data-Vision', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 33 => array ( 'id' => 534, 'user_id' => 21, 'name' => 'Resource Description Framework', 'mimeType' => 'application/rdf+xml', 'ext' => 'rdf', 'icon_class' => '', 'description' => 'RFC 3870', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 34 => array ( 'id' => 535, 'user_id' => 21, 'name' => 'RetroPlatform Player', 'mimeType' => 'application/vnd.cloanto.rp9', 'ext' => 'rp9', 'icon_class' => '', 'description' => 'IANA: RetroPlatform Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 35 => array ( 'id' => 536, 'user_id' => 21, 'name' => 'RhymBox', 'mimeType' => 'application/vnd.jisp', 'ext' => 'jisp', 'icon_class' => '', 'description' => 'IANA: RhymBox', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 36 => array ( 'id' => 537, 'user_id' => 21, 'name' => 'Rich Text Format', 'mimeType' => 'application/rtf', 'ext' => 'rtf', 'icon_class' => '', 'description' => 'Wikipedia: Rich Text Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 37 => array ( 'id' => 538, 'user_id' => 21, 'name' => 'Rich Text Format (RTF)', 'mimeType' => 'text/richtext', 'ext' => 'rtx', 'icon_class' => '', 'description' => 'Wikipedia: Rich Text Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 38 => array ( 'id' => 539, 'user_id' => 21, 'name' => 'ROUTE 66 Location Based Services', 'mimeType' => 'application/vnd.route66.link66+xml', 'ext' => 'link66', 'icon_class' => '', 'description' => 'IANA: ROUTE 66', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 39 => array ( 'id' => 540, 'user_id' => 21, 'name' => 'RSS - Really Simple Syndication', 'mimeType' => 'application/xml', 'ext' => 'xml', 'icon_class' => '', 'description' => 'Wikipedia: XML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 40 => array ( 'id' => 541, 'user_id' => 21, 'name' => 'S Hexdump Format', 'mimeType' => 'application/shf+xml', 'ext' => 'shf', 'icon_class' => '', 'description' => 'RFC 4194', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 41 => array ( 'id' => 542, 'user_id' => 21, 'name' => 'SailingTracker', 'mimeType' => 'application/vnd.sailingtracker.track', 'ext' => 'st', 'icon_class' => '', 'description' => 'IANA: SailingTracker', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 42 => array ( 'id' => 543, 'user_id' => 21, 'name' => 'Scalable Vector Graphics (SVG)', 'mimeType' => 'image/svg+xml', 'ext' => 'svg', 'icon_class' => '', 'description' => 'Wikipedia: SVG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 43 => array ( 'id' => 544, 'user_id' => 21, 'name' => 'ScheduleUs', 'mimeType' => 'application/vnd.sus-calendar', 'ext' => 'sus', 'icon_class' => '', 'description' => 'IANA: ScheduleUs', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 44 => array ( 'id' => 545, 'user_id' => 21, 'name' => 'Search/Retrieve via URL Response Format', 'mimeType' => 'application/sru+xml', 'ext' => 'sru', 'icon_class' => '', 'description' => 'RFC 6207', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 45 => array ( 'id' => 546, 'user_id' => 21, 'name' => 'Secure Electronic Transaction - Payment', 'mimeType' => 'application/set-payment-initiation', 'ext' => 'setpay', 'icon_class' => '', 'description' => 'IANA: SET Payment', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 46 => array ( 'id' => 547, 'user_id' => 21, 'name' => 'Secure Electronic Transaction - Registration', 'mimeType' => 'application/set-registration-initiation', 'ext' => 'setreg', 'icon_class' => '', 'description' => 'IANA: SET Registration', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 47 => array ( 'id' => 548, 'user_id' => 21, 'name' => 'Secured eMail', 'mimeType' => 'application/vnd.sema', 'ext' => 'sema', 'icon_class' => '', 'description' => 'IANA: Secured eMail', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 48 => array ( 'id' => 549, 'user_id' => 21, 'name' => 'Secured eMail', 'mimeType' => 'application/vnd.semd', 'ext' => 'semd', 'icon_class' => '', 'description' => 'IANA: Secured eMail', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 49 => array ( 'id' => 550, 'user_id' => 21, 'name' => 'Secured eMail', 'mimeType' => 'application/vnd.semf', 'ext' => 'semf', 'icon_class' => '', 'description' => 'IANA: Secured eMail', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 50 => array ( 'id' => 551, 'user_id' => 21, 'name' => 'SeeMail', 'mimeType' => 'application/vnd.seemail', 'ext' => 'see', 'icon_class' => '', 'description' => 'IANA: SeeMail', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 51 => array ( 'id' => 552, 'user_id' => 21, 'name' => 'Server Normal Format', 'mimeType' => 'application/x-font-snf', 'ext' => 'snf', 'icon_class' => '', 'description' => 'Wikipedia: Server Normal Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 52 => array ( 'id' => 553, 'user_id' => 21, 'name' => 'Server-Based Certificate Validation Protocol - Validation Policies - Request', 'mimeType' => 'application/scvp-vp-request', 'ext' => 'spq', 'icon_class' => '', 'description' => 'RFC 5055', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 53 => array ( 'id' => 554, 'user_id' => 21, 'name' => 'Server-Based Certificate Validation Protocol - Validation Policies - Response', 'mimeType' => 'application/scvp-vp-response', 'ext' => 'spp', 'icon_class' => '', 'description' => 'RFC 5055', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 54 => array ( 'id' => 555, 'user_id' => 21, 'name' => 'Server-Based Certificate Validation Protocol - Validation Request', 'mimeType' => 'application/scvp-cv-request', 'ext' => 'scq', 'icon_class' => '', 'description' => 'RFC 5055', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 55 => array ( 'id' => 556, 'user_id' => 21, 'name' => 'Server-Based Certificate Validation Protocol - Validation Response', 'mimeType' => 'application/scvp-cv-response', 'ext' => 'scs', 'icon_class' => '', 'description' => 'RFC 5055', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 56 => array ( 'id' => 557, 'user_id' => 21, 'name' => 'Session Description Protocol', 'mimeType' => 'application/sdp', 'ext' => 'sdp', 'icon_class' => '', 'description' => 'RFC 2327', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 57 => array ( 'id' => 558, 'user_id' => 21, 'name' => 'Setext', 'mimeType' => 'text/x-setext', 'ext' => 'etx', 'icon_class' => '', 'description' => 'Wikipedia: Setext', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 58 => array ( 'id' => 559, 'user_id' => 21, 'name' => 'SGI Movie', 'mimeType' => 'video/x-sgi-movie', 'ext' => 'movie', 'icon_class' => '', 'description' => 'SGI Facts', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 59 => array ( 'id' => 560, 'user_id' => 21, 'name' => 'Shana Informed Filler', 'mimeType' => 'application/vnd.shana.informed.formdata', 'ext' => 'ifm', 'icon_class' => '', 'description' => 'IANA: Shana Informed Filler', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 60 => array ( 'id' => 561, 'user_id' => 21, 'name' => 'Shana Informed Filler', 'mimeType' => 'application/vnd.shana.informed.formtemplate', 'ext' => 'itp', 'icon_class' => '', 'description' => 'IANA: Shana Informed Filler', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 61 => array ( 'id' => 562, 'user_id' => 21, 'name' => 'Shana Informed Filler', 'mimeType' => 'application/vnd.shana.informed.interchange', 'ext' => 'iif', 'icon_class' => '', 'description' => 'IANA: Shana Informed Filler', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 62 => array ( 'id' => 563, 'user_id' => 21, 'name' => 'Shana Informed Filler', 'mimeType' => 'application/vnd.shana.informed.package', 'ext' => 'ipk', 'icon_class' => '', 'description' => 'IANA: Shana Informed Filler', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 63 => array ( 'id' => 564, 'user_id' => 21, 'name' => 'Sharing Transaction Fraud Data', 'mimeType' => 'application/thraud+xml', 'ext' => 'tfi', 'icon_class' => '', 'description' => 'RFC 5941', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 64 => array ( 'id' => 565, 'user_id' => 21, 'name' => 'Shell Archive', 'mimeType' => 'application/x-shar', 'ext' => 'shar', 'icon_class' => '', 'description' => 'Wikipedia: Shell Archie', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 65 => array ( 'id' => 566, 'user_id' => 21, 'name' => 'Silicon Graphics RGB Bitmap', 'mimeType' => 'image/x-rgb', 'ext' => 'rgb', 'icon_class' => '', 'description' => 'RGB Image Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 66 => array ( 'id' => 567, 'user_id' => 21, 'name' => 'SimpleAnimeLite Player', 'mimeType' => 'application/vnd.epson.salt', 'ext' => 'slt', 'icon_class' => '', 'description' => 'IANA: SimpleAnimeLite Player', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 67 => array ( 'id' => 568, 'user_id' => 21, 'name' => 'Simply Accounting', 'mimeType' => 'application/vnd.accpac.simply.aso', 'ext' => 'aso', 'icon_class' => '', 'description' => 'IANA: Simply Accounting', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 68 => array ( 'id' => 569, 'user_id' => 21, 'name' => 'Simply Accounting - Data Import', 'mimeType' => 'application/vnd.accpac.simply.imp', 'ext' => 'imp', 'icon_class' => '', 'description' => 'IANA: Simply Accounting', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 69 => array ( 'id' => 570, 'user_id' => 21, 'name' => 'SimTech MindMapper', 'mimeType' => 'application/vnd.simtech-mindmapper', 'ext' => 'twd', 'icon_class' => '', 'description' => 'IANA: SimTech MindMapper', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 70 => array ( 'id' => 571, 'user_id' => 21, 'name' => 'Sixth Floor Media - CommonSpace', 'mimeType' => 'application/vnd.commonspace', 'ext' => 'csp', 'icon_class' => '', 'description' => 'IANA: CommonSpace', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 71 => array ( 'id' => 572, 'user_id' => 21, 'name' => 'SMAF Audio', 'mimeType' => 'application/vnd.yamaha.smaf-audio', 'ext' => 'saf', 'icon_class' => '', 'description' => 'IANA: SMAF Audio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 72 => array ( 'id' => 573, 'user_id' => 21, 'name' => 'SMAF File', 'mimeType' => 'application/vnd.smaf', 'ext' => 'mmf', 'icon_class' => '', 'description' => 'IANA: SMAF File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 73 => array ( 'id' => 574, 'user_id' => 21, 'name' => 'SMAF Phrase', 'mimeType' => 'application/vnd.yamaha.smaf-phrase', 'ext' => 'spf', 'icon_class' => '', 'description' => 'IANA: SMAF Phrase', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 74 => array ( 'id' => 575, 'user_id' => 21, 'name' => 'SMART Technologies Apps', 'mimeType' => 'application/vnd.smart.teacher', 'ext' => 'teacher', 'icon_class' => '', 'description' => 'IANA: SMART Technologies Apps', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 75 => array ( 'id' => 576, 'user_id' => 21, 'name' => 'SourceView Document', 'mimeType' => 'application/vnd.svd', 'ext' => 'svd', 'icon_class' => '', 'description' => 'IANA: SourceView Document', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 76 => array ( 'id' => 577, 'user_id' => 21, 'name' => 'SPARQL - Query', 'mimeType' => 'application/sparql-query', 'ext' => 'rq', 'icon_class' => '', 'description' => 'W3C SPARQL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 77 => array ( 'id' => 578, 'user_id' => 21, 'name' => 'SPARQL - Results', 'mimeType' => 'application/sparql-results+xml', 'ext' => 'srx', 'icon_class' => '', 'description' => 'W3C SPARQL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 78 => array ( 'id' => 579, 'user_id' => 21, 'name' => 'Speech Recognition Grammar Specification', 'mimeType' => 'application/srgs', 'ext' => 'gram', 'icon_class' => '', 'description' => 'W3C Speech Grammar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 79 => array ( 'id' => 580, 'user_id' => 21, 'name' => 'Speech Recognition Grammar Specification - XML', 'mimeType' => 'application/srgs+xml', 'ext' => 'grxml', 'icon_class' => '', 'description' => 'W3C Speech Grammar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 80 => array ( 'id' => 581, 'user_id' => 21, 'name' => 'Speech Synthesis Markup Language', 'mimeType' => 'application/ssml+xml', 'ext' => 'ssml', 'icon_class' => '', 'description' => 'W3C Speech Synthesis', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 81 => array ( 'id' => 582, 'user_id' => 21, 'name' => 'SSEYO Koan Play File', 'mimeType' => 'application/vnd.koan', 'ext' => 'skp', 'icon_class' => '', 'description' => 'IANA: SSEYO Koan Play File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 82 => array ( 'id' => 583, 'user_id' => 21, 'name' => 'Standard Generalized Markup Language (SGML)', 'mimeType' => 'text/sgml', 'ext' => 'sgml', 'icon_class' => '', 'description' => 'Wikipedia: SGML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 83 => array ( 'id' => 584, 'user_id' => 21, 'name' => 'StarOffice - Calc', 'mimeType' => 'application/vnd.stardivision.calc', 'ext' => 'sdc', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 84 => array ( 'id' => 585, 'user_id' => 21, 'name' => 'StarOffice - Draw', 'mimeType' => 'application/vnd.stardivision.draw', 'ext' => 'sda', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 85 => array ( 'id' => 586, 'user_id' => 21, 'name' => 'StarOffice - Impress', 'mimeType' => 'application/vnd.stardivision.impress', 'ext' => 'sdd', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 86 => array ( 'id' => 587, 'user_id' => 21, 'name' => 'StarOffice - Math', 'mimeType' => 'application/vnd.stardivision.math', 'ext' => 'smf', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 87 => array ( 'id' => 588, 'user_id' => 21, 'name' => 'StarOffice - Writer', 'mimeType' => 'application/vnd.stardivision.writer', 'ext' => 'sdw', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 88 => array ( 'id' => 589, 'user_id' => 21, 'name' => 'StarOffice - Writer (Global)', 'mimeType' => 'application/vnd.stardivision.writer-global', 'ext' => 'sgl', 'icon_class' => '', 'description' => '', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 89 => array ( 'id' => 590, 'user_id' => 21, 'name' => 'StepMania', 'mimeType' => 'application/vnd.stepmania.stepchart', 'ext' => 'sm', 'icon_class' => '', 'description' => 'IANA: StepMania', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 90 => array ( 'id' => 591, 'user_id' => 21, 'name' => 'Stuffit Archive', 'mimeType' => 'application/x-stuffit', 'ext' => 'sit', 'icon_class' => '', 'description' => 'Wikipedia: Stuffit', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 91 => array ( 'id' => 592, 'user_id' => 21, 'name' => 'Stuffit Archive', 'mimeType' => 'application/x-stuffitx', 'ext' => 'sitx', 'icon_class' => '', 'description' => 'Wikipedia: Stuffit', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 92 => array ( 'id' => 593, 'user_id' => 21, 'name' => 'SudokuMagic', 'mimeType' => 'application/vnd.solent.sdkm+xml', 'ext' => 'sdkm', 'icon_class' => '', 'description' => 'IANA: SudokuMagic', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 93 => array ( 'id' => 594, 'user_id' => 21, 'name' => 'Sugar Linux Application Bundle', 'mimeType' => 'application/vnd.olpc-sugar', 'ext' => 'xo', 'icon_class' => '', 'description' => 'IANA: Sugar Linux App Bundle', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 94 => array ( 'id' => 595, 'user_id' => 21, 'name' => 'Sun Audio - Au file format', 'mimeType' => 'audio/basic', 'ext' => 'au', 'icon_class' => '', 'description' => 'Wikipedia: Sun audio', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 95 => array ( 'id' => 596, 'user_id' => 21, 'name' => 'SundaHus WQ', 'mimeType' => 'application/vnd.wqd', 'ext' => 'wqd', 'icon_class' => '', 'description' => 'IANA: SundaHus WQ', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 96 => array ( 'id' => 597, 'user_id' => 21, 'name' => 'Symbian Install Package', 'mimeType' => 'application/vnd.symbian.install', 'ext' => 'sis', 'icon_class' => '', 'description' => 'IANA: Symbian Install', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 97 => array ( 'id' => 598, 'user_id' => 21, 'name' => 'Synchronized Multimedia Integration Language', 'mimeType' => 'application/smil+xml', 'ext' => 'smi', 'icon_class' => '', 'description' => 'RFC 4536', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 98 => array ( 'id' => 599, 'user_id' => 21, 'name' => 'SyncML', 'mimeType' => 'application/vnd.syncml+xml', 'ext' => 'xsm', 'icon_class' => '', 'description' => 'IANA: SyncML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 99 => array ( 'id' => 600, 'user_id' => 21, 'name' => 'SyncML - Device Management', 'mimeType' => 'application/vnd.syncml.dm+wbxml', 'ext' => 'bdm', 'icon_class' => '', 'description' => 'IANA: SyncML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 100 => array ( 'id' => 601, 'user_id' => 21, 'name' => 'SyncML - Device Management', 'mimeType' => 'application/vnd.syncml.dm+xml', 'ext' => 'xdm', 'icon_class' => '', 'description' => 'IANA: SyncML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 101 => array ( 'id' => 602, 'user_id' => 21, 'name' => 'System V Release 4 CPIO Archive', 'mimeType' => 'application/x-sv4cpio', 'ext' => 'sv4cpio', 'icon_class' => '', 'description' => 'Wikipedia: pax', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 102 => array ( 'id' => 603, 'user_id' => 21, 'name' => 'System V Release 4 CPIO Checksum Data', 'mimeType' => 'application/x-sv4crc', 'ext' => 'sv4crc', 'icon_class' => '', 'description' => 'Wikipedia: pax', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 103 => array ( 'id' => 604, 'user_id' => 21, 'name' => 'Systems Biology Markup Language', 'mimeType' => 'application/sbml+xml', 'ext' => 'sbml', 'icon_class' => '', 'description' => 'RFC 3823', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 104 => array ( 'id' => 605, 'user_id' => 21, 'name' => 'Tab Seperated Values', 'mimeType' => 'text/tab-separated-values', 'ext' => 'tsv', 'icon_class' => '', 'description' => 'Wikipedia: TSV', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 105 => array ( 'id' => 606, 'user_id' => 21, 'name' => 'Tagged Image File Format', 'mimeType' => 'image/tiff', 'ext' => 'tiff', 'icon_class' => '', 'description' => 'Wikipedia: TIFF', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 106 => array ( 'id' => 607, 'user_id' => 21, 'name' => 'Tao Intent', 'mimeType' => 'application/vnd.tao.intent-module-archive', 'ext' => 'tao', 'icon_class' => '', 'description' => 'IANA: Tao Intent', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 107 => array ( 'id' => 608, 'user_id' => 21, 'name' => 'Tar File (Tape Archive)', 'mimeType' => 'application/x-tar', 'ext' => 'tar', 'icon_class' => '', 'description' => 'Wikipedia: Tar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 108 => array ( 'id' => 609, 'user_id' => 21, 'name' => 'Tcl Script', 'mimeType' => 'application/x-tcl', 'ext' => 'tcl', 'icon_class' => '', 'description' => 'Wikipedia: Tcl', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 109 => array ( 'id' => 610, 'user_id' => 21, 'name' => 'TeX', 'mimeType' => 'application/x-tex', 'ext' => 'tex', 'icon_class' => '', 'description' => 'Wikipedia: TeX', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 110 => array ( 'id' => 611, 'user_id' => 21, 'name' => 'TeX Font Metric', 'mimeType' => 'application/x-tex-tfm', 'ext' => 'tfm', 'icon_class' => '', 'description' => 'Wikipedia: TeX Font Metric', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 111 => array ( 'id' => 612, 'user_id' => 21, 'name' => 'Text Encoding and Interchange', 'mimeType' => 'application/tei+xml', 'ext' => 'tei', 'icon_class' => '', 'description' => 'RFC 6129', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 112 => array ( 'id' => 613, 'user_id' => 21, 'name' => 'Text File', 'mimeType' => 'text/plain', 'ext' => 'txt', 'icon_class' => 'fa-file-text-o', 'description' => 'Wikipedia: Text File', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 113 => array ( 'id' => 614, 'user_id' => 21, 'name' => 'TIBCO Spotfire', 'mimeType' => 'application/vnd.spotfire.dxp', 'ext' => 'dxp', 'icon_class' => '', 'description' => 'IANA: TIBCO Spotfire', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 114 => array ( 'id' => 615, 'user_id' => 21, 'name' => 'TIBCO Spotfire', 'mimeType' => 'application/vnd.spotfire.sfs', 'ext' => 'sfs', 'icon_class' => '', 'description' => 'IANA: TIBCO Spotfire', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 115 => array ( 'id' => 616, 'user_id' => 21, 'name' => 'Time Stamped Data Envelope', 'mimeType' => 'application/timestamped-data', 'ext' => 'tsd', 'icon_class' => '', 'description' => 'RFC 5955', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 116 => array ( 'id' => 617, 'user_id' => 21, 'name' => 'TRI Systems Config', 'mimeType' => 'application/vnd.trid.tpt', 'ext' => 'tpt', 'icon_class' => '', 'description' => 'IANA: TRI Systems', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 117 => array ( 'id' => 618, 'user_id' => 21, 'name' => 'Triscape Map Explorer', 'mimeType' => 'application/vnd.triscape.mxs', 'ext' => 'mxs', 'icon_class' => '', 'description' => 'IANA: Triscape Map Explorer', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 118 => array ( 'id' => 619, 'user_id' => 21, 'name' => 'troff', 'mimeType' => 'text/troff', 'ext' => 't', 'icon_class' => '', 'description' => 'Wikipedia: troff', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 119 => array ( 'id' => 620, 'user_id' => 21, 'name' => 'True BASIC', 'mimeType' => 'application/vnd.trueapp', 'ext' => 'tra', 'icon_class' => '', 'description' => 'IANA: True BASIC', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 120 => array ( 'id' => 621, 'user_id' => 21, 'name' => 'TrueType Font', 'mimeType' => 'application/x-font-ttf', 'ext' => 'ttf', 'icon_class' => '', 'description' => 'Wikipedia: TrueType', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 121 => array ( 'id' => 622, 'user_id' => 21, 'name' => 'Turtle (Terse RDF Triple Language)', 'mimeType' => 'text/turtle', 'ext' => 'ttl', 'icon_class' => '', 'description' => 'Wikipedia: Turtle', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 122 => array ( 'id' => 623, 'user_id' => 21, 'name' => 'UMAJIN', 'mimeType' => 'application/vnd.umajin', 'ext' => 'umj', 'icon_class' => '', 'description' => 'IANA: UMAJIN', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 123 => array ( 'id' => 624, 'user_id' => 21, 'name' => 'Unique Object Markup Language', 'mimeType' => 'application/vnd.uoml+xml', 'ext' => 'uoml', 'icon_class' => '', 'description' => 'IANA: UOML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 124 => array ( 'id' => 625, 'user_id' => 21, 'name' => 'Unity 3d', 'mimeType' => 'application/vnd.unity', 'ext' => 'unityweb', 'icon_class' => '', 'description' => 'IANA: Unity 3d', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 125 => array ( 'id' => 626, 'user_id' => 21, 'name' => 'Universal Forms Description Language', 'mimeType' => 'application/vnd.ufdl', 'ext' => 'ufd', 'icon_class' => '', 'description' => 'IANA: Universal Forms Description Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 126 => array ( 'id' => 627, 'user_id' => 21, 'name' => 'URI Resolution Services', 'mimeType' => 'text/uri-list', 'ext' => 'uri', 'icon_class' => '', 'description' => 'RFC 2483', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 127 => array ( 'id' => 628, 'user_id' => 21, 'name' => 'User Interface Quartz - Theme (Symbian)', 'mimeType' => 'application/vnd.uiq.theme', 'ext' => 'utz', 'icon_class' => '', 'description' => 'IANA: User Interface Quartz', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 128 => array ( 'id' => 629, 'user_id' => 21, 'name' => 'Ustar (Uniform Standard Tape Archive)', 'mimeType' => 'application/x-ustar', 'ext' => 'ustar', 'icon_class' => '', 'description' => 'Wikipedia: Ustar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 129 => array ( 'id' => 630, 'user_id' => 21, 'name' => 'UUEncode', 'mimeType' => 'text/x-uuencode', 'ext' => 'uu', 'icon_class' => '', 'description' => 'Wikipedia: UUEncode', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 130 => array ( 'id' => 631, 'user_id' => 21, 'name' => 'vCalendar', 'mimeType' => 'text/x-vcalendar', 'ext' => 'vcs', 'icon_class' => '', 'description' => 'Wikipedia: vCalendar', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 131 => array ( 'id' => 632, 'user_id' => 21, 'name' => 'vCard', 'mimeType' => 'text/x-vcard', 'ext' => 'vcf', 'icon_class' => '', 'description' => 'Wikipedia: vCard', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 132 => array ( 'id' => 633, 'user_id' => 21, 'name' => 'Video CD', 'mimeType' => 'application/x-cdlink', 'ext' => 'vcd', 'icon_class' => '', 'description' => 'Wikipedia: Video CD', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 133 => array ( 'id' => 634, 'user_id' => 21, 'name' => 'Viewport+', 'mimeType' => 'application/vnd.vsf', 'ext' => 'vsf', 'icon_class' => '', 'description' => 'IANA: Viewport+', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 134 => array ( 'id' => 635, 'user_id' => 21, 'name' => 'Virtual Reality Modeling Language', 'mimeType' => 'model/vrml', 'ext' => 'wrl', 'icon_class' => '', 'description' => 'Wikipedia: VRML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 135 => array ( 'id' => 636, 'user_id' => 21, 'name' => 'VirtualCatalog', 'mimeType' => 'application/vnd.vcx', 'ext' => 'vcx', 'icon_class' => '', 'description' => 'IANA: VirtualCatalog', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 136 => array ( 'id' => 637, 'user_id' => 21, 'name' => 'Virtue MTS', 'mimeType' => 'model/vnd.mts', 'ext' => 'mts', 'icon_class' => '', 'description' => 'IANA: MTS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 137 => array ( 'id' => 638, 'user_id' => 21, 'name' => 'Virtue VTU', 'mimeType' => 'model/vnd.vtu', 'ext' => 'vtu', 'icon_class' => '', 'description' => 'IANA: VTU', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 138 => array ( 'id' => 639, 'user_id' => 21, 'name' => 'Visionary', 'mimeType' => 'application/vnd.visionary', 'ext' => 'vis', 'icon_class' => '', 'description' => 'IANA: Visionary', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 139 => array ( 'id' => 640, 'user_id' => 21, 'name' => 'Vivo', 'mimeType' => 'video/vnd.vivo', 'ext' => 'viv', 'icon_class' => '', 'description' => 'IANA: Vivo', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 140 => array ( 'id' => 641, 'user_id' => 21, 'name' => 'Voice Browser Call Control', 'mimeType' => 'application/ccxml+xml,', 'ext' => 'ccxml', 'icon_class' => '', 'description' => 'Voice Browser Call Control: CCXML Version 1.0', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 141 => array ( 'id' => 642, 'user_id' => 21, 'name' => 'VoiceXML', 'mimeType' => 'application/voicexml+xml', 'ext' => 'vxml', 'icon_class' => '', 'description' => 'RFC 4267', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 142 => array ( 'id' => 643, 'user_id' => 21, 'name' => 'WAIS Source', 'mimeType' => 'application/x-wais-source', 'ext' => 'src', 'icon_class' => '', 'description' => 'YoLinux', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 143 => array ( 'id' => 644, 'user_id' => 21, 'name' => 'WAP Binary XML (WBXML)', 'mimeType' => 'application/vnd.wap.wbxml', 'ext' => 'wbxml', 'icon_class' => '', 'description' => 'IANA: WBXML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 144 => array ( 'id' => 645, 'user_id' => 21, 'name' => 'WAP Bitamp (WBMP)', 'mimeType' => 'image/vnd.wap.wbmp', 'ext' => 'wbmp', 'icon_class' => '', 'description' => 'IANA: WBMP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 145 => array ( 'id' => 646, 'user_id' => 21, 'name' => 'Waveform Audio File Format (WAV)', 'mimeType' => 'audio/x-wav', 'ext' => 'wav', 'icon_class' => ' fa-file-audio-o', 'description' => 'Wikipedia: WAV', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 146 => array ( 'id' => 647, 'user_id' => 21, 'name' => 'Web Distributed Authoring and Versioning', 'mimeType' => 'application/davmount+xml', 'ext' => 'davmount', 'icon_class' => '', 'description' => 'RFC 4918', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 147 => array ( 'id' => 648, 'user_id' => 21, 'name' => 'Web Open Font Format', 'mimeType' => 'application/x-font-woff', 'ext' => 'woff', 'icon_class' => '', 'description' => 'Wikipedia: Web Open Font Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 148 => array ( 'id' => 649, 'user_id' => 21, 'name' => 'Web Services Policy', 'mimeType' => 'application/wspolicy+xml', 'ext' => 'wspolicy', 'icon_class' => '', 'description' => 'W3C Web Services Policy', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 149 => array ( 'id' => 650, 'user_id' => 21, 'name' => 'WebP Image', 'mimeType' => 'image/webp', 'ext' => 'webp', 'icon_class' => '', 'description' => 'Wikipedia: WebP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 150 => array ( 'id' => 651, 'user_id' => 21, 'name' => 'WebTurbo', 'mimeType' => 'application/vnd.webturbo', 'ext' => 'wtb', 'icon_class' => '', 'description' => 'IANA: WebTurbo', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 151 => array ( 'id' => 652, 'user_id' => 21, 'name' => 'Widget Packaging and XML Configuration', 'mimeType' => 'application/widget', 'ext' => 'wgt', 'icon_class' => '', 'description' => 'W3C Widget Packaging and XML Configuration', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 152 => array ( 'id' => 653, 'user_id' => 21, 'name' => 'WinHelp', 'mimeType' => 'application/winhlp', 'ext' => 'hlp', 'icon_class' => '', 'description' => 'Wikipedia: WinHelp', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 153 => array ( 'id' => 654, 'user_id' => 21, 'name' => 'Wireless Markup Language (WML)', 'mimeType' => 'text/vnd.wap.wml', 'ext' => 'wml', 'icon_class' => '', 'description' => 'Wikipedia: WML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 154 => array ( 'id' => 655, 'user_id' => 21, 'name' => 'Wireless Markup Language Script (WMLScript)', 'mimeType' => 'text/vnd.wap.wmlscript', 'ext' => 'wmls', 'icon_class' => '', 'description' => 'Wikipedia: WMLScript', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 155 => array ( 'id' => 656, 'user_id' => 21, 'name' => 'WMLScript', 'mimeType' => 'application/vnd.wap.wmlscriptc', 'ext' => 'wmlsc', 'icon_class' => '', 'description' => 'IANA: WMLScript', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 156 => array ( 'id' => 657, 'user_id' => 21, 'name' => 'Wordperfect', 'mimeType' => 'application/vnd.wordperfect', 'ext' => 'wpd', 'icon_class' => '', 'description' => 'IANA: Wordperfect', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 157 => array ( 'id' => 658, 'user_id' => 21, 'name' => 'Worldtalk', 'mimeType' => 'application/vnd.wt.stf', 'ext' => 'stf', 'icon_class' => '', 'description' => 'IANA: Worldtalk', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 158 => array ( 'id' => 659, 'user_id' => 21, 'name' => 'WSDL - Web Services Description Language', 'mimeType' => 'application/wsdl+xml', 'ext' => 'wsdl', 'icon_class' => '', 'description' => 'W3C Web Service Description Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 159 => array ( 'id' => 660, 'user_id' => 21, 'name' => 'X BitMap', 'mimeType' => 'image/x-xbitmap', 'ext' => 'xbm', 'icon_class' => '', 'description' => 'Wikipedia: X BitMap', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 160 => array ( 'id' => 661, 'user_id' => 21, 'name' => 'X PixMap', 'mimeType' => 'image/x-xpixmap', 'ext' => 'xpm', 'icon_class' => '', 'description' => 'Wikipedia: X PixMap', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 161 => array ( 'id' => 662, 'user_id' => 21, 'name' => 'X Window Dump', 'mimeType' => 'image/x-xwindowdump', 'ext' => 'xwd', 'icon_class' => '', 'description' => 'Wikipedia: X Window Dump', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 162 => array ( 'id' => 663, 'user_id' => 21, 'name' => 'X.509 Certificate', 'mimeType' => 'application/x-x509-ca-cert', 'ext' => 'der', 'icon_class' => '', 'description' => 'Wikipedia: X.509', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 163 => array ( 'id' => 664, 'user_id' => 21, 'name' => 'Xfig', 'mimeType' => 'application/x-xfig', 'ext' => 'fig', 'icon_class' => '', 'description' => 'Wikipedia: Xfig', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 164 => array ( 'id' => 665, 'user_id' => 21, 'name' => 'XHTML - The Extensible HyperText Markup Language', 'mimeType' => 'application/xhtml+xml', 'ext' => 'xhtml', 'icon_class' => '', 'description' => 'W3C XHTML', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 165 => array ( 'id' => 667, 'user_id' => 21, 'name' => 'XML Configuration Access Protocol - XCAP Diff', 'mimeType' => 'application/xcap-diff+xml', 'ext' => 'xdf', 'icon_class' => '', 'description' => 'Wikipedia: XCAP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 166 => array ( 'id' => 668, 'user_id' => 21, 'name' => 'XML Encryption Syntax and Processing', 'mimeType' => 'application/xenc+xml', 'ext' => 'xenc', 'icon_class' => '', 'description' => 'W3C XML Encryption Syntax and Processing', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 167 => array ( 'id' => 669, 'user_id' => 21, 'name' => 'XML Patch Framework', 'mimeType' => 'application/patch-ops-error+xml', 'ext' => 'xer', 'icon_class' => '', 'description' => 'RFC 5261', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 168 => array ( 'id' => 670, 'user_id' => 21, 'name' => 'XML Resource Lists', 'mimeType' => 'application/resource-lists+xml', 'ext' => 'rl', 'icon_class' => '', 'description' => 'RFC 4826', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 169 => array ( 'id' => 671, 'user_id' => 21, 'name' => 'XML Resource Lists', 'mimeType' => 'application/rls-services+xml', 'ext' => 'rs', 'icon_class' => '', 'description' => 'RFC 4826', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 170 => array ( 'id' => 672, 'user_id' => 21, 'name' => 'XML Resource Lists Diff', 'mimeType' => 'application/resource-lists-diff+xml', 'ext' => 'rld', 'icon_class' => '', 'description' => 'RFC 4826', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 171 => array ( 'id' => 673, 'user_id' => 21, 'name' => 'XML Transformations', 'mimeType' => 'application/xslt+xml', 'ext' => 'xslt', 'icon_class' => '', 'description' => 'W3C XSLT', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 172 => array ( 'id' => 674, 'user_id' => 21, 'name' => 'XML-Binary Optimized Packaging', 'mimeType' => 'application/xop+xml', 'ext' => 'xop', 'icon_class' => '', 'description' => 'W3C XOP', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 173 => array ( 'id' => 675, 'user_id' => 21, 'name' => 'XPInstall - Mozilla', 'mimeType' => 'application/x-xpinstall', 'ext' => 'xpi', 'icon_class' => '', 'description' => 'Wikipedia: XPI', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 174 => array ( 'id' => 676, 'user_id' => 21, 'name' => 'XSPF - XML Shareable Playlist Format', 'mimeType' => 'application/xspf+xml', 'ext' => 'xspf', 'icon_class' => '', 'description' => 'XML Shareable Playlist Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 175 => array ( 'id' => 677, 'user_id' => 21, 'name' => 'XUL - XML User Interface Language', 'mimeType' => 'application/vnd.mozilla.xul+xml', 'ext' => 'xul', 'icon_class' => '', 'description' => 'IANA: XUL', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 176 => array ( 'id' => 678, 'user_id' => 21, 'name' => 'XYZ File Format', 'mimeType' => 'chemical/x-xyz', 'ext' => 'xyz', 'icon_class' => '', 'description' => 'Wikipedia: XYZ File Format', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 177 => array ( 'id' => 679, 'user_id' => 21, 'name' => 'YAML Ain\'t Markup Language / Yet Another Markup Language', 'mimeType' => 'text/yaml', 'ext' => 'yaml', 'icon_class' => '', 'description' => 'YAML: YAML Ain\'t Markup Language', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 178 => array ( 'id' => 680, 'user_id' => 21, 'name' => 'YANG Data Modeling Language', 'mimeType' => 'application/yang', 'ext' => 'yang', 'icon_class' => '', 'description' => 'Wikipedia: YANG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 179 => array ( 'id' => 681, 'user_id' => 21, 'name' => 'YIN (YANG - XML)', 'mimeType' => 'application/yin+xml', 'ext' => 'yin', 'icon_class' => '', 'description' => 'Wikipedia: YANG', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 180 => array ( 'id' => 682, 'user_id' => 21, 'name' => 'Z.U.L. Geometry', 'mimeType' => 'application/vnd.zul', 'ext' => 'zir', 'icon_class' => '', 'description' => 'IANA: Z.U.L.', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 181 => array ( 'id' => 683, 'user_id' => 21, 'name' => 'Zip Archive', 'mimeType' => 'application/zip', 'ext' => 'zip', 'icon_class' => 'fa-file-zip-o', 'description' => 'Wikipedia: Zip', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 182 => array ( 'id' => 684, 'user_id' => 21, 'name' => 'ZVUE Media Manager', 'mimeType' => 'application/vnd.handheld-entertainment+xml', 'ext' => 'zmm', 'icon_class' => '', 'description' => 'IANA: ZVUE Media Manager', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 183 => array ( 'id' => 685, 'user_id' => 21, 'name' => 'Zzazz Deck', 'mimeType' => 'application/vnd.zzazz.deck+xml', 'ext' => 'zaz', 'icon_class' => '', 'description' => 'IANA: Zzazz', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 184 => array ( 'id' => 686, 'user_id' => 21, 'name' => 'RSS - Really Simple Syndication', 'mimeType' => 'application/rss', 'ext' => 'rss', 'icon_class' => '', 'description' => 'Wikipedia: RSS', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 185 => array ( 'id' => 687, 'user_id' => 21, 'name' => 'JPEG Image', 'mimeType' => 'image/jpeg', 'ext' => 'jpg', 'icon_class' => '', 'description' => 'RFC 1314', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 186 => array ( 'id' => 688, 'user_id' => 21, 'name' => 'MPEG Audio', 'mimeType' => 'audio/mpeg', 'ext' => 'mp3', 'icon_class' => ' fa-file-audio-o', 'description' => 'Wikipedia: MPGA', 'created_by' => 1, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), )); }
Auto generated seed file @return void
entailment
public function removeByID($itemID) { parent::removeByID($itemID); if ($this->getJoinTable() == 'Group_Members') { $currentMember = Security::getCurrentUser(); if (!($currentMember && $currentMember->exists())) { return; } $member = Member::get()->byId($itemID); $group = Group::get()->byId($this->getForeignID()); if (!$group) { return; } if (!$member) { return; } $this->getAuditLogger()->info(sprintf( '"%s" (ID: %s) removed Member "%s" (ID: %s) from Group "%s" (ID: %s)', $currentMember->Email ?: $currentMember->Title, $currentMember->ID, $member->Email ?: $member->Title, $member->ID, $group->Title, $group->ID )); } }
Overload {@link ManyManyList::removeByID()} so we can log when a Member is removed from a Group.
entailment
public function registerEventHandlers(Emitter $emitter) { $emitter->addListener( \Crm\UsersModule\Events\NewAccessTokenEvent::class, $this->getInstance(\Crm\ApplicationModule\Events\NewAccessTokenHandler::class) ); $emitter->addListener( \Crm\UsersModule\Events\RemovedAccessTokenEvent::class, $this->getInstance(\Crm\ApplicationModule\Events\RemovedAccessTokenHandler::class) ); }
TODO: [users_module] application module by nemal mat ziadny event handler, aby neexistovala zavislost na ostatnych moduloch
entailment
public function add(array $assets) { if (! file_exists($this->file)) { throw new RuntimeException("Could not add assets, `app.json` file do not exists."); } $packages = json_decode(file_get_contents($this->file), true); $packages['assets'] = $assets + $packages['assets']; ksort($packages['assets']); file_put_contents($this->file, json_encode($packages, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT).PHP_EOL); }
Adds additional entries to the `assets` option. @param array $assets @return void
entailment
private function docIsCompatible($headerValidator, $fileContent, $docheaderFile) { return $headerValidator->__invoke($fileContent) || false !== strpos($fileContent, $docheaderFile); }
@param RegExp $headerValidator @param string $fileContent @param string $docheaderFile @return bool
entailment
private function getDocheaderFileContent(InputInterface $input) { $docheaderFile = $input->getOption('docheader'); $docheader = (new DocheaderFileResolution())->resolve($docheaderFile); $filter = new Filter(file_get_contents($docheader)); return $filter->apply(); }
@throws Exception\DocHeaderFileConfiguration @return string
entailment
protected function buildNotifyCommand(Notification $notification) { if ($notification->isPassed()) { $title = self::TITLE_PASSED; $icon = self::$ICON_PASSED; $sound = self::SOUND_PASSED; } elseif ($notification->isFailed()) { $title = self::TITLE_FAILED; $icon = self::$ICON_FAILED; $sound = self::SOUND_FAILED; } elseif ($notification->isStopped()) { $title = self::TITLE_STOPPED; $icon = self::$ICON_STOPPED; $sound = self::SOUND_STOPPED; } if ($this->os->isWin()) { return sprintf( 'growlnotify /t:%s /p:-2 /i:%s /a:Stagehand_TestRunner /r:%s,%s,%s /n:%s /silent:true %s', escapeshellarg($title), escapeshellarg($icon), escapeshellarg(self::TITLE_PASSED), escapeshellarg(self::TITLE_FAILED), escapeshellarg(self::TITLE_STOPPED), escapeshellarg($title), escapeshellarg($notification->getMessage()) ); } elseif ($this->os->isAfterMarvericks() && !$this->hasGrowl('osascript')) { return sprintf( 'osascript -e "display notification \"%s\" subtitle \"%s\" sound name \"%s\""', escapeshellarg($notification->getMessage()), escapeshellcmd($title), escapeshellcmd($sound) ); } elseif ($this->os->isDarwin()) { return sprintf( 'growlnotify --name %s --priority -2 --image %s --title %s --message %s', escapeshellarg($title), escapeshellarg($icon), escapeshellarg($title), escapeshellarg($notification->getMessage()) ); } elseif ($this->os->isLinux()) { return sprintf( 'notify-send --urgency=low --icon=%s %s %s', escapeshellarg($icon), escapeshellarg($title), escapeshellarg(str_replace('\\', '\\\\', $notification->getMessage())) ); } }
@param \Stagehand\TestRunner\Notification\Notification $notification @return string
entailment
public function loadAndUpdate($key, callable $getValue, DateTime $notOlderThan = null, $forceUpdate = false) { if (!$forceUpdate) { $stat = $this->load($key, $notOlderThan); if ($stat) { return $stat->value; } } $value = $getValue(); if ($value === null) { $value = 0; } $this->updateKey($key, $value); return $value; }
Retrieve value either from cache or using $getValue callable (and subsequently cache it in DB) @param $key @param callable $getValue @param DateTime|null $notOlderThan @param bool $forceUpdate @return mixed|\Nette\Database\Table\ActiveRow
entailment
public function offsetSet($name, $value) { if ($name === null) { throw new InvalidArgumentException('The argument name cannot be null.'); } $this->setArgument($name, $value); }
Set the value of an event argument. @param string $name The argument name. @param mixed $value The argument value. @return void @throws InvalidArgumentException If the argument name is null. @since 1.0
entailment
public function negate(MoneyInterface $money) { if ($this->isZero($money)) { return $money; } else { return $this->mul($money, '-1'); } }
Negates money @param MoneyInterface $money @return MoneyInterface
entailment
public function add(MoneyInterface $first, MoneyInterface $second) { return $this->factory->create( $this->math->add($first->getAmount(), $second->getAmount()), $this->resolveCurrency($first, $second) ); }
@param MoneyInterface $first @param MoneyInterface $second @return MoneyInterface @throws CurrencyMismatchException
entailment
public function mul(MoneyInterface $money, $multiplier) { return $this->factory->create( $this->math->mul($money->getAmount(), $multiplier), $money->getCurrency() ); }
@param MoneyInterface $money @param string $multiplier @return MoneyInterface
entailment
public function div(MoneyInterface $money, $divisor) { return $this->factory->create( $this->math->div($money->getAmount(), $divisor), $money->getCurrency() ); }
@param MoneyInterface $money @param string $divisor @return MoneyInterface
entailment
public function round(MoneyInterface $money, $precision = null, $mode = PHP_ROUND_HALF_UP) { if ($precision === null) { $precision = $this->informationProvider->getDefaultPrecision($money->getCurrency()); } return $this->factory->create( $this->math->round($money->getAmount(), $precision, $mode), $money->getCurrency() ); }
@param MoneyInterface $money @param int $precision @param int $mode @return MoneyInterface
entailment
public function ceil(MoneyInterface $money, $precision = null) { if ($precision === null) { $precision = $this->informationProvider->getDefaultPrecision($money->getCurrency()); } return $this->factory->create( $this->math->ceil($money->getAmount(), $precision), $money->getCurrency() ); }
@param MoneyInterface $money @param int $precision @return MoneyInterface
entailment
public function comp(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->comp($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return int @throws CurrencyMismatchException
entailment
public function isGt(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->isGt($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return boolean @throws CurrencyMismatchException
entailment
public function isGte(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->isGte($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return boolean @throws CurrencyMismatchException
entailment
public function isLt(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->isLt($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return boolean @throws CurrencyMismatchException
entailment
public function isLte(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->isLte($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return boolean @throws CurrencyMismatchException
entailment
public function isEqual(MoneyInterface $first, MoneyInterface $second) { $this->resolveCurrency($first, $second); return $this->math->isEqual($first->getAmount(), $second->getAmount()); }
@param MoneyInterface $first @param MoneyInterface $second @return boolean @throws CurrencyMismatchException
entailment
public function setCredentials(array $credentials) : AuthenticatorInterface { if (array_key_exists('source', $credentials) && preg_match('/^api*/', $credentials['source'])) { $this->api = true; $this->source = $credentials['source']; } return $this; }
@inheritdoc Sets attributes needed globally.
entailment
public function render(Nette\Forms\Form $form, $mode = null) { $form->getElementPrototype()->setClass('form-inline'); foreach ($form->getControls() as $control) { if ($control instanceof Controls\Button) { $usedPrimary = true; } elseif ($control instanceof Controls\TextBase || $control instanceof Controls\SelectBox || $control instanceof Controls\MultiSelectBox) { $control->getControlPrototype()->addClass('form-control'); } elseif ($control instanceof Controls\Checkbox || $control instanceof Controls\CheckboxList || $control instanceof Controls\RadioList) { $control->getSeparatorPrototype()->setName('div')->addClass($control->getControlPrototype()->type); } } return parent::render($form, $mode); }
Provides complete form rendering. @param Nette\Forms\Form @param string 'begin', 'errors', 'ownerrors', 'body', 'end' or empty to render all @return string
entailment
public function run() { \DB::table('lfm_categories')->delete(); \DB::table('lfm_categories')->insert( array ( 'id' => '0', 'user_id' => 0, 'title' => 'Root folder', 'title_disc' => 'root_folder', 'description' => 'root', 'parent_category_id' => '#', 'created_by' => 0, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ) ); \DB::unprepared("UPDATE lfm_categories SET id=0"); \DB::table('lfm_categories')->insert(array ( 0 => array ( 'id' => -5, 'user_id' => 0, 'title' => 'Direct upload', 'title_disc' => 'direct_folder', 'description' => 'direct upload folder', 'parent_category_id' => '#', 'created_by' => 0, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 1 => array ( 'id' => -2, 'user_id' => 0, 'title' => 'Share folder', 'title_disc' => 'share_folder', 'description' => 'share', 'parent_category_id' => '#', 'created_by' => 0, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), 2 => array ( 'id' => -1, 'user_id' => 0, 'title' => 'public folder', 'title_disc' => 'public_folder', 'description' => 'public', 'parent_category_id' => '#', 'created_by' => 0, 'created_at' => NULL, 'updated_at' => NULL, 'deleted_at' => NULL, ), )); }
Auto generated seed file @return void
entailment
public function create($type = null, array $requiredSuperTypes = array()) { $collectingType = parent::create(); $collectingType->setType($type); $collectingType->setRequiredSuperTypes($requiredSuperTypes); return $collectingType; }
@param string $type @param array $requiredSuperTypes @return \Stagehand\TestRunner\Collector\CollectingType
entailment
public function process(ContainerBuilder $container) { $container->setAlias('preparer', $this->plugin->getPluginID().'.preparer'); $container->setAlias('collector', $this->plugin->getPluginID().'.collector'); $container->setAlias('runner', $this->plugin->getPluginID().'.runner'); if ($container->hasDefinition($this->plugin->getPluginID().'.command_line_option_builder')) { $container->setAlias('command_line_option_builder', $this->plugin->getPluginID().'.command_line_option_builder'); } }
{@inheritdoc}
entailment
public function addError(\PHPUnit_Framework_Test $test, \Exception $e, $time) { $message = 'raised an error'; $this->write( $this->colors ? Coloring::magenta($message) : $message ); parent::addError($test, $e, $time); }
An error occurred. @param \PHPUnit_Framework_Test $test @param \Exception $e @param float $time
entailment
public function addFailure(\PHPUnit_Framework_Test $test, \PHPUnit_Framework_AssertionFailedError $e, $time) { $message = 'failed'; $this->write( $this->colors ? Coloring::red($message) : $message ); parent::addFailure($test, $e, $time); }
A failure occurred. @param \PHPUnit_Framework_Test $test @param \PHPUnit_Framework_AssertionFailedError $e @param float $time
entailment