JP5027807B2 - 信頼される環境をサポートするコンピュータ可読コンポーネントの自動更新 - Google Patents
信頼される環境をサポートするコンピュータ可読コンポーネントの自動更新 Download PDFInfo
- Publication number
- JP5027807B2 JP5027807B2 JP2008522834A JP2008522834A JP5027807B2 JP 5027807 B2 JP5027807 B2 JP 5027807B2 JP 2008522834 A JP2008522834 A JP 2008522834A JP 2008522834 A JP2008522834 A JP 2008522834A JP 5027807 B2 JP5027807 B2 JP 5027807B2
- Authority
- JP
- Japan
- Prior art keywords
- revocation list
- component
- update
- computing device
- list
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active
Links
- 238000000034 method Methods 0.000 claims description 123
- 230000000737 periodic effect Effects 0.000 claims description 14
- 230000008569 process Effects 0.000 description 87
- 230000007246 mechanism Effects 0.000 description 58
- 238000010586 diagram Methods 0.000 description 13
- 230000009471 action Effects 0.000 description 9
- 239000008186 active pharmaceutical agent Substances 0.000 description 9
- 238000004891 communication Methods 0.000 description 6
- 230000006870 function Effects 0.000 description 5
- 238000009434 installation Methods 0.000 description 4
- 238000004590 computer program Methods 0.000 description 3
- 230000003993 interaction Effects 0.000 description 3
- 238000005516 engineering process Methods 0.000 description 2
- 239000012092 media component Substances 0.000 description 2
- 230000003287 optical effect Effects 0.000 description 2
- 230000026676 system process Effects 0.000 description 2
- 238000010200 validation analysis Methods 0.000 description 2
- 230000004913 activation Effects 0.000 description 1
- 238000007792 addition Methods 0.000 description 1
- 230000006399 behavior Effects 0.000 description 1
- 230000009286 beneficial effect Effects 0.000 description 1
- 230000008859 change Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 230000003362 replicative effect Effects 0.000 description 1
- 230000007723 transport mechanism Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
-
- G—PHYSICS
- G11—INFORMATION STORAGE
- G11B—INFORMATION STORAGE BASED ON RELATIVE MOVEMENT BETWEEN RECORD CARRIER AND TRANSDUCER
- G11B20/00—Signal processing not specific to the method of recording or reproducing; Circuits therefor
- G11B20/00086—Circuits for prevention of unauthorised reproduction or copying, e.g. piracy
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/30—Monitoring
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F15/00—Digital computers in general; Data processing equipment in general
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/10—Protecting distributed programs or content, e.g. vending or licensing of copyrighted material ; Digital rights management [DRM]
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/57—Certifying or maintaining trusted computer platforms, e.g. secure boots or power-downs, version controls, system software checks, secure updates or assessing vulnerabilities
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/60—Software deployment
- G06F8/65—Updates
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2221/00—Indexing scheme relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/21—Indexing scheme relating to G06F21/00 and subgroups addressing additional information or applications relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/2135—Metering
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Software Systems (AREA)
- General Engineering & Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Hardware Design (AREA)
- Multimedia (AREA)
- Technology Law (AREA)
- Signal Processing (AREA)
- Quality & Reliability (AREA)
- Storage Device Security (AREA)
- Management, Administration, Business Operations System, And Electronic Commerce (AREA)
- Stored Programmes (AREA)
- Information Transfer Between Computers (AREA)
Description
typedef struct_GRL_HEADER {
WCHAR wszIdentifier[6];
WORD wFormatMajor;
WORD wFormatMinor;
FILETIME CreationTime;
DWORD dwSequenceNumber;
DWORD dwForceRebootVersion;
DWORD dwForceProcessRestartVersion;
DWORD cbRevocationsSectionOffset;
DWORD cRevokedKernelBinaries;
DWORD cRevokedUserBinaries;
DWORD cRevokedCertificates;
DWORD cTrustedRoots;
DWORD cbExtensibleSectionOffset;
DWORD cRevokedKernelBinaryRenewals;
DWORD cRevokedUserBinaryRenewals;
DWORD cRevokedCertificateRenewals;
DWORD cbSignatureCoreOffset;
DWORD cbSignatureExtOffset;
} GRL_HEADER;
typedef struct_GRL_ENTRY {
BYTE rgbGRLEntry[GRL_HASH_SIZE];
} GRL_ENTRY;
typedef struct_GRL_EXTENSIBLE_ENTRY {
GUID guidExtensionID;
BYTE rgbExtensibleEntry[GRL_EXT_ENTRY_SIZE];
} GRL_EXTENSIBLE_ENTRY;
typdef struct_GRL_RENEWAL_ENTRY {
GRL_ENTRY GRLEntry;
GUID guidRenewalID;
} GRL_RENEWAL_ENTRY;
typedef struct_BIN_SIGN {
DWORD dwSignFormat;
DWORD dwSignSize;
BYTE rgbSignature[1];
} BIN_SIGN;.
グローバル取り消しリストに関して説明される例示的なフォーマットは、時とともに変わる可能性があることが理解されよう。これが生じた場合、既存のコンポーネントは、新たなフォーマットが存在することを認識し、グレースフルに中止される。次に、新たなグローバル取り消しリストフォーマットを読み取るように構成された、更新されたフォーマットリーダが、保護された環境によって獲得される。
Claims (11)
- 新たな取り消しリストが、更新サービスにおいて発行されているかどうかを定期的にチェックするステップと、
前記定期的チェック中、前記新たな取り消しリストに関する推奨される更新が存在するという指示を前記更新サービスから受信すると、前記新たな取り消しリストをダウンロードして、前記新たな取り消しリストを保留中の取り消しリストとして保存し、前記保留中の取り消しリストは、保護されたコンテンツが、コンピューティングデバイス上の現在の保護レベルによって提供される保護よりも高いレベルの保護を、該コンピューティングデバイス上で要求する際に、オンデマンド更新のために利用可能であるステップと、
前記指示を受信すると、前記新たな取り消しリスト内で取り消されたコンポーネントとしてリストアップされる各コンポーネントの更新されたバージョンをダウンロードするステップと、
を含むコンピュータによって実施される方法であって、
前記取り消されたコンポーネントが、前記更新バージョンのインストールの起点となる前記更新サービス上のロケーションを特定するのに使用されるGUIDによって特定されることを特徴とする、
コンピュータによって実施される方法。 - 定期的にチェックするステップは、前記コンピューティングデバイスが再起動されると、実行される請求項1に記載のコンピュータによって実施される方法。
- 前記新たな取り消しリストは、現在の保留中の取り消しリストと入れ替わる請求項1に記載のコンピュータによって実施される方法。
- 前記保留中の取り消しリストは、それまでにダウンロードされた複数の保留中の取り消しリストの1つとして保存される請求項1に記載のコンピュータによって実施される方法。
- 前記更新サービスは、MICROSOFT(登録商標)WINDOWS(登録商標)更新サービスを含む請求項1に記載のコンピュータによって実施される方法。
- 前記取り消されたコンポーネントは、前記取り消されたコンポーネントのハッシュによって特定される請求項1に記載のコンピュータによって実施される方法。
- 前記取り消されたコンポーネントは、前記取り消されたコンポーネントの証明書によって特定される請求項1に記載のコンピュータによって実施される方法。
- 前記更新サービスは、メディアアプリケーションに関連するカテゴリを提供し、新たな取り消しリストは、前記カテゴリ内で発行される請求項1に記載のコンピュータによって実施される方法。
- 複数のパッケージが、前記カテゴリ内で発行され、各パッケージは、前記新たな取り消しリストの1つに関連し、前記関連する取り消しリストの中で取り消されたものとしてリストアップされているコンポーネントの更新されたバージョンを含む請求項8に記載のコンピュータによって実施される方法。
- 新たな取り消しリストが、更新サービスにおいて発行されているかどうかを、ネットワークを介して定期的にチェックするように構成された自動更新サービスと、
前記更新サービスから前記新たな取り消しリストをダウンロードした後、前記新たな取り消しリストをコンピューティングデバイスにインストールするように構成されたインストーラコンポーネントと、
前記新たな取り消しリストによって指定された保護レベルまでコンピューティングデバイスを、保護されたコンテンツの処理が、前記保護レベルを要求する場合に、更新するために利用可能な、保留中の取り消しリストとして、前記インストールされた新たな取り消しリストを格納するように構成された格納コンポーネントとを含むコンピュータ実行可能コンポーネントを有するコンピュータ可読記憶メディア。 - プロセッサと、
複数のコンピュータ実行可能コンポーネントがロードされたメモリとを含み、前記複数のコンポーネントは、
新たな取り消しリストが、更新サービスにおいて発行されているかどうかを、ネットワークを介して定期的にチェックするように構成された自動更新サービスと、
前記更新サービスから前記新たな取り消しリストをダウンロードした後、前記新たな取り消しリストをコンピューティングデバイスにインストールするように構成されたインストーラコンポーネントと、
前記新たな取り消しリストによって指定された保護レベルまでコンピューティングデバイスを、保護されたコンテンツの処理が、前記保護レベルを要求する場合に、更新するために利用可能な、保留中の取り消しリストとして、前記インストールされた新たな取り消しリストを格納するように構成された格納コンポーネントとを含むコンピューティングデバイス。
Applications Claiming Priority (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/184,555 US7590841B2 (en) | 2005-07-19 | 2005-07-19 | Automatic update of computer-readable components to support a trusted environment |
US11/184,555 | 2005-07-19 | ||
PCT/US2006/027251 WO2007011667A2 (en) | 2005-07-19 | 2006-07-14 | Automatic update of computer-readable components to support a trusted environment |
Publications (3)
Publication Number | Publication Date |
---|---|
JP2009503648A JP2009503648A (ja) | 2009-01-29 |
JP2009503648A5 JP2009503648A5 (ja) | 2009-07-23 |
JP5027807B2 true JP5027807B2 (ja) | 2012-09-19 |
Family
ID=37669367
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2008522834A Active JP5027807B2 (ja) | 2005-07-19 | 2006-07-14 | 信頼される環境をサポートするコンピュータ可読コンポーネントの自動更新 |
Country Status (10)
Country | Link |
---|---|
US (1) | US7590841B2 (ja) |
EP (1) | EP1905184B1 (ja) |
JP (1) | JP5027807B2 (ja) |
KR (1) | KR101238572B1 (ja) |
CN (1) | CN101310472B (ja) |
AU (1) | AU2006270273B2 (ja) |
BR (1) | BRPI0612865B1 (ja) |
CA (1) | CA2612631C (ja) |
NO (1) | NO20076576L (ja) |
WO (1) | WO2007011667A2 (ja) |
Families Citing this family (26)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7370212B2 (en) | 2003-02-25 | 2008-05-06 | Microsoft Corporation | Issuing a publisher use license off-line in a digital rights management (DRM) system |
US8074287B2 (en) * | 2004-04-30 | 2011-12-06 | Microsoft Corporation | Renewable and individualizable elements of a protected environment |
US20060242406A1 (en) | 2005-04-22 | 2006-10-26 | Microsoft Corporation | Protected computing environment |
US8347078B2 (en) | 2004-10-18 | 2013-01-01 | Microsoft Corporation | Device certificate individualization |
US8336085B2 (en) | 2004-11-15 | 2012-12-18 | Microsoft Corporation | Tuning product policy using observed evidence of customer behavior |
US8438645B2 (en) | 2005-04-27 | 2013-05-07 | Microsoft Corporation | Secure clock with grace periods |
US8725646B2 (en) | 2005-04-15 | 2014-05-13 | Microsoft Corporation | Output protection levels |
US9436804B2 (en) | 2005-04-22 | 2016-09-06 | Microsoft Technology Licensing, Llc | Establishing a unique session key using a hardware functionality scan |
US9363481B2 (en) | 2005-04-22 | 2016-06-07 | Microsoft Technology Licensing, Llc | Protected media pipeline |
US20060265758A1 (en) | 2005-05-20 | 2006-11-23 | Microsoft Corporation | Extensible media rights |
US8230037B2 (en) * | 2006-09-29 | 2012-07-24 | Audible, Inc. | Methods and apparatus for customized content delivery |
US8875259B2 (en) * | 2007-11-15 | 2014-10-28 | Salesforce.Com, Inc. | On-demand service security system and method for managing a risk of access as a condition of permitting access to the on-demand service |
US8584212B1 (en) | 2007-11-15 | 2013-11-12 | Salesforce.Com, Inc. | On-demand service security system and method for managing a risk of access as a condition of permitting access to the on-demand service |
US9253536B2 (en) * | 2009-03-18 | 2016-02-02 | Microsoft Technology Licensing, Llc | Updating data-consuming entities |
US9135091B2 (en) | 2009-04-03 | 2015-09-15 | Microsoft Technology Licensing, Llc | Communicating events or data between application components |
US8205257B1 (en) * | 2009-07-28 | 2012-06-19 | Symantec Corporation | Systems and methods for preventing threats originating from a non-process based component hosted by a trusted process |
US20110185179A1 (en) * | 2009-08-26 | 2011-07-28 | Viswanathan Swaminathan | System And Method For Digital Rights Management With A Lightweight Digital Watermarking Component |
EP2360581A1 (en) * | 2010-01-18 | 2011-08-24 | Thomson Licensing | Method, system and device for execution of a software application |
JP5932837B2 (ja) | 2011-01-19 | 2016-06-08 | インターナショナル・ビジネス・マシーンズ・コーポレーションInternational Business Machines Corporation | コードを更新および認証するための方法およびシステム、プログラムの完全性を試験する方法およびシステム |
US10282221B2 (en) * | 2011-12-09 | 2019-05-07 | International Business Machines Corporation | Controlling usage of virtual disks before their attachment to virtual machines |
US9727326B2 (en) * | 2013-03-15 | 2017-08-08 | Apple Inc. | Providing customized notifications for security software updates |
US9143565B2 (en) * | 2013-05-30 | 2015-09-22 | Opentv, Inc. | Synchronizing an application on a companion device |
US9298923B2 (en) * | 2013-09-04 | 2016-03-29 | Cisco Technology, Inc. | Software revocation infrastructure |
US10409989B2 (en) | 2014-12-26 | 2019-09-10 | Mcafee, Llc | Trusted updates |
CN106843922B (zh) * | 2016-12-13 | 2020-08-04 | 青岛海信移动通信技术股份有限公司 | 一种程序的更新方法和装置 |
US10445503B2 (en) | 2017-07-14 | 2019-10-15 | Google Llc | Secure persistent software updates |
Family Cites Families (9)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5373561A (en) * | 1992-12-21 | 1994-12-13 | Bell Communications Research, Inc. | Method of extending the validity of a cryptographic certificate |
US6367013B1 (en) * | 1995-01-17 | 2002-04-02 | Eoriginal Inc. | System and method for electronic transmission, storage, and retrieval of authenticated electronic original documents |
US5615268A (en) * | 1995-01-17 | 1997-03-25 | Document Authentication Systems, Inc. | System and method for electronic transmission storage and retrieval of authenticated documents |
US6128740A (en) * | 1997-12-08 | 2000-10-03 | Entrust Technologies Limited | Computer security system and method with on demand publishing of certificate revocation lists |
EP1096446A3 (en) * | 1999-11-01 | 2004-02-11 | Citicorp Development Center, Inc. | Method and system for secure communication between a self-service financial transaction terminal and a remote operator interface |
FR2834406A1 (fr) | 2001-12-28 | 2003-07-04 | Thomson Licensing Sa | Procede de mise a jour d'une liste de revocation de cles, d'appareils ou de modules non-conformes dans un systeme de diffusion securise de contenu |
JP4474845B2 (ja) * | 2002-06-12 | 2010-06-09 | 株式会社日立製作所 | Crl発行通知機能付き認証基盤システム |
JP2004056635A (ja) * | 2002-07-23 | 2004-02-19 | Hitachi Ltd | 証明書失効リストの更新装置、システム及び方法 |
US20040205345A1 (en) * | 2003-04-11 | 2004-10-14 | Ripley Michael S. | System for identification and revocation of audiovisual titles and replicators |
-
2005
- 2005-07-19 US US11/184,555 patent/US7590841B2/en active Active
-
2006
- 2006-07-14 JP JP2008522834A patent/JP5027807B2/ja active Active
- 2006-07-14 AU AU2006270273A patent/AU2006270273B2/en active Active
- 2006-07-14 EP EP06774652.9A patent/EP1905184B1/en active Active
- 2006-07-14 WO PCT/US2006/027251 patent/WO2007011667A2/en active Application Filing
- 2006-07-14 KR KR1020077030758A patent/KR101238572B1/ko active IP Right Grant
- 2006-07-14 BR BRPI0612865-3A patent/BRPI0612865B1/pt active IP Right Grant
- 2006-07-14 CN CN2006800262510A patent/CN101310472B/zh active Active
- 2006-07-14 CA CA2612631A patent/CA2612631C/en active Active
-
2007
- 2007-12-20 NO NO20076576A patent/NO20076576L/no not_active Application Discontinuation
Also Published As
Publication number | Publication date |
---|---|
BRPI0612865B1 (pt) | 2019-10-01 |
CN101310472B (zh) | 2011-12-07 |
EP1905184A4 (en) | 2016-03-30 |
CN101310472A (zh) | 2008-11-19 |
WO2007011667A2 (en) | 2007-01-25 |
US20070033652A1 (en) | 2007-02-08 |
KR101238572B1 (ko) | 2013-03-04 |
EP1905184B1 (en) | 2018-02-14 |
US7590841B2 (en) | 2009-09-15 |
EP1905184A2 (en) | 2008-04-02 |
CA2612631C (en) | 2014-03-04 |
BRPI0612865A2 (pt) | 2010-11-30 |
JP2009503648A (ja) | 2009-01-29 |
WO2007011667A3 (en) | 2007-08-23 |
NO20076576L (no) | 2008-02-18 |
AU2006270273A1 (en) | 2007-01-25 |
KR20080026132A (ko) | 2008-03-24 |
AU2006270273B2 (en) | 2010-05-06 |
CA2612631A1 (en) | 2007-01-25 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP5027807B2 (ja) | 信頼される環境をサポートするコンピュータ可読コンポーネントの自動更新 | |
US7650492B2 (en) | Automatic update of computer-readable components to support a trusted environment | |
JP5403771B2 (ja) | ファームウェアに安全なアップデートを提供するシステム及び方法 | |
US9679130B2 (en) | Pervasive package identifiers | |
US7434263B2 (en) | System and method for secure storage data using a key | |
US8667487B1 (en) | Web browser extensions | |
US9092598B2 (en) | Version-based software product activation | |
JP5460698B2 (ja) | 安全なアプリケーションストリーミング | |
US8739298B2 (en) | Method and system for enforcing a license dependency rule for a software application | |
US20130298128A1 (en) | Managed control of processes including privilege escalation | |
US20080052698A1 (en) | Providing firmware updates to portable media devices | |
US20060015718A1 (en) | Use of kernel authorization data to maintain security in a digital processing system | |
JP2005129066A (ja) | オペレーティングシステムリソース保護 | |
KR100883699B1 (ko) | 무선 장치 동작 환경에서 비검증된 프로그램들의 실행 | |
KR101453225B1 (ko) | 애플리케이션 배포 시스템, 애플리케이션 배포 방법, 단말 및 프로그램 | |
BRPI0616033B1 (pt) | mídia legível por computador e método para dissuadir pirataria em um ambiente de licença em volume | |
CN110555293A (zh) | 用于保护数据的方法、装置、电子设备和计算机可读介质 | |
WO2006124239A2 (en) | Disk protection using enhanced write filter | |
KR101977428B1 (ko) | 애플리케이션용 콘텐츠 핸들링 기법 | |
US20140090063A1 (en) | System and method for inhibiting the processing of new code modules by an outdated runtime environment | |
Griffiths et al. | Fireguard-A secure browser with reduced forensic footprint |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20090601 |
|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20090601 |
|
RD04 | Notification of resignation of power of attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7424 Effective date: 20110908 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20120130 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20120207 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20120501 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20120525 |
|
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20120622 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20150629 Year of fee payment: 3 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 5027807 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
S111 | Request for change of ownership or part of ownership |
Free format text: JAPANESE INTERMEDIATE CODE: R313113 |
|
R350 | Written notification of registration of transfer |
Free format text: JAPANESE INTERMEDIATE CODE: R350 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |