Rename Java packages to use the .google TLD

The dark lord Gosling designed the Java package naming system so that
ownership flows from the DNS system. Since we own the domain name
registry.google, it seems only appropriate that we should use
google.registry as our package name.
This commit is contained in:
Michael Muller 2016-04-26 11:05:00 -04:00 committed by Justine Tunney
parent 5012893c1d
commit c458c05801
1309 changed files with 10981 additions and 10378 deletions

View file

@ -1,7 +1,10 @@
package(
default_visibility = ["//java/com/google/domain/registry:registry_project"],
default_testonly = 1,
default_visibility = ["//java/google/registry:registry_project"],
)
licenses(["notice"]) # Apache 2.0
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
@ -19,11 +22,6 @@ java_library(
"//java/com/google/common/collect",
"//java/com/google/common/io",
"//java/com/google/common/net",
"//java/com/google/domain/registry/model",
"//java/com/google/domain/registry/request",
"//java/com/google/domain/registry/tmch",
"//java/com/google/domain/registry/util",
"//javatests/com/google/domain/registry/testing",
"//third_party/java/appengine:appengine-api-testonly",
"//third_party/java/bouncycastle",
"//third_party/java/bouncycastle_bcpg",
@ -34,6 +32,11 @@ java_library(
"//third_party/java/objectify:objectify-v4_1",
"//third_party/java/servlet/servlet_api",
"//third_party/java/truth",
"//java/google/registry/model",
"//java/google/registry/request",
"//java/google/registry/tmch",
"//java/google/registry/util",
"//javatests/google/registry/testing",
],
)

View file

@ -12,13 +12,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableList;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.tmch.LordnLog.Result;
import google.registry.testing.ExceptionRule;
import google.registry.tmch.LordnLog.Result;
import org.joda.time.DateTime;
import org.junit.Rule;

View file

@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import static com.google.domain.registry.model.ofy.ObjectifyService.ofy;
import static com.google.domain.registry.testing.DatastoreHelper.createTld;
import static com.google.domain.registry.testing.DatastoreHelper.persistDomainAndEnqueueLordn;
import static com.google.domain.registry.testing.TaskQueueHelper.assertTasksEnqueued;
import static google.registry.model.ofy.ObjectifyService.ofy;
import static google.registry.testing.DatastoreHelper.createTld;
import static google.registry.testing.DatastoreHelper.persistDomainAndEnqueueLordn;
import static google.registry.testing.TaskQueueHelper.assertTasksEnqueued;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
@ -31,20 +31,21 @@ import com.google.appengine.api.taskqueue.TaskOptions.Method;
import com.google.appengine.api.taskqueue.TransientFailureException;
import com.google.apphosting.api.DeadlineExceededException;
import com.google.common.collect.ImmutableList;
import com.google.domain.registry.model.domain.DomainResource;
import com.google.domain.registry.model.domain.launch.LaunchNotice;
import com.google.domain.registry.model.ofy.Ofy;
import com.google.domain.registry.model.registrar.Registrar;
import com.google.domain.registry.model.registrar.Registrar.Type;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import com.google.domain.registry.testing.InjectRule;
import com.google.domain.registry.testing.TaskQueueHelper.TaskMatcher;
import com.google.domain.registry.util.Clock;
import com.googlecode.objectify.VoidWork;
import google.registry.model.domain.DomainResource;
import google.registry.model.domain.launch.LaunchNotice;
import google.registry.model.ofy.Ofy;
import google.registry.model.registrar.Registrar;
import google.registry.model.registrar.Registrar.Type;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.InjectRule;
import google.registry.testing.TaskQueueHelper.TaskMatcher;
import google.registry.util.Clock;
import org.joda.time.DateTime;
import org.junit.Before;
import org.junit.Rule;

View file

@ -12,19 +12,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.net.HttpHeaders.AUTHORIZATION;
import static com.google.common.net.HttpHeaders.CONTENT_TYPE;
import static com.google.common.net.HttpHeaders.LOCATION;
import static com.google.common.net.MediaType.FORM_DATA;
import static com.google.common.truth.Truth.assertThat;
import static com.google.domain.registry.testing.DatastoreHelper.createTld;
import static com.google.domain.registry.testing.DatastoreHelper.newDomainResource;
import static com.google.domain.registry.testing.DatastoreHelper.persistDomainAndEnqueueLordn;
import static com.google.domain.registry.testing.DatastoreHelper.persistResource;
import static com.google.domain.registry.testing.TaskQueueHelper.assertTasksEnqueued;
import static com.google.domain.registry.util.UrlFetchUtils.getHeaderFirst;
import static google.registry.testing.DatastoreHelper.createTld;
import static google.registry.testing.DatastoreHelper.newDomainResource;
import static google.registry.testing.DatastoreHelper.persistDomainAndEnqueueLordn;
import static google.registry.testing.DatastoreHelper.persistResource;
import static google.registry.testing.TaskQueueHelper.assertTasksEnqueued;
import static google.registry.util.UrlFetchUtils.getHeaderFirst;
import static java.nio.charset.StandardCharsets.UTF_8;
import static javax.servlet.http.HttpServletResponse.SC_ACCEPTED;
import static javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
@ -39,17 +39,18 @@ import com.google.appengine.api.urlfetch.URLFetchService;
import com.google.common.base.Optional;
import com.google.common.base.VerifyException;
import com.google.common.collect.ImmutableList;
import com.google.domain.registry.model.domain.DomainResource;
import com.google.domain.registry.model.domain.launch.LaunchNotice;
import com.google.domain.registry.model.ofy.Ofy;
import com.google.domain.registry.model.registrar.Registrar;
import com.google.domain.registry.model.registry.Registry;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import com.google.domain.registry.testing.InjectRule;
import com.google.domain.registry.testing.TaskQueueHelper.TaskMatcher;
import com.google.domain.registry.util.UrlFetchException;
import google.registry.model.domain.DomainResource;
import google.registry.model.domain.launch.LaunchNotice;
import google.registry.model.ofy.Ofy;
import google.registry.model.registrar.Registrar;
import google.registry.model.registry.Registry;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.InjectRule;
import google.registry.testing.TaskQueueHelper.TaskMatcher;
import google.registry.util.UrlFetchException;
import org.joda.time.DateTime;
import org.junit.Before;

View file

@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.net.HttpHeaders.AUTHORIZATION;
import static com.google.common.truth.Truth.assertThat;
import static com.google.domain.registry.testing.DatastoreHelper.createTld;
import static com.google.domain.registry.testing.DatastoreHelper.persistResource;
import static com.google.domain.registry.util.UrlFetchUtils.getHeaderFirst;
import static google.registry.testing.DatastoreHelper.createTld;
import static google.registry.testing.DatastoreHelper.persistResource;
import static google.registry.util.UrlFetchUtils.getHeaderFirst;
import static java.nio.charset.StandardCharsets.UTF_8;
import static javax.servlet.http.HttpServletResponse.SC_NO_CONTENT;
import static javax.servlet.http.HttpServletResponse.SC_OK;
@ -31,11 +31,12 @@ import com.google.appengine.api.urlfetch.HTTPRequest;
import com.google.appengine.api.urlfetch.HTTPResponse;
import com.google.appengine.api.urlfetch.URLFetchService;
import com.google.common.base.Optional;
import com.google.domain.registry.model.registry.Registry;
import com.google.domain.registry.request.HttpException.ConflictException;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeResponse;
import google.registry.model.registry.Registry;
import google.registry.request.HttpException.ConflictException;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeResponse;
import org.junit.Before;
import org.junit.Rule;

View file

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import static java.nio.charset.StandardCharsets.US_ASCII;
@ -21,10 +21,11 @@ import static org.joda.time.Duration.standardDays;
import com.google.common.collect.ImmutableList;
import com.google.common.io.CharSource;
import com.google.domain.registry.model.smd.SignedMarkRevocationList;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import google.registry.model.smd.SignedMarkRevocationList;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import org.joda.time.DateTime;
import org.junit.Rule;

View file

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static javax.servlet.http.HttpServletResponse.SC_OK;
import static org.mockito.Matchers.any;
@ -21,12 +21,13 @@ import static org.mockito.Mockito.when;
import com.google.appengine.api.urlfetch.HTTPRequest;
import com.google.appengine.api.urlfetch.HTTPResponse;
import com.google.appengine.api.urlfetch.URLFetchService;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.BouncyCastleProviderRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import com.google.domain.registry.testing.InjectRule;
import com.google.domain.registry.testing.RegistryConfigRule;
import google.registry.testing.AppEngineRule;
import google.registry.testing.BouncyCastleProviderRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.InjectRule;
import google.registry.testing.RegistryConfigRule;
import org.junit.Before;
import org.junit.Rule;

View file

@ -12,18 +12,18 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.domain.registry.tmch.TmchTestData.loadString;
import static com.google.domain.registry.util.ResourceUtils.readResourceUtf8;
import static com.google.domain.registry.util.X509Utils.loadCertificate;
import static google.registry.tmch.TmchTestData.loadString;
import static google.registry.util.ResourceUtils.readResourceUtf8;
import static google.registry.util.X509Utils.loadCertificate;
import com.google.domain.registry.model.tmch.TmchCrl;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import com.google.domain.registry.testing.InjectRule;
import com.google.domain.registry.testing.RegistryConfigRule;
import google.registry.model.tmch.TmchCrl;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.InjectRule;
import google.registry.testing.RegistryConfigRule;
import org.joda.time.DateTime;
import org.junit.Before;

View file

@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import static com.google.domain.registry.util.ResourceUtils.readResourceBytes;
import static google.registry.util.ResourceUtils.readResourceBytes;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

View file

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import static org.mockito.Mockito.times;
@ -20,7 +20,8 @@ import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import com.google.common.base.Optional;
import com.google.domain.registry.model.tmch.ClaimsListShard;
import google.registry.model.tmch.ClaimsListShard;
import org.joda.time.DateTime;
import org.junit.Test;

View file

@ -12,16 +12,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.truth.Truth.assertThat;
import static com.google.domain.registry.tmch.TmchTestData.loadBytes;
import static google.registry.tmch.TmchTestData.loadBytes;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import com.google.common.base.Optional;
import com.google.domain.registry.model.smd.SignedMarkRevocationList;
import google.registry.model.smd.SignedMarkRevocationList;
import org.joda.time.DateTime;
import org.junit.Test;

View file

@ -12,12 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.common.base.CharMatcher.whitespace;
import static com.google.common.io.BaseEncoding.base64;
import static com.google.domain.registry.util.ResourceUtils.readResourceBytes;
import static com.google.domain.registry.util.ResourceUtils.readResourceUtf8;
import static google.registry.util.ResourceUtils.readResourceBytes;
import static google.registry.util.ResourceUtils.readResourceUtf8;
import com.google.common.io.ByteSource;

View file

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

View file

@ -12,15 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.domain.registry.tmch;
package google.registry.tmch;
import static com.google.domain.registry.tmch.TmchTestData.loadSmd;
import static google.registry.tmch.TmchTestData.loadSmd;
import com.google.domain.registry.testing.AppEngineRule;
import com.google.domain.registry.testing.ExceptionRule;
import com.google.domain.registry.testing.FakeClock;
import com.google.domain.registry.testing.InjectRule;
import com.google.domain.registry.testing.RegistryConfigRule;
import google.registry.testing.AppEngineRule;
import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.InjectRule;
import google.registry.testing.RegistryConfigRule;
import org.joda.time.DateTime;
import org.junit.Before;

View file

@ -1,30 +1,30 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v2.0.14 (GNU/Linux)
mQENBFHaxrYBCADHDPUdSYCs9wuBUhbGYfi39LKlDLhlmia7Tlv1rSJb8RPcU7DL
eXSU9zKRDpW31KQtHnjARinobjQNc6YXQOGtjDVr3LGTojGT1y+obVmgWytpHNnb
kSu1pktQRDPpYPBMBOD/MVpz8nZxgjYWyYTIkfTgkA/l1YKRyA30ieHVR8qKhJZY
D6u/dViQcdZCLsvs0XYYhPDjNi7M2wzVAdRjh9txnJgDymgqHF59onzkZauyFnc9
EUEUURITzbfMifvGSZ/h+zdCUT/tSH3wSuVRxXqAh+cApT2c+gI88/TlGci2YOZV
POU24M7xuYPb9rIK4b9tR12ZQF+g/4n9eDprABEBAAG0LHN1cHBvcnQgYXQgbWFy
a3NkYi5vcmcgPHN1cHBvcnRAbWFya3NkYi5vcmc+iQE4BBMBAgAiBQJR2sa2AhsD
BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRC4xOmbTP03TGTCB/9J1xKyNkJe
wsSHhBga4MnBiS3gr3waZSfYaiWvx7br5FxI3Zv2jPAouqkpf8XbJgc4RvqZjFmi
5YSwpLgChSa5DkA6kPgReNCEfPvtBX7iRrZTv7RSSzZUuGiVED9s4Qk0+ppc8RgW
HRLYetvNvMIKL+6bvUlvztr+KM914JpzDEXgkBok2RxVq33FKUMIiy4vinbS2/7N
LpGlCMG7vgdBHIjBItUq9ipCtiDvvmPHiwHErgMgkx67pmDGxViMHDIMpzb8YTHw
lCxRwnLPILmm371hqOuVsu/pUVC16TEzYRDwZGbn4uKzWT0ZvYsPNcFGKC35ujEH
3fACoP6CMt/AuQENBFHaxrYBCADuDjCyxpDMakGSmk5zXIW/r0F9wqpIaPqm7xoR
15ajbvBUguM3gVH7bC4qihaSVFq2S8soWpyu88JyeWFiK+nMiIUALbfwXTA3DdIm
zmA/aKBNCeMyWXH1iy5zDCO0S343HH3/QWYTTy0aSUoMiW4AovKrnbZWti0WOoC4
a8MUY1Ib1DhG/CJBzx4l52m5jOnmKB4foa7VmaWAjlG/s4ZDoEUPW8p6d2fmF05q
/ImGuzSwXegCuTY7rmkWskf4SshTYryyel76v1SteOFhXFaxcewbQgxIn1uGczd5
P3/RBznF+Zm9OQK3840sqnhn1y/A3HadT7OI9Ot31TVXpRK5ABEBAAGJAR8EGAEC
AAkFAlHaxrYCGwwACgkQuMTpm0z9N0yzzwgApO1IzPwd5OwFymQNIizKOl3VTBTR
s5xtGBARg3fQsPmQen/SWZXu7VqJzr9QngQRJUT0nqdQPsGqOU72f8UkZGg6UD/o
mqfSfzLnOGnXLpC5g4bR+Z1PHlOV33r0HnWA8GPZsnYOXw414NYLmNW+tlC9t1F0
WNBevhzXQujBfj0p+Znf3Gap8xvtZ9EAbeYUEpUQXEKh5UcBHBQCzmvDgukISK7w
wBpVWDwLHIYghE9OElat0y+ttD+RhSkUf+ufIw+L6BTHVD5E+W+BFoMFmNU3Kk/y
BoGsCR/i63T3egBVn1IzFezNy8YUVTtqOLyYlIe2R35zafxXs2anwvqA6Q==
=2ED8
-----END PGP PUBLIC KEY BLOCK-----
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v2.0.14 (GNU/Linux)
mQENBFHaxrYBCADHDPUdSYCs9wuBUhbGYfi39LKlDLhlmia7Tlv1rSJb8RPcU7DL
eXSU9zKRDpW31KQtHnjARinobjQNc6YXQOGtjDVr3LGTojGT1y+obVmgWytpHNnb
kSu1pktQRDPpYPBMBOD/MVpz8nZxgjYWyYTIkfTgkA/l1YKRyA30ieHVR8qKhJZY
D6u/dViQcdZCLsvs0XYYhPDjNi7M2wzVAdRjh9txnJgDymgqHF59onzkZauyFnc9
EUEUURITzbfMifvGSZ/h+zdCUT/tSH3wSuVRxXqAh+cApT2c+gI88/TlGci2YOZV
POU24M7xuYPb9rIK4b9tR12ZQF+g/4n9eDprABEBAAG0LHN1cHBvcnQgYXQgbWFy
a3NkYi5vcmcgPHN1cHBvcnRAbWFya3NkYi5vcmc+iQE4BBMBAgAiBQJR2sa2AhsD
BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRC4xOmbTP03TGTCB/9J1xKyNkJe
wsSHhBga4MnBiS3gr3waZSfYaiWvx7br5FxI3Zv2jPAouqkpf8XbJgc4RvqZjFmi
5YSwpLgChSa5DkA6kPgReNCEfPvtBX7iRrZTv7RSSzZUuGiVED9s4Qk0+ppc8RgW
HRLYetvNvMIKL+6bvUlvztr+KM914JpzDEXgkBok2RxVq33FKUMIiy4vinbS2/7N
LpGlCMG7vgdBHIjBItUq9ipCtiDvvmPHiwHErgMgkx67pmDGxViMHDIMpzb8YTHw
lCxRwnLPILmm371hqOuVsu/pUVC16TEzYRDwZGbn4uKzWT0ZvYsPNcFGKC35ujEH
3fACoP6CMt/AuQENBFHaxrYBCADuDjCyxpDMakGSmk5zXIW/r0F9wqpIaPqm7xoR
15ajbvBUguM3gVH7bC4qihaSVFq2S8soWpyu88JyeWFiK+nMiIUALbfwXTA3DdIm
zmA/aKBNCeMyWXH1iy5zDCO0S343HH3/QWYTTy0aSUoMiW4AovKrnbZWti0WOoC4
a8MUY1Ib1DhG/CJBzx4l52m5jOnmKB4foa7VmaWAjlG/s4ZDoEUPW8p6d2fmF05q
/ImGuzSwXegCuTY7rmkWskf4SshTYryyel76v1SteOFhXFaxcewbQgxIn1uGczd5
P3/RBznF+Zm9OQK3840sqnhn1y/A3HadT7OI9Ot31TVXpRK5ABEBAAGJAR8EGAEC
AAkFAlHaxrYCGwwACgkQuMTpm0z9N0yzzwgApO1IzPwd5OwFymQNIizKOl3VTBTR
s5xtGBARg3fQsPmQen/SWZXu7VqJzr9QngQRJUT0nqdQPsGqOU72f8UkZGg6UD/o
mqfSfzLnOGnXLpC5g4bR+Z1PHlOV33r0HnWA8GPZsnYOXw414NYLmNW+tlC9t1F0
WNBevhzXQujBfj0p+Znf3Gap8xvtZ9EAbeYUEpUQXEKh5UcBHBQCzmvDgukISK7w
wBpVWDwLHIYghE9OElat0y+ttD+RhSkUf+ufIw+L6BTHVD5E+W+BFoMFmNU3Kk/y
BoGsCR/i63T3egBVn1IzFezNy8YUVTtqOLyYlIe2R35zafxXs2anwvqA6Q==
=2ED8
-----END PGP PUBLIC KEY BLOCK-----

View file

@ -1 +1,32 @@
1,2013-07-15T00:00:00.0Z smd-id,insertion-datetime 0000002001376042764293-65535,2013-07-15T00:00:00.0Z 0000002061376042765341-65535,2013-07-15T00:00:00.0Z 0000002121376042767302-65535,2013-07-15T00:00:00.0Z 0000002181376042767994-65535,2013-07-15T00:00:00.0Z 0000002241376042769508-65535,2013-07-15T00:00:00.0Z 0000002031376042765014-65535,2013-07-15T00:00:00.0Z 0000002091376042765779-65535,2013-07-15T00:00:00.0Z 0000002151376042767642-65535,2013-07-15T00:00:00.0Z 0000002211376042768492-65535,2013-07-15T00:00:00.0Z 0000002291376042770068-65535,2013-07-15T00:00:00.0Z 0000001861376042761179-65535,2013-07-15T00:00:00.0Z 0000002051376042765277-65535,2013-07-15T00:00:00.0Z 0000002111376042766714-65535,2013-07-15T00:00:00.0Z 0000002171376042767771-65535,2013-07-15T00:00:00.0Z 0000002231376042769036-65535,2013-07-15T00:00:00.0Z 0000002021376042764750-65535,2013-07-15T00:00:00.0Z 0000002081376042765470-65535,2013-07-15T00:00:00.0Z 0000002141376042767572-65535,2013-07-15T00:00:00.0Z 0000002201376042768432-65535,2013-07-15T00:00:00.0Z 0000002261376042770009-65535,2013-07-15T00:00:00.0Z 0000002011376042764485-65535,2013-07-15T00:00:00.0Z 0000002071376042765408-65535,2013-07-15T00:00:00.0Z 0000002131376042767364-65535,2013-07-15T00:00:00.0Z 0000002191376042768370-65535,2013-07-15T00:00:00.0Z 0000002251376042769746-65535,2013-07-15T00:00:00.0Z 0000002041376042765085-65535,2013-07-15T00:00:00.0Z 0000002101376042766438-65535,2013-07-15T00:00:00.0Z 0000002161376042767705-65535,2013-07-15T00:00:00.0Z 0000002221376042768552-65535,2013-07-15T00:00:00.0Z 0000002301376042770286-65535,2013-07-15T00:00:00.0Z
1,2013-07-15T00:00:00.0Z
smd-id,insertion-datetime
0000002001376042764293-65535,2013-07-15T00:00:00.0Z
0000002061376042765341-65535,2013-07-15T00:00:00.0Z
0000002121376042767302-65535,2013-07-15T00:00:00.0Z
0000002181376042767994-65535,2013-07-15T00:00:00.0Z
0000002241376042769508-65535,2013-07-15T00:00:00.0Z
0000002031376042765014-65535,2013-07-15T00:00:00.0Z
0000002091376042765779-65535,2013-07-15T00:00:00.0Z
0000002151376042767642-65535,2013-07-15T00:00:00.0Z
0000002211376042768492-65535,2013-07-15T00:00:00.0Z
0000002291376042770068-65535,2013-07-15T00:00:00.0Z
0000001861376042761179-65535,2013-07-15T00:00:00.0Z
0000002051376042765277-65535,2013-07-15T00:00:00.0Z
0000002111376042766714-65535,2013-07-15T00:00:00.0Z
0000002171376042767771-65535,2013-07-15T00:00:00.0Z
0000002231376042769036-65535,2013-07-15T00:00:00.0Z
0000002021376042764750-65535,2013-07-15T00:00:00.0Z
0000002081376042765470-65535,2013-07-15T00:00:00.0Z
0000002141376042767572-65535,2013-07-15T00:00:00.0Z
0000002201376042768432-65535,2013-07-15T00:00:00.0Z
0000002261376042770009-65535,2013-07-15T00:00:00.0Z
0000002011376042764485-65535,2013-07-15T00:00:00.0Z
0000002071376042765408-65535,2013-07-15T00:00:00.0Z
0000002131376042767364-65535,2013-07-15T00:00:00.0Z
0000002191376042768370-65535,2013-07-15T00:00:00.0Z
0000002251376042769746-65535,2013-07-15T00:00:00.0Z
0000002041376042765085-65535,2013-07-15T00:00:00.0Z
0000002101376042766438-65535,2013-07-15T00:00:00.0Z
0000002161376042767705-65535,2013-07-15T00:00:00.0Z
0000002221376042768552-65535,2013-07-15T00:00:00.0Z
0000002301376042770286-65535,2013-07-15T00:00:00.0Z
1 1 2013-07-15T00:00:00.0Z smd-id 2013-07-15T00:00:00.0Z insertion-datetime 0000002001376042764293-65535 2013-07-15T00:00:00.0Z 0000002061376042765341-65535 2013-07-15T00:00:00.0Z 0000002121376042767302-65535 2013-07-15T00:00:00.0Z 0000002181376042767994-65535 2013-07-15T00:00:00.0Z 0000002241376042769508-65535 2013-07-15T00:00:00.0Z 0000002031376042765014-65535 2013-07-15T00:00:00.0Z 0000002091376042765779-65535 2013-07-15T00:00:00.0Z 0000002151376042767642-65535 2013-07-15T00:00:00.0Z 0000002211376042768492-65535 2013-07-15T00:00:00.0Z 0000002291376042770068-65535 2013-07-15T00:00:00.0Z 0000001861376042761179-65535 2013-07-15T00:00:00.0Z 0000002051376042765277-65535 2013-07-15T00:00:00.0Z 0000002111376042766714-65535 2013-07-15T00:00:00.0Z 0000002171376042767771-65535 2013-07-15T00:00:00.0Z 0000002231376042769036-65535 2013-07-15T00:00:00.0Z 0000002021376042764750-65535 2013-07-15T00:00:00.0Z 0000002081376042765470-65535 2013-07-15T00:00:00.0Z 0000002141376042767572-65535 2013-07-15T00:00:00.0Z 0000002201376042768432-65535 2013-07-15T00:00:00.0Z 0000002261376042770009-65535 2013-07-15T00:00:00.0Z 0000002011376042764485-65535 2013-07-15T00:00:00.0Z 0000002071376042765408-65535 2013-07-15T00:00:00.0Z 0000002131376042767364-65535 2013-07-15T00:00:00.0Z 0000002191376042768370-65535 2013-07-15T00:00:00.0Z 0000002251376042769746-65535 2013-07-15T00:00:00.0Z 0000002041376042765085-65535 2013-07-15T00:00:00.0Z 0000002101376042766438-65535 2013-07-15T00:00:00.0Z 0000002161376042767705-65535 2013-07-15T00:00:00.0Z 0000002221376042768552-65535 2013-07-15T00:00:00.0Z 0000002301376042770286-65535
2 smd-id insertion-datetime
3 0000002001376042764293-65535 2013-07-15T00:00:00.0Z
4 0000002061376042765341-65535 2013-07-15T00:00:00.0Z
5 0000002121376042767302-65535 2013-07-15T00:00:00.0Z
6 0000002181376042767994-65535 2013-07-15T00:00:00.0Z
7 0000002241376042769508-65535 2013-07-15T00:00:00.0Z
8 0000002031376042765014-65535 2013-07-15T00:00:00.0Z
9 0000002091376042765779-65535 2013-07-15T00:00:00.0Z
10 0000002151376042767642-65535 2013-07-15T00:00:00.0Z
11 0000002211376042768492-65535 2013-07-15T00:00:00.0Z
12 0000002291376042770068-65535 2013-07-15T00:00:00.0Z
13 0000001861376042761179-65535 2013-07-15T00:00:00.0Z
14 0000002051376042765277-65535 2013-07-15T00:00:00.0Z
15 0000002111376042766714-65535 2013-07-15T00:00:00.0Z
16 0000002171376042767771-65535 2013-07-15T00:00:00.0Z
17 0000002231376042769036-65535 2013-07-15T00:00:00.0Z
18 0000002021376042764750-65535 2013-07-15T00:00:00.0Z
19 0000002081376042765470-65535 2013-07-15T00:00:00.0Z
20 0000002141376042767572-65535 2013-07-15T00:00:00.0Z
21 0000002201376042768432-65535 2013-07-15T00:00:00.0Z
22 0000002261376042770009-65535 2013-07-15T00:00:00.0Z
23 0000002011376042764485-65535 2013-07-15T00:00:00.0Z
24 0000002071376042765408-65535 2013-07-15T00:00:00.0Z
25 0000002131376042767364-65535 2013-07-15T00:00:00.0Z
26 0000002191376042768370-65535 2013-07-15T00:00:00.0Z
27 0000002251376042769746-65535 2013-07-15T00:00:00.0Z
28 0000002041376042765085-65535 2013-07-15T00:00:00.0Z
29 0000002101376042766438-65535 2013-07-15T00:00:00.0Z
30 0000002161376042767705-65535 2013-07-15T00:00:00.0Z
31 0000002221376042768552-65535 2013-07-15T00:00:00.0Z
32 0000002301376042770286-65535 2013-07-15T00:00:00.0Z