ETH Price: $2,417.94 (+1.68%)

Token

Beelinez (BZZ)
 

Overview

Max Total Supply

277 BZZ

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BZZ
0x7f4ade051eaeefa2bfdfd5f47bb606ae79adb837
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Beelinez

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Beelinez.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.11;

import '@openzeppelin/contracts/utils/Base64.sol';

import "./Tiny721.sol";

/**
  @title On-chain generative bees.

  This contract generates a piece of pseudorandom data upon each token's mint.
  This data is then used to generate 100% on-chain an SVG of a bee with
  associated metadata.

  March 9th, 2022.
*/
contract Beelinez is
  Tiny721
{
  using Strings for uint256;

  /// The timestamp when the bees launched. This is used to give bees an age.
  uint256 public immutable startTime;

  /// A mapping from each token ID to the pseudorandom hash when it was minted.
  mapping ( uint256 => uint256 ) public mintData;

  /// A mapping from each token ID to the time when it was minted.
  mapping ( uint256 => uint256 ) public mintTime;

  /**
    This struct is used to define a color which is used elsewhere to generate
    the actual on-chain SVG.

    @param value The value of the color expressed as an SVG-compatible color
      string. This can be a specific color string, such as `rgb(255,255,255)` or
      a recognized color code such as `salmon`.
    @param friendlyName The friendly name of the color which will be used when
      building the on-chain metadata attributes.
  */
  struct Color {
    string value;
    string friendlyName;
  }

  /// A storage array of all possible background colors.
  Color[] private BACKGROUND_COLORS;

  /// A storage array of all possible primary bee colors.
  Color[] private PRIMARY_COLORS;

  /// A storage array of all possible secondary bee colors.
  Color[] private SECONDARY_COLORS;

  /// A storage array of all possible bee wing colors.
  Color[] private WING_COLORS;

  /// A storage array of all possible bee primary eye colors.
  Color[] private PRIMARY_EYE_COLORS;

  /// A storage array of all possible bee secondary eye colors.
  Color[] private SECONDARY_EYE_COLORS;

  /**
    This struct is used to define a piece of generic switching logic based on
    integer sentinel values. In this case, it is used to define the patterns
    being colored in with our `Color`s.

    @param value The sentinel value of the pattern.
    @param friendlyName The friendly name which will be used when building the
      on-chain metadata attributes.
  */
  struct Pattern {
    uint256 value;
    string friendlyName;
  }

  /// A storage array of all possible tail patterns.
  Pattern[] private TAIL_PATTERNS;

  /// A storage array of all possible eye patterns.
  Pattern[] private EYE_PATTERNS;

  /**
    This struct represents a single generated bee.

    @param backgroundColor The background color of the bee, tracked as an index
      of the background color storage array.
    @param primaryColor The primary color of the bee, tracked as an index of the
      global primary color storage array.
    @param secondaryColor The secondary color of the bee, tracked as an index of
      the global secondary color storage array.
    @param tailPattern The pattern used to generate the bee's tail, tracked as
      an index of the global tail pattern storage array.
    @param tailSegments The number of segments in the bee's tail.
    @param bodyLength The length of the bee's body.
    @param wingColor The color of the bee's wings, tracked as an index of the
      global wing color storage array.
    @param wingLength The length of the bee's wings.
    @param primaryEyeColor The primary color of the bee's eye, tracked as an
      index of the global primary eye color storage array.
    @param secondaryEyeColor The secondary color of the bee's eye, tracked as an
      index of the global secondary eye color storage array.
    @param eyePattern The pattern used to generate the bee's eyes, tracked as an
      index of the global eye pattern storage array.
    @param eyeSegments The number of eyes the bee has.
    @param age The age of the bee in days since the contract was launched.
    @param image The final composited image of the bee.
  */
  struct Bee {
    uint256 backgroundColor;
    uint256 primaryColor;
    uint256 secondaryColor;
    uint256 tailPattern;
    uint256 tailSegments;
    uint256 bodyLength;
    uint256 wingColor;
    uint256 wingLength;
    uint256 primaryEyeColor;
    uint256 secondaryEyeColor;
    uint256 eyePattern;
    uint256 eyeSegments;
    uint256 age;
    string image;

    // Scratchpad variables.
    uint256 tailStart;
    uint256 bodyStart;
    uint256 eyesStart;
    string wingComponent;
  }

  /**
    Construct a new instance of this ERC-721 contract.

    @param _name The name to assign to this item collection contract.
    @param _symbol The ticker symbol of this item collection.
    @param _cap The maximum number of tokens that may be minted.
  */
  constructor (
    string memory _name,
    string memory _symbol,
    uint256 _cap
  ) Tiny721(_name, _symbol, "", _cap) {
    startTime = block.timestamp;

    // Populate the background color array.
    BACKGROUND_COLORS.push(Color({
      value: "rgb(82,183,136)",
      friendlyName: "Mint"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(64,145,108)",
      friendlyName: "Kermit"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(45,106,79)",
      friendlyName: "Toad"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(27,67,50)",
      friendlyName: "Forest"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(8,28,21)",
      friendlyName: "Dark Forest"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(125,125,125)",
      friendlyName: "Gray"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(181,121,155)",
      friendlyName: "Rose"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(93,133,133)",
      friendlyName: "Teal"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(164,45,24)",
      friendlyName: "Blood"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(204,127,133)",
      friendlyName: "Lips"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(168,75,73)",
      friendlyName: "Flesh"
    }));
    BACKGROUND_COLORS.push(Color({
      value: "rgb(124,141,130)",
      friendlyName: "Mold"
    }));

    // Populate the primary color array.
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,123,0)",
      friendlyName: "Pumpkin"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,136,0)",
      friendlyName: "SunnyD"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,149,0)",
      friendlyName: "Tang"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,162,0)",
      friendlyName: "Orange Crush"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,170,0)",
      friendlyName: "Fanta"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,183,0)",
      friendlyName: "Peach"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,195,0)",
      friendlyName: "Honey"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,208,0)",
      friendlyName: "School Bus"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,221,0)",
      friendlyName: "Lemon"
    }));
    PRIMARY_COLORS.push(Color({
      value: "rgb(255,234,0)",
      friendlyName: "Lightning"
    }));

    // Populate the secondary color array.
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,0,0)",
      friendlyName: "Void"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(47,31,31)",
      friendlyName: "Brown"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(47,31,31)",
      friendlyName: "Brown"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(47,31,31)",
      friendlyName: "Brown"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(47,31,31)",
      friendlyName: "Brown"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(47,31,31)",
      friendlyName: "Brown"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(3,4,94)",
      friendlyName: "Navy"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(2,62,138)",
      friendlyName: "Royal"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,119,182)",
      friendlyName: "Glass"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,150,199)",
      friendlyName: "Slurpee"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(0,180,216)",
      friendlyName: "Electric"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(72,202,228)",
      friendlyName: "Glacier"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(144,224,239)",
      friendlyName: "Ice"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(173,232,244)",
      friendlyName: "Cold"
    }));
    SECONDARY_COLORS.push(Color({
      value: "rgb(202,240,248)",
      friendlyName: "Frigid"
    }));

    /// Populate the wing color array.
    WING_COLORS.push(Color({
      value: "rgb(237,242,251)",
      friendlyName: "Powder"
    }));
    WING_COLORS.push(Color({
      value: "rgb(226,234,252)",
      friendlyName: "Ghost"
    }));
    WING_COLORS.push(Color({
      value: "rgb(215,227,252)",
      friendlyName: "Clear"
    }));
    WING_COLORS.push(Color({
      value: "rgb(204,219,253)",
      friendlyName: "Crystal"
    }));
    WING_COLORS.push(Color({
      value: "rgb(193,211,254)",
      friendlyName: "Air"
    }));
    WING_COLORS.push(Color({
      value: "rgb(182,204,254)",
      friendlyName: "Wind"
    }));
    WING_COLORS.push(Color({
      value: "rgb(171,196,255)",
      friendlyName: "Stream"
    }));

    /// Populate the primary eye color array.
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(248,249,250)",
      friendlyName: "Bone"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(233,236,239)",
      friendlyName: "Offwhite"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(222,226,230)",
      friendlyName: "Dandruff"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(206,212,218)",
      friendlyName: "Ash"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(173,181,189)",
      friendlyName: "Death Star"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(108,117,125)",
      friendlyName: "2B Pencil"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(73,80,87)",
      friendlyName: "Goth Tears"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(52,58,64)",
      friendlyName: "Shade"
    }));
    PRIMARY_EYE_COLORS.push(Color({
      value: "rgb(33,37,41)",
      friendlyName: "Coal"
    }));

    /// Populate the secondary eye color array.
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(255,173,173)",
      friendlyName: "Red Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(255,214,165)",
      friendlyName: "Orange Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(253,255,182)",
      friendlyName: "Yellow Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(202,255,191)",
      friendlyName: "Green Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(155,246,255)",
      friendlyName: "Blue Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(160,196,255)",
      friendlyName: "Violet Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(189,178,255)",
      friendlyName: "Purple Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(255,198,255)",
      friendlyName: "Rose Chalk"
    }));
    SECONDARY_EYE_COLORS.push(Color({
      value: "rgb(255,255,252)",
      friendlyName: "White Chalk"
    }));

    // Populate the tail pattern array.
    TAIL_PATTERNS.push(Pattern({
      value: 0,
      friendlyName: "Right"
    }));
    TAIL_PATTERNS.push(Pattern({
      value: 1,
      friendlyName: "Left"
    }));
    TAIL_PATTERNS.push(Pattern({
      value: 2,
      friendlyName: "Band"
    }));

    /// Populate the eye pattern array.
    EYE_PATTERNS.push(Pattern({
      value: 0,
      friendlyName: "Right"
    }));
    EYE_PATTERNS.push(Pattern({
      value: 0,
      friendlyName: "Left"
    }));
  }

  /**
    Retrieve the token's pregenerated pseudorandom value and mix it with a given
    `_index` to keep it pseudorandom on successive calls.

    @param _id The ID of the token to retrieve the pregenerated value for.
    @param _index An index to prevent duplicating the random roll.

    @return A pseudorandom value.
  */
  function _getRandom (
    uint256 _id,
    uint256 _index
  ) private view returns (uint256) {
    return uint256(keccak256(abi.encodePacked(
      mintData[_id],
      _index
    )));
  }

  /**
    Generate an SVG string representing the background of a bee image.

    @param _id The ID of the token to generate the background for.
    @param _bee The bee to modify the background index of.

    @return The item's background component.
  */
  function _generateBackground (
    uint256 _id,
    Bee memory _bee
  ) private view returns (string memory) {

    // Select a random background color.
    uint256 backgroundIndex = _getRandom(_id, 1000) % BACKGROUND_COLORS.length;
    _bee.backgroundColor = backgroundIndex;
    Color memory backgroundColor = BACKGROUND_COLORS[backgroundIndex];

    // Return the generated SVG element.
    string memory background = string(abi.encodePacked(
      "<rect width=\"100%\" height=\"100%\" fill=\"",
      backgroundColor.value,
      "\" />"
    ));
    return background;
  }

  /**
    Generate an SVG string representing the tail of a bee image.

    @param _id The ID of the token to generate the tail for.
    @param _bee The bee to modify the background index of.
    @param _tailPatternScheme The index of the pattern being used to determine
      the tail pattern.
    @param _tailSegments The number of segments in the tail being drawn.
    @param _primaryColor The primary color value for filling in the tail.

    @return The item's tail component.
  */
  function _generateTail (
    uint256 _id,
    Bee memory _bee,
    uint256 _tailPatternScheme,
    uint256 _tailSegments,
    uint256 _primaryColor
  ) private view returns (string memory) {

    // Select a random secondary bee color.
    uint256 colorIndex = _getRandom(_id, 2000) % SECONDARY_COLORS.length;
    _bee.secondaryColor = colorIndex;
    Color memory secondaryColor = SECONDARY_COLORS[colorIndex];

    // Generate the tail (if there is one).
    string memory tail;
    for (uint256 i = 0; i < _tailSegments; i++) {

      // Generate the right-handed pattern.
      if (_tailPatternScheme == 0) {
        tail = string(abi.encodePacked(
          tail,
          "<rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          secondaryColor.value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * 1 + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          PRIMARY_COLORS[_primaryColor].value,
          "\" />"
        ));

      // Generate the left-handed pattern.
      } else if (_tailPatternScheme == 1) {
        tail = string(abi.encodePacked(
          tail,
          "<rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          PRIMARY_COLORS[_primaryColor].value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * 1 + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          secondaryColor.value,
          "\" />"
        ));

      // Generate the banded pattern.
      } else if (_tailPatternScheme == 2) {
        tail = string(abi.encodePacked(
          tail,
          "<rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * (i * 3)).toString(),
          "%\" y=\"50%\" fill=\"",
          PRIMARY_COLORS[_primaryColor].value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * 1 + 3 * (i * 3)).toString(),
          "%\" y=\"50%\" fill=\"",
          secondaryColor.value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.tailStart + 3 * 2 + 3 * (i * 3)).toString(),
          "%\" y=\"50%\" fill=\"",
          PRIMARY_COLORS[_primaryColor].value,
          "\" />"
        ));
      }
    }
    return tail;
  }

  /**
    Generate an SVG string representing the body of a bee image.

    @param _bee The bee to generate the body for.
    @param _bodyLength The length of the bee body to draw.
    @param _primaryColor The primary color to fill in the bee with.

    @return The item's body component.
  */
  function _generateBody (
    Bee memory _bee,
    uint256 _bodyLength,
    string memory _primaryColor
  ) private pure returns (string memory) {

    // Generate the body.
    string memory body;
    for (uint256 i = 0; i < _bodyLength; i++) {
      body = string(abi.encodePacked(
        body,
        "<rect width=\"3%\" height=\"3%\" x=\"",
        (_bee.bodyStart + 3 * i).toString(),
        "%\" y=\"50%\" fill=\"",
        _primaryColor,
        "\" />"
      ));
    }
    return body;
  }

  /**
    Generate an SVG string representing the wings of a bee image.

    @param _id The ID of the token to generate the wings for.
    @param _bee The bee to modify the background index of.
    @param _startingX The starting x-position to begin drawing the wings at;
      this is provided in order to center the bee in the generated image.
    @param _bodyLength The length of the body to place wings atop.

    @return The item's wing component.
  */
  function _generateWings (
    uint256 _id,
    Bee memory _bee,
    uint256 _startingX,
    uint256 _bodyLength
  ) private view returns (string memory) {

    // Select a random wing color.
    uint256 colorIndex = _getRandom(_id, 3000) % WING_COLORS.length;
    _bee.wingColor = colorIndex;
    Color memory wingColor = WING_COLORS[colorIndex];

    // Select a random wing height.
    uint256[3] memory WING_HEIGHTS = [
      uint256(1),
      uint256(1),
      uint256(2)
    ];
    uint256 wingHeight = WING_HEIGHTS[
      _getRandom(_id, 3001) % WING_HEIGHTS.length
    ];
    _bee.wingLength = wingHeight;

    // Generate two random wings on the body.
    uint256 firstWingLength = (_getRandom(_id, 3002) % (_bodyLength - 2));
    uint256 firstWing = _startingX + 3 * firstWingLength;
    uint256 secondWing = firstWing + 3 * 2
      + 3 * (_getRandom(_id, 3003) % (_bodyLength - (firstWingLength + 2)));
    string memory wings;
    for (uint256 i = 0; i < wingHeight; i++) {
      wings = string(abi.encodePacked(
        wings,
        "<rect width=\"3%\" height=\"3%\" x=\"",
        (firstWing).toString(),
        "%\" y=\"",
        (47 - 3 * i).toString(),
        "%\" fill=\"",
        wingColor.value,
        "\" /><rect width=\"3%\" height=\"3%\" x=\"",
        (secondWing).toString(),
        "%\" y=\"",
        (47 - 3 * i).toString(),
        "%\" fill=\"",
        wingColor.value,
        "\" />"
      ));
    }
    return wings;
  }

  /**
    Generate an SVG string representing the eyes of a bee image.

    @param _id The ID of the token to generate the eyes for.
    @param _bee The bee to modify the background index of.
    @param _eyePatternScheme The index of the pattern being used to determine
      the eye drawing.
    @param _eyeSegments The number of eye pattern segments to draw.

    @return The item's eyes component.
  */
  function _generateEyes (
    uint256 _id,
    Bee memory _bee,
    uint256 _eyePatternScheme,
    uint256 _eyeSegments
  ) private view returns (string memory) {

    // Select a random primary eye color.
    uint256 primaryIndex = _getRandom(_id, 4000) % PRIMARY_EYE_COLORS.length;
    _bee.primaryEyeColor = primaryIndex;
    Color memory primaryColor = PRIMARY_EYE_COLORS[primaryIndex];

    // Select a random secondary eye color.
    uint256 secondIndex = _getRandom(_id, 4001) % SECONDARY_EYE_COLORS.length;
    _bee.secondaryEyeColor = secondIndex;
    Color memory secondaryColor = SECONDARY_EYE_COLORS[secondIndex];

    // Generate the eyes.
    string memory eyes;
    for (uint256 i = 0; i < _eyeSegments; i++) {

      // Generate the right-handed pattern.
      if (_eyePatternScheme == 0) {
        eyes = string(abi.encodePacked(
          eyes,
          "<rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.eyesStart + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          secondaryColor.value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.eyesStart + 3 + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          primaryColor.value,
          "\" />"
        ));

      // Generate the left-handed pattern.
      } else if (_eyePatternScheme == 1) {
        eyes = string(abi.encodePacked(
          eyes,
          "<rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.eyesStart + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          primaryColor.value,
          "\" /><rect width=\"3%\" height=\"3%\" x=\"",
          (_bee.eyesStart + 3 + 3 * (i * 2)).toString(),
          "%\" y=\"50%\" fill=\"",
          secondaryColor.value,
          "\" />"
        ));
      }
    }
    return eyes;
  }

  /**
    A helper function to generate the age of a particular bee. This is required
    in order to avoid a stack-too-deep error.

    @param _id The ID of the bee to get the age of.

    @return The age of the bee in terms of "which day since launch" was it
      minted on.
  */
  function _getAge (
    uint256 _id
  ) private view returns (uint256) {
    return 1 + ((mintTime[_id] - startTime) / (24 * 60 * 60));
  }

  /**
    Generate an SVG string representing the bee image and collect its metadata.

    @param _id The ID of the token to generate the bee for.
    @param _primaryColorIndex The index of the primary color.
    @param _tailPatternScheme The index of the pattern being used to determine
      the tail pattern.
    @param _tailSegments The number of segments in the tail being drawn.
    @param _eyePatternScheme The index of the pattern being used to determine
      the eye drawing.
    @param _eyeSegments The number of eye pattern segments to draw.

    @return The item's bee image.
  */
  function _generateBee (
    uint256 _id,
    uint256 _primaryColorIndex,
    uint256 _tailPatternScheme,
    uint256 _tailSegments,
    uint256 _eyePatternScheme,
    uint256 _eyeSegments
  ) private view returns (Bee memory) {

    // Perform pattern-matching to determine the length of the bee.
    uint256 tailLength = 0;
    if (_tailPatternScheme == 0 || _tailPatternScheme == 1) {
      tailLength += 2 * _tailSegments;
    } else {
      tailLength += 3 * _tailSegments;
    }
    uint256 bodyLength = 4 + (_getRandom(_id, 5) % 4);
    uint256 eyeLength = 0;
    if (_eyePatternScheme == 0 || _eyePatternScheme == 1) {
      eyeLength += 2 * _eyeSegments;
    }

    /*
      Prepare an output bee. Due to stack depth limitations, most of the fields
      in this bee must be set by passing it into the various `_generate` methods
      which will modify its internal state.
    */
    Bee memory outputBee = Bee({
      backgroundColor: 0, // This field is set by `_generateBackground`.
      primaryColor: _primaryColorIndex,
      secondaryColor: 0, // This field is set by `_generateTail`.
      tailPattern: _tailPatternScheme,
      tailSegments: _tailSegments,
      bodyLength: bodyLength,
      wingColor: 0, // This field is set by `_generateWings`.
      wingLength: 0, // This field is set by `_generateWings`.
      primaryEyeColor: 0, // This field is set by `_generateEyes`.
      secondaryEyeColor: 0, // This field is set by `_generateEyes`.
      eyePattern: _eyePatternScheme,
      eyeSegments: _eyeSegments,
      age: _getAge(_id),
      image: "",

      // The scratch-pad portions of the bee struct for data operations.
      tailStart: 47 - 3 * ((tailLength + bodyLength + eyeLength) / 2),
      bodyStart: 47 - 3 * ((tailLength + bodyLength + eyeLength) / 2)
        + 3 * tailLength,
      eyesStart: 47 - 3 * ((tailLength + bodyLength + eyeLength) / 2)
        + 3 * tailLength + 3 * bodyLength,
      wingComponent: ""
    });

    outputBee.wingComponent = _generateWings(
      _id,
      outputBee,
      outputBee.bodyStart,
      bodyLength
    );

    // Glue all of this madness together to create the bee SVG.
    outputBee.image = string(abi.encodePacked(
      "<svg version=\"1.1\" width=\"1000\" height=\"1000\" ",
      "viewBox=\"0 0 1000 1000\" stroke-linecap=\"round\" ",
      "xmlns=\"http://www.w3.org/2000/svg\" ",
      "xmlns:xlink=\"http://www.w3.org/1999/xlink\">",
      _generateBackground(
        _id,
        outputBee
      ),
      _generateTail(
        _id,
        outputBee,
        _tailPatternScheme,
        _tailSegments,
        _primaryColorIndex
      ),
      _generateBody(
        outputBee,
        bodyLength,
        PRIMARY_COLORS[_primaryColorIndex].value
      ),
      outputBee.wingComponent,
      _generateEyes(
        _id,
        outputBee,
        _eyePatternScheme,
        _eyeSegments
      ),
      "</svg>"
    ));

    // Return a Bee with its image and data.
    return outputBee;
  }

  /**
    A private helper function to return a formatted attribute string for display
    on NFT marketplaces.

    @param _traitName The name of the trait to construct an object for.
    @param _value The value of the trait.
    @param _isNumeric Whether or not the trait is numeric.

    @return The formatted attribute object string.
  */
  function _attribute (
    string memory _traitName,
    string memory _value,
    bool _isNumeric
  ) private pure returns (string memory) {

    // If the attribute is not numeric, we must wrap it in quotes.
    string memory wrappedValue = _value;
    if (!_isNumeric) {
      wrappedValue = string(abi.encodePacked(
        "\"",
        _value,
        "\""
      ));
    }

    // Return the formatted attribute.
    return string(abi.encodePacked(
      "{ \"trait_type\": \"",
      _traitName,
      "\", \"value\": ",
      wrappedValue,
      " }"
    ));
  }

  /**
    To avoid a stack-too-deep error, we must generate part of the attributes
    array for a given bee using this function.

    @param _bee The bee to generate partial attributes for.

    @return Part of the attributes array for a bee.
  */
  function _generatePartialAttributes (
    Bee memory _bee
  ) private view returns (string memory) {
    return string(abi.encodePacked(
      "[",
      _attribute(
        "Background",
        BACKGROUND_COLORS[_bee.backgroundColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Body Color",
        PRIMARY_COLORS[_bee.primaryColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Tail Color",
        SECONDARY_COLORS[_bee.secondaryColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Tail Pattern",
        TAIL_PATTERNS[_bee.tailPattern].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Tail Segments",
        (_bee.tailSegments).toString(),
        true
      ),
      ","
    ));
  }

  /**
    Generate an array of metadata attributes for a given bee.

    @param _bee The bee to generate attributes for.

    @return The array of attributes as a string.
  */
  function _generateAttributes (
    Bee memory _bee
  ) private view returns (string memory) {
    return string(abi.encodePacked(
      _generatePartialAttributes(_bee),
      _attribute(
        "Body Length",
        (_bee.bodyLength).toString(),
        true
      ),
      ",",
      _attribute(
        "Wing Color",
        WING_COLORS[_bee.wingColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Wing Length",
        (_bee.wingLength).toString(),
        true
      ),
      ",",
      _attribute(
        "Eye Color",
        PRIMARY_EYE_COLORS[_bee.primaryEyeColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Iris Color",
        SECONDARY_EYE_COLORS[_bee.secondaryEyeColor].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Eye Pattern",
        EYE_PATTERNS[_bee.eyePattern].friendlyName,
        false
      ),
      ",",
      _attribute(
        "Eye Segments",
        (_bee.eyeSegments).toString(),
        true
      ),
      ",",
      _attribute(
        "Age",
        (_bee.age).toString(),
        true
      ),
      "]"
    ));
  }

  /**
    Directly return the metadata of the token with the specified `_id` as a
    packed base64-encoded URI.

    @param _id The ID of the token to retrive a metadata URI for.

    @return The metadata of the token with the ID of `_id` as a base64 URI.
  */
  function tokenURI (
    uint256 _id
  ) external view virtual override returns (string memory) {
    if (!_exists(_id)) { revert URIQueryForNonexistentToken(); }

    // Select a random primary bee color.
    uint256 colorIndex = _getRandom(_id, 0) % PRIMARY_COLORS.length;

    // Select a random tiling pattern and length for the tail.
    uint256 tailPatternScheme = _getRandom(_id, 1) % TAIL_PATTERNS.length;
    uint256 tailSegments = 1 + (_getRandom(_id, 2) % 4);

    // Select a random tiling pattern and length for the eyes.
    uint256 eyePatternScheme = _getRandom(_id, 3) % EYE_PATTERNS.length;
    uint256 eyeSegments = 2;

    // Generate the full SVG string of the token's image.
    Bee memory bee = _generateBee(
      _id,
      colorIndex,
      tailPatternScheme,
      tailSegments,
      eyePatternScheme,
      eyeSegments
    );

    // Encode the SVG into a base64 data URI.
    string memory encodedImage = string(abi.encodePacked(
      "data:image/svg+xml;base64,",
      Base64.encode(
        bytes(string(abi.encodePacked(bee.image)))
      )
    ));

    // Create the attributes array from friendly details.
    string memory attributes = _generateAttributes(bee);

    // Return the base64-encoded packed metadata.
    return string(
      abi.encodePacked(
        "data:application/json;base64,",
        Base64.encode(
          bytes(
            abi.encodePacked(
              "{ \"name\": \"",
              "Beelinez ",
              (_id).toString(),
              "\", \"description\": \"bzz bzz\", ",
              "\"attributes\": ",
              attributes,
              ", \"image\": \"",
              encodedImage,
              "\"}"
            )
          )
        )
      )
    );
  }

  /**
    This function allows permissioned minters of this contract to mint one or
    more tokens dictated by the `_amount` parameter. Any minted tokens are sent
    to the `_recipient` address.

    Note that tokens are always minted sequentially starting at one. That is,
    the list of token IDs is always increasing and looks like [ 1, 2, 3... ].
    Also note that per our use cases the intended recipient of these minted
    items will always be externally-owned accounts and not other contracts. As a
    result there is no safety check on whether or not the mint destination can
    actually correctly handle an ERC-721 token.

    @param _recipient The recipient of the tokens being minted.
    @param _amount The amount of tokens to mint.
  */
  function mint_Qgo (
    address _recipient,
    uint256 _amount
  ) public override onlyAdmin {

    // Store a piece of pseudorandom data tied to each item that will be minted.
    uint256 startTokenId = nextId;
    unchecked {
      uint256 updatedIndex = startTokenId;
      for (uint256 i; i < _amount; i++) {
        mintData[updatedIndex] = uint256(keccak256(abi.encodePacked(
          _msgSender(),
          _recipient,
          _amount,
          updatedIndex,
          block.timestamp,
          block.difficulty
        )));
        mintTime[updatedIndex] = block.timestamp;
        updatedIndex++;
      }
    }

    // Actually mint the items.
    super.mint_Qgo(_recipient, _amount);
  }
}

File 2 of 12 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 3 of 12 : Tiny721.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.11;

import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/*
  It saves bytecode to revert on custom errors instead of using require
  statements. We are just declaring these errors for reverting with upon various
  conditions later in this contract. Thanks, Chiru Labs!
*/
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error CapExceeded();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error NotAnAdmin();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferIsLockedGlobally();
error TransferIsLocked();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
  @title A minimalistic, gas-efficient ERC-721 implementation forked from the
    `Super721` ERC-721 implementation used by SuperFarm.
  @author Tim Clancy
  @author 0xthrpw
  @author Qazawat Zirak
  @author Rostislav Khlebnikov

  Compared to the original `Super721` implementation that this contract forked
  from, this is a very pared-down contract that includes simple delegated
  minting and transfer locks.

  This contract includes the gas efficiency techniques graciously shared with
  the world in the specific ERC-721 implementation by Chiru Labs that is being
  called "ERC-721A" (https://github.com/chiru-labs/ERC721A). We have validated
  this contract against their test cases.

  February 8th, 2022.
*/
contract Tiny721 is
  ERC165, IERC721, IERC721Metadata, Ownable
{
  using Address for address;
  using Strings for uint256;

  /// The name of this ERC-721 contract.
  string public name;

  /// The symbol associated with this ERC-721 contract.
  string public symbol;

  /**
    The metadata URI to which token IDs are appended for generating `tokenUri`
    results. The URI will always naively slap a decimal token ID to the end of
    this provided URI.
  */
  string public metadataUri;

  /// The maximum number of this NFT that may be minted.
  uint256 public immutable cap;

  /**
    The ID of the next token that will be minted. Our range of token IDs begins
    at one in order to avoid downstream errors with uninitialized mappings.
  */
  uint256 internal nextId = 1;

  /**
    A mapping from token IDs to their holding addresses. If the holding address
    is the zero address, that does not necessarily mean that the token is
    unowned; the ID space of owned tokens is gappy. The `_ownershipOf` function
    handles these gaps for determining the appropriate owners.
  */
  mapping ( uint256 => address ) private owners;

  /// A mapping from an address to the balance of tokens held by that address.
  mapping ( address => uint256 ) private balances;

  /**
    A mapping from each token ID to an approved address for that specific ID. An
    approved address is allowed to transfer the token with the specified ID on
    behalf of that token's owner.
  */
  mapping ( uint256 => address ) private tokenApprovals;

  /**
    A mapping from each address to per-address operator approvals. Operators are
    those addresses that have been approved to transfer tokens of any ID on
    behalf of the approver.
  */
  mapping ( address => mapping( address => bool )) private operatorApprovals;

  /// A mapping to track administrative callers who have been set by the owner.
  mapping ( address => bool ) private administrators;

  /// Whether or not transfer is locked for all items.
  bool public allTransfersLocked;

  /// Whether or not the transfer of a particular token ID is locked.
  mapping ( uint256 => bool ) public transferLocks;

  /**
    A modifier to see if a caller is an approved administrator.
  */
  modifier onlyAdmin () {
    if (_msgSender() != owner() && !administrators[_msgSender()]) {
      revert NotAnAdmin();
    }
    _;
  }

  /**
    Construct a new instance of this ERC-721 contract.

    @param _name The name to assign to this item collection contract.
    @param _symbol The ticker symbol of this item collection.
    @param _metadataURI The metadata URI to perform later token ID substitution
      with.
    @param _cap The maximum number of tokens that may be minted.
  */
  constructor (
    string memory _name,
    string memory _symbol,
    string memory _metadataURI,
    uint256 _cap
  ) {
    name = _name;
    symbol = _symbol;
    metadataUri = _metadataURI;
    cap = _cap;
  }

  /**
    Flag this contract as supporting the ERC-721 standard, the ERC-721 metadata
    extension, and the enumerable ERC-721 extension.

    @param _interfaceId The identifier, as defined by ERC-165, of the contract
      interface to support.

    @return Whether or not the interface being tested is supported.
  */
  function supportsInterface (
    bytes4 _interfaceId
  ) public view virtual override(ERC165, IERC165) returns (bool) {
    return (_interfaceId == type(IERC721).interfaceId)
      || (_interfaceId == type(IERC721Metadata).interfaceId)
      || (super.supportsInterface(_interfaceId));
  }

  /**
    Return the total number of this token that have ever been minted.

    @return The total supply of minted tokens.
  */
  function totalSupply () public view returns (uint256) {
    return nextId - 1;
  }

  /**
    Retrieve the number of distinct token IDs held by `_owner`.

    @param _owner The address to retrieve a count of held tokens for.

    @return The number of tokens held by `_owner`.
  */
  function balanceOf (
    address _owner
  ) external view override returns (uint256) {
    return balances[_owner];
  }

  /**
    Just as Chiru Labs does, we maintain a sparse list of token owners; for
    example if Alice owns tokens with ID #1 through #3 and Bob owns tokens #4
    through #5, the ownership list would look like:

    [ 1: Alice, 2: 0x0, 3: 0x0, 4: Bob, 5: 0x0, ... ].

    This function is able to consume that sparse list for determining an actual
    owner. Chiru Labs says that the gas spent here starts off proportional to
    the maximum mint batch size and gradually moves to O(1) as tokens get
    transferred.

    @param _id The ID of the token which we are finding the owner for.

    @return owner The owner of the token with ID of `_id`.
  */
  function _ownershipOf (
    uint256 _id
  ) private view returns (address owner) {
    if (!_exists(_id)) { revert OwnerQueryForNonexistentToken(); }
    unchecked {
      for (uint256 curr = _id;; curr--) {
        owner = owners[curr];
        if (owner != address(0)) {
          return owner;
        }
      }
    }
  }

  /**
    Return the address that holds a particular token ID.

    @param _id The token ID to check for the holding address of.

    @return The address that holds the token with ID of `_id`.
  */
  function ownerOf (
    uint256 _id
  ) external view override returns (address) {
    return _ownershipOf(_id);
  }

  /**
    Return whether a particular token ID has been minted or not.

    @param _id The ID of a specific token to check for existence.

    @return Whether or not the token of ID `_id` exists.
  */
  function _exists (
    uint256 _id
  ) public view returns (bool) {
    return _id > 0 && _id < nextId;
  }

  /**
    Return the address approved to perform transfers on behalf of the owner of
    token `_id`. If no address is approved, this returns the zero address.

    @param _id The specific token ID to check for an approved address.

    @return The address that may operate on token `_id` on its owner's behalf.
  */
  function getApproved (
    uint256 _id
  ) public view override returns (address) {
    if (!_exists(_id)) { revert ApprovalQueryForNonexistentToken(); }
    return tokenApprovals[_id];
  }

  /**
    This function returns true if `_operator` is approved to transfer items
    owned by `_owner`.

    @param _owner The owner of items to check for transfer ability.
    @param _operator The potential transferrer of `_owner`'s items.

    @return Whether `_operator` may transfer items owned by `_owner`.
  */
  function isApprovedForAll (
    address _owner,
    address _operator
  ) public view virtual override returns (bool) {
    return operatorApprovals[_owner][_operator];
  }

  /**
    Return the token URI of the token with the specified `_id`. The token URI is
    dynamically constructed from this contract's `metadataUri`.

    @param _id The ID of the token to retrive a metadata URI for.

    @return The metadata URI of the token with the ID of `_id`.
  */
  function tokenURI (
    uint256 _id
  ) external view virtual override returns (string memory) {
    if (!_exists(_id)) { revert URIQueryForNonexistentToken(); }
    return bytes(metadataUri).length != 0
      ? string(abi.encodePacked(metadataUri, _id.toString()))
      : '';
  }

  /**
    This private helper function updates the token approval address of the token
    with ID of `_id` to the address `_to` and emits an event that the address
    `_owner` triggered this approval. This function emits an {Approval} event.

    @param _owner The owner of the token with the ID of `_id`.
    @param _to The address that is being granted approval to the token `_id`.
    @param _id The ID of the token that is having its approval granted.
  */
  function _approve (
    address _owner,
    address _to,
    uint256 _id
  ) private {
    tokenApprovals[_id] = _to;
    emit Approval(_owner, _to, _id);
  }

  /**
    Allow the owner of a particular token ID, or an approved operator of the
    owner, to set the approved address of a particular token ID.

    @param _approved The address being approved to transfer the token of ID `_id`.
    @param _id The token ID with its approved address being set to `_approved`.
  */
  function approve (
    address _approved,
    uint256 _id
  ) external override {
    address owner = _ownershipOf(_id);
    if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
      revert ApprovalCallerNotOwnerNorApproved();
    }
    _approve(owner, _approved, _id);
  }

  /**
    Enable or disable approval for a third party `_operator` address to manage
    all of the caller's tokens.

    @param _operator The address to grant management rights over all of the
      caller's tokens.
    @param _approved The status of the `_operator`'s approval for the caller.
  */
  function setApprovalForAll (
    address _operator,
    bool _approved
  ) external override {
    operatorApprovals[_msgSender()][_operator] = _approved;
    emit ApprovalForAll(_msgSender(), _operator, _approved);
  }

  /**
    This private helper function handles the portion of transferring an ERC-721
    token that is common to both the unsafe `transferFrom` and the
    `safeTransferFrom` variants.

    This function does not support burning tokens and emits a {Transfer} event.

    @param _from The address to transfer the token with ID of `_id` from.
    @param _to The address to transfer the token to.
    @param _id The ID of the token to transfer.
  */
  function _transfer (
    address _from,
    address _to,
    uint256 _id
  ) private {
    address previousOwner = _ownershipOf(_id);
    bool isApprovedOrOwner = (_msgSender() == previousOwner)
      || (isApprovedForAll(previousOwner, _msgSender()))
      || (getApproved(_id) == _msgSender());

    if (!isApprovedOrOwner) { revert TransferCallerNotOwnerNorApproved(); }
    if (previousOwner != _from) { revert TransferFromIncorrectOwner(); }
    if (_to == address(0)) { revert TransferToZeroAddress(); }
    if (allTransfersLocked) { revert TransferIsLockedGlobally(); }
    if (transferLocks[_id]) { revert TransferIsLocked(); }

    // Clear any token approval set by the previous owner.
    _approve(previousOwner, address(0), _id);

    /*
      Another Chiru Labs tip: we may safely use unchecked math here given the
      sender balance check and the limited range of our expected token ID space.
    */
    unchecked {
      balances[_from] -= 1;
      balances[_to] += 1;
      owners[_id] = _to;

      /*
        The way the gappy token ownership list is setup, we can tell that
        `_from` owns the next token ID if it has a zero address owner. This also
        happens to be what limits an efficient burn implementation given the
        current setup of this contract. We need to update this spot in the list
        to mark `_from`'s ownership of this portion of the token range.
      */
      uint256 nextTokenId = _id + 1;
      if (owners[nextTokenId] == address(0) && _exists(nextTokenId)) {
        owners[nextTokenId] = previousOwner;
      }
    }

    // Emit the transfer event.
    emit Transfer(_from, _to, _id);
  }

  /**
    This function performs an unsafe transfer of token ID `_id` from address
    `_from` to address `_to`. The transfer is considered unsafe because it does
    not validate that the receiver can actually take proper receipt of an
    ERC-721 token.

    @param _from The address to transfer the token from.
    @param _to The address to transfer the token to.
    @param _id The ID of the token being transferred.
  */
  function transferFrom (
    address _from,
    address _to,
    uint256 _id
  ) external virtual override {
    _transfer(_from, _to, _id);
  }

  /**
    This is an private helper function used to, if the transfer destination is
    found to be a smart contract, check to see if that contract reports itself
    as safely handling ERC-721 tokens by returning the magical value from its
    `onERC721Received` function.

    @param _from The address of the previous owner of token `_id`.
    @param _to The destination address that will receive the token.
    @param _id The ID of the token being transferred.
    @param _data Optional data to send along with the transfer check.

    @return Whether or not the destination contract reports itself as being able
      to handle ERC-721 tokens.
  */
  function _checkOnERC721Received(
    address _from,
    address _to,
    uint256 _id,
    bytes memory _data
  ) private returns (bool) {
    if (_to.isContract()) {
      try IERC721Receiver(_to).onERC721Received(_msgSender(), _from, _id, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(_to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();
        else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
    This function performs transfer of token ID `_id` from address `_from` to
    address `_to`. This function validates that the receiving address reports
    itself as being able to properly handle an ERC-721 token.

    @param _from The address to transfer the token from.
    @param _to The address to transfer the token to.
    @param _id The ID of the token being transferred.
  */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _id
  ) public virtual override {
    safeTransferFrom(_from, _to, _id, '');
  }

  /**
    This function performs transfer of token ID `_id` from address `_from` to
    address `_to`. This function validates that the receiving address reports
    itself as being able to properly handle an ERC-721 token. This variant also
    sends `_data` along with the transfer check.

    @param _from The address to transfer the token from.
    @param _to The address to transfer the token to.
    @param _id The ID of the token being transferred.
    @param _data Optional data to send along with the transfer check.
  */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _id,
    bytes memory _data
  ) public override {
    _transfer(_from, _to, _id);
    if (!_checkOnERC721Received(_from, _to, _id, _data)) {
      revert TransferToNonERC721ReceiverImplementer();
    }
  }

  /**
    This function allows permissioned minters of this contract to mint one or
    more tokens dictated by the `_amount` parameter. Any minted tokens are sent
    to the `_recipient` address.

    Note that tokens are always minted sequentially starting at one. That is,
    the list of token IDs is always increasing and looks like [ 1, 2, 3... ].
    Also note that per our use cases the intended recipient of these minted
    items will always be externally-owned accounts and not other contracts. As a
    result there is no safety check on whether or not the mint destination can
    actually correctly handle an ERC-721 token.

    @param _recipient The recipient of the tokens being minted.
    @param _amount The amount of tokens to mint.
  */
  function mint_Qgo (
    address _recipient,
    uint256 _amount
  ) public virtual onlyAdmin {
    if (_recipient == address(0)) { revert MintToZeroAddress(); }
    if (_amount == 0) { revert MintZeroQuantity(); }
    if (nextId - 1 + _amount > cap) { revert CapExceeded(); }

    /**
      Inspired by the Chiru Labs implementation, we use unchecked math here.
      Only enormous minting counts that are unrealistic for our purposes would
      cause an overflow.
    */
    uint256 startTokenId = nextId;
    unchecked {
      balances[_recipient] += _amount;
      owners[startTokenId] = _recipient;

      uint256 updatedIndex = startTokenId;
      for (uint256 i; i < _amount; i++) {
        emit Transfer(address(0), _recipient, updatedIndex);
        updatedIndex++;
      }
      nextId = updatedIndex;
    }
  }

  /**
    This function allows the original owner of the contract to add or remove
    other addresses as administrators. Administrators may perform mints and may
    lock token transfers.

    @param _newAdmin The new admin to update permissions for.
    @param _isAdmin Whether or not the new admin should be an admin.
  */
  function setAdmin (
    address _newAdmin,
    bool _isAdmin
  ) external onlyOwner {
    administrators[_newAdmin] = _isAdmin;
  }

  /**
    Allow the item collection owner to update the metadata URI of this
    collection.

    @param _uri The new URI to update to.
  */
  function setURI (
    string calldata _uri
  ) external virtual onlyOwner {
    metadataUri = _uri;
  }

  /**
    This function allows the owner to lock the transfer of all token IDs. This
    is designed to prevent whitelisted presale users from using the secondary
    market to undercut the auction before the sale has ended.

    @param _locked The status of the lock; true to lock, false to unlock.
  */
  function lockAllTransfers (
    bool _locked
  ) external onlyOwner {
    allTransfersLocked = _locked;
  }

  /**
    This function allows an administrative caller to lock the transfer of
    particular token IDs. This is designed for a non-escrow staking contract
    that comes later to lock a user's NFT while still letting them keep it in
    their wallet.

    @param _id The ID of the token to lock.
    @param _locked The status of the lock; true to lock, false to unlock.
  */
  function lockTransfer (
    uint256 _id,
    bool _locked
  ) external onlyAdmin {
    transferLocks[_id] = _locked;
  }
}

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAnAdmin","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferIsLocked","type":"error"},{"inputs":[],"name":"TransferIsLockedGlobally","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"_exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allTransfersLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_locked","type":"bool"}],"name":"lockAllTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_locked","type":"bool"}],"name":"lockTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint_Qgo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"},{"internalType":"bool","name":"_isAdmin","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferLocks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260016004553480156200001657600080fd5b50604051620070803803806200708083398101604081905262000039916200347c565b828260405180602001604052806000815250836200006662000060620032b560201b60201c565b620032b9565b83516200007b90600190602087019062003309565b5082516200009190600290602086019062003309565b508151620000a790600390602085019062003309565b5060809081524260a052604080519182018152600f8282019081526e7267622838322c3138332c3133362960881b6060840152825280518082019091526004815263135a5b9d60e21b60208281019190915280830191909152600e805460018101825560009190915282518051939650600290910260008051602062006f60833981519152019450620001409350849291019062003309565b5060208281015180516200015b926001850192019062003309565b505060408051608081018252600f8183019081526e7267622836342c3134352c3130382960881b606083015281528151808301909252600682526512d95c9b5a5d60d21b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620001ee9284929091019062003309565b50602082810151805162000209926001850192019062003309565b505060408051608081018252600e8183018181526d7267622834352c3130362c37392960901b6060840152825282518084019093526004835263151bd85960e21b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620002979284929091019062003309565b506020828101518051620002b2926001850192019062003309565b505060408051608081018252600d8183019081526c7267622832372c36372c35302960981b6060830152815281518083019092526006825265119bdc995cdd60d21b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620003439284929091019062003309565b5060208281015180516200035e926001850192019062003309565b505060408051608081018252600c8183019081526b72676228382c32382c32312960a01b606083015281528151808301909252600b82526a11185c9ac8119bdc995cdd60aa1b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620003f39284929091019062003309565b5060208281015180516200040e926001850192019062003309565b50506040805160808101825260108183019081526f726762283132352c3132352c3132352960801b60608301528152815180830190925260048252634772617960e01b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620004a09284929091019062003309565b506020828101518051620004bb926001850192019062003309565b50506040805160808101825260108183019081526f726762283138312c3132312c3135352960801b6060830152815281518083019092526004825263526f736560e01b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f6083398151915201926200054d9284929091019062003309565b50602082810151805162000568926001850192019062003309565b505060408051608081018252600f8183019081526e7267622839332c3133332c3133332960881b60608301528152815180830190925260048252631519585b60e21b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620005f99284929091019062003309565b50602082810151805162000614926001850192019062003309565b505060408051608081018252600e8183018181526d726762283136342c34352c32342960901b6060840152825282518084019093526005835264109b1bdbd960da1b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620006a39284929091019062003309565b506020828101518051620006be926001850192019062003309565b50506040805160808101825260108183019081526f726762283230342c3132372c3133332960801b60608301528152815180830190925260048252634c69707360e01b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620007509284929091019062003309565b5060208281015180516200076b926001850192019062003309565b505060408051608081018252600e8183018181526d726762283136382c37352c37332960901b606084015282528251808401909352600583526408cd8cae6d60db1b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620007fa9284929091019062003309565b50602082810151805162000815926001850192019062003309565b50506040805160808101825260108183019081526f726762283132342c3134312c3133302960801b6060830152815281518083019092526004825263135bdb1960e21b60208381019190915280820192909252600e805460018101825560009190915281518051929450600290910260008051602062006f608339815191520192620008a79284929091019062003309565b506020828101518051620008c2926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3132332c302960901b6060830152815281518083019092526007825266283ab6b835b4b760c91b60208381019190915280820192909252600f8054600181018255600091909152815180519294506002909102600080516020620070608339815191520192620009559284929091019062003309565b50602082810151805162000970926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3133362c302960901b606083015281528151808301909252600682526514dd5b9b9e5160d21b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000a029284929091019062003309565b50602082810151805162000a1d926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3134392c302960901b606083015281528151808301909252600482526354616e6760e01b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000aad9284929091019062003309565b50602082810151805162000ac8926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3136322c302960901b606083015281528151808301909252600c82526b09ee4c2dcceca4086e4eae6d60a31b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000b609284929091019062003309565b50602082810151805162000b7b926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3137302c302960901b606083015281528151808301909252600582526446616e746160d81b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000c0c9284929091019062003309565b50602082810151805162000c27926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3138332c302960901b60608301528152815180830190925260058252640a0cac2c6d60db1b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000cb89284929091019062003309565b50602082810151805162000cd3926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3139352c302960901b6060830152815281518083019092526005825264486f6e657960d81b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000d649284929091019062003309565b50602082810151805162000d7f926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3230382c302960901b606083015281528151808301909252600a8252695363686f6f6c2042757360b01b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000e159284929091019062003309565b50602082810151805162000e30926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3232312c302960901b60608301528152815180830190925260058252642632b6b7b760d91b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000ec19284929091019062003309565b50602082810151805162000edc926001850192019062003309565b505060408051608081018252600e8183019081526d726762283235352c3233342c302960901b60608301528152815180830190925260098252684c696768746e696e6760b81b60208381019190915280820192909252600f805460018101825560009190915281518051929450600290910260008051602062007060833981519152019262000f719284929091019062003309565b50602082810151805162000f8c926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620010189284929091019062003309565b50602082810151805162001033926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620010bf9284929091019062003309565b506020828101518051620010da926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620011669284929091019062003309565b50602082810151805162001181926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b60208381019190915280820192909252601080546001810182556000919091528151805192945060029091026000805160206200704083398151915201926200120d9284929091019062003309565b50602082810151805162001228926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620012b49284929091019062003309565b506020828101518051620012cf926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b60208381019190915280820192909252601080546001810182556000919091528151805192945060029091026000805160206200704083398151915201926200135b9284929091019062003309565b50602082810151805162001376926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620014029284929091019062003309565b5060208281015180516200141d926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620014a99284929091019062003309565b506020828101518051620014c4926001850192019062003309565b505060408051608081018252600a8183019081526972676228302c302c302960b01b6060830152815281518083019092526004825263159bda5960e21b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620015509284929091019062003309565b5060208281015180516200156b926001850192019062003309565b505060408051608081018252600d8183019081526c7267622834372c33312c33312960981b6060830152815281518083019092526005825264213937bbb760d91b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620015fb9284929091019062003309565b50602082810151805162001616926001850192019062003309565b505060408051608081018252600d8183019081526c7267622834372c33312c33312960981b6060830152815281518083019092526005825264213937bbb760d91b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620016a69284929091019062003309565b506020828101518051620016c1926001850192019062003309565b505060408051608081018252600d8183019081526c7267622834372c33312c33312960981b6060830152815281518083019092526005825264213937bbb760d91b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620017519284929091019062003309565b5060208281015180516200176c926001850192019062003309565b505060408051608081018252600d8183019081526c7267622834372c33312c33312960981b6060830152815281518083019092526005825264213937bbb760d91b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620017fc9284929091019062003309565b50602082810151805162001817926001850192019062003309565b505060408051608081018252600d8183019081526c7267622834372c33312c33312960981b6060830152815281518083019092526005825264213937bbb760d91b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620018a79284929091019062003309565b506020828101518051620018c2926001850192019062003309565b505060408051608081018252600b8183019081526a72676228332c342c39342960a81b60608301528152815180830190925260048252634e61767960e01b60208381019190915280820192909252601080546001810182556000919091528151805192945060029091026000805160206200704083398151915201926200194f9284929091019062003309565b5060208281015180516200196a926001850192019062003309565b505060408051608081018252600d8183019081526c72676228322c36322c3133382960981b6060830152815281518083019092526005825264149bde585b60da1b6020838101919091528082019290925260108054600181018255600091909152815180519294506002909102600080516020620070408339815191520192620019fa9284929091019062003309565b50602082810151805162001a15926001850192019062003309565b505060408051608081018252600e8183019081526d72676228302c3131392c3138322960901b6060830152815281518083019092526005825264476c61737360d81b602083810191909152808201929092526010805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001aa69284929091019062003309565b50602082810151805162001ac1926001850192019062003309565b505060408051608081018252600e8183019081526d72676228302c3135302c3139392960901b6060830152815281518083019092526007825266536c757270656560c81b602083810191909152808201929092526010805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001b549284929091019062003309565b50602082810151805162001b6f926001850192019062003309565b505060408051608081018252600e8183019081526d72676228302c3138302c3231362960901b6060830152815281518083019092526008825267456c65637472696360c01b602083810191909152808201929092526010805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001c039284929091019062003309565b50602082810151805162001c1e926001850192019062003309565b505060408051608081018252600f8183019081526e7267622837322c3230322c3232382960881b606083015281528151808301909252600782526623b630b1b4b2b960c91b602083810191909152808201929092526010805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001cb29284929091019062003309565b50602082810151805162001ccd926001850192019062003309565b50506040805160808101825260108183018181526f726762283134342c3232342c3233392960801b606084015282528251808401909352600383526249636560e81b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001d5c9284929091019062003309565b50602082810151805162001d77926001850192019062003309565b50506040805160808101825260108183018181526f726762283137332c3233322c3234342960801b606084015282528251808401909352600483526310dbdb1960e21b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001e079284929091019062003309565b50602082810151805162001e22926001850192019062003309565b50506040805160808101825260108183018181526f726762283230322c3234302c3234382960801b6060840152825282518084019093526006835265119c9a59da5960d21b60208481019190915280830193909352805460018101825560009190915281518051929450600290910260008051602062007040833981519152019262001eb49284929091019062003309565b50602082810151805162001ecf926001850192019062003309565b50506040805160808101825260108183019081526f726762283233372c3234322c3235312960801b60608301528152815180830190925260068252652837bbb232b960d11b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe0833981519152019262001f639284929091019062003309565b50602082810151805162001f7e926001850192019062003309565b50506040805160808101825260108183019081526f726762283232362c3233342c3235322960801b606083015281528151808301909252600582526411da1bdcdd60da1b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe08339815191520192620020119284929091019062003309565b5060208281015180516200202c926001850192019062003309565b50506040805160808101825260108183019081526f726762283231352c3232372c3235322960801b606083015281528151808301909252600582526421b632b0b960d91b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe08339815191520192620020bf9284929091019062003309565b506020828101518051620020da926001850192019062003309565b50506040805160808101825260108183019081526f726762283230342c3231392c3235332960801b606083015281528151808301909252600782526610dc9e5cdd185b60ca1b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe083398151915201926200216f9284929091019062003309565b5060208281015180516200218a926001850192019062003309565b50506040805160808101825260108183019081526f726762283139332c3231312c3235342960801b606083015281528151808301909252600382526220b4b960e91b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe083398151915201926200221b9284929091019062003309565b50602082810151805162002236926001850192019062003309565b50506040805160808101825260108183019081526f726762283138322c3230342c3235342960801b606083015281528151808301909252600482526315da5b9960e21b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe08339815191520192620022c89284929091019062003309565b506020828101518051620022e3926001850192019062003309565b50506040805160808101825260108183019081526f726762283137312c3139362c3235352960801b606083015281528151808301909252600682526553747265616d60d01b602083810191909152808201929092526011805460018101825560009190915281518051929450600290910260008051602062006fe08339815191520192620023779284929091019062003309565b50602082810151805162002392926001850192019062003309565b50506040805160808101825260108183019081526f726762283234382c3234392c3235302960801b6060830152815281518083019092526004825263426f6e6560e01b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620024249284929091019062003309565b5060208281015180516200243f926001850192019062003309565b50506040805160808101825260108183019081526f726762283233332c3233362c3233392960801b60608301528152815180830190925260088252674f6666776869746560c01b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620024d59284929091019062003309565b506020828101518051620024f0926001850192019062003309565b50506040805160808101825260108183019081526f726762283232322c3232362c3233302960801b60608301528152815180830190925260088252672230b732393ab33360c11b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620025869284929091019062003309565b506020828101518051620025a1926001850192019062003309565b50506040805160808101825260108183019081526f726762283230362c3231322c3231382960801b6060830152815281518083019092526003825262082e6d60eb1b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620026329284929091019062003309565b5060208281015180516200264d926001850192019062003309565b50506040805160808101825260108183019081526f726762283137332c3138312c3138392960801b606083015281528151808301909252600a8252692232b0ba341029ba30b960b11b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620026e59284929091019062003309565b50602082810151805162002700926001850192019062003309565b50506040805160808101825260108183019081526f726762283130382c3131372c3132352960801b60608301528152815180830190925260098252680c908814195b98da5b60ba1b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620027979284929091019062003309565b506020828101518051620027b2926001850192019062003309565b505060408051608081018252600d8183019081526c7267622837332c38302c38372960981b606083015281528151808301909252600a825269476f746820546561727360b01b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620028479284929091019062003309565b50602082810151805162002862926001850192019062003309565b505060408051608081018252600d8183019081526c7267622835322c35382c36342960981b6060830152815281518083019092526005825264536861646560d81b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f808339815191520192620028f29284929091019062003309565b5060208281015180516200290d926001850192019062003309565b505060408051608081018252600d8183019081526c7267622833332c33372c34312960981b606083015281528151808301909252600482526310dbd85b60e21b602083810191909152808201929092526012805460018101825560009190915281518051929450600290910260008051602062006f8083398151915201926200299c9284929091019062003309565b506020828101518051620029b7926001850192019062003309565b50506040805160808101825260108183019081526f726762283235352c3137332c3137332960801b6060830152815281518083019092526009825268526564204368616c6b60b81b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002a4e9284929091019062003309565b50602082810151805162002a69926001850192019062003309565b50506040805160808101825260108183019081526f726762283235352c3231342c3136352960801b606083015281528151808301909252600c82526b4f72616e6765204368616c6b60a01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002b039284929091019062003309565b50602082810151805162002b1e926001850192019062003309565b50506040805160808101825260108183019081526f726762283235332c3235352c3138322960801b606083015281528151808301909252600c82526b59656c6c6f77204368616c6b60a01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002bb89284929091019062003309565b50602082810151805162002bd3926001850192019062003309565b50506040805160808101825260108183019081526f726762283230322c3235352c3139312960801b606083015281528151808301909252600b82526a477265656e204368616c6b60a81b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002c6c9284929091019062003309565b50602082810151805162002c87926001850192019062003309565b50506040805160808101825260108183019081526f726762283135352c3234362c3235352960801b606083015281528151808301909252600a825269426c7565204368616c6b60b01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002d1f9284929091019062003309565b50602082810151805162002d3a926001850192019062003309565b50506040805160808101825260108183019081526f726762283136302c3139362c3235352960801b606083015281528151808301909252600c82526b56696f6c6574204368616c6b60a01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002dd49284929091019062003309565b50602082810151805162002def926001850192019062003309565b50506040805160808101825260108183019081526f726762283138392c3137382c3235352960801b606083015281528151808301909252600c82526b507572706c65204368616c6b60a01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002e899284929091019062003309565b50602082810151805162002ea4926001850192019062003309565b50506040805160808101825260108183019081526f726762283235352c3139382c3235352960801b606083015281528151808301909252600a825269526f7365204368616c6b60b01b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002f3c9284929091019062003309565b50602082810151805162002f57926001850192019062003309565b50506040805160808101825260108183019081526f726762283235352c3235352c3235322960801b606083015281528151808301909252600b82526a5768697465204368616c6b60a81b602083810191909152808201929092526013805460018101825560009190915281518051929450600290910260008051602062007000833981519152019262002ff09284929091019062003309565b5060208281015180516200300b926001850192019062003309565b5050604080518082018252600080825282518084019093526005835264149a59da1d60da1b602080850191909152808301938452601480546001810182559252825160008051602062007020833981519152600290930292830190815593518051939550620030919360008051602062006fc08339815191529093019291019062003309565b50506040805180820182526001808252825180840190935260048352631319599d60e21b602080850191909152808301938452601480549283018155600052825160008051602062007020833981519152600290930292830190815593518051939550620031169360008051602062006fc08339815191529093019291019062003309565b505060408051808201825260028082528251808401909352600483526310985b9960e21b60208481019190915280830193845260148054600181018255600091909152835192026000805160206200702083398151915281019283559351805193955091936200319e9360008051602062006fc0833981519152909101929091019062003309565b5050604080518082018252600080825282518084019093526005835264149a59da1d60da1b602080850191909152808301938452601580546001810182559252825160008051602062006fa0833981519152600290930292830190815593518051939550620032249360008051602062006f408339815191529093019291019062003309565b50506040805180820182526000808252825180840190935260048352631319599d60e21b602080850191909152808301938452601580546001810182559252825160008051602062006fa0833981519152600290930292830190815593518051939550620032a99360008051602062006f408339815191529093019291019062003309565b5050505050506200352c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200331790620034ef565b90600052602060002090601f0160209004810192826200333b576000855562003386565b82601f106200335657805160ff191683800117855562003386565b8280016001018555821562003386579182015b828111156200338657825182559160200191906001019062003369565b506200339492915062003398565b5090565b5b8082111562003394576000815560010162003399565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620033d757600080fd5b81516001600160401b0380821115620033f457620033f4620033af565b604051601f8301601f19908116603f011681019082821181831017156200341f576200341f620033af565b816040528381526020925086838588010111156200343c57600080fd5b600091505b8382101562003460578582018301518183018401529082019062003441565b83821115620034725760008385830101525b9695505050505050565b6000806000606084860312156200349257600080fd5b83516001600160401b0380821115620034aa57600080fd5b620034b887838801620033c5565b94506020860151915080821115620034cf57600080fd5b50620034de86828701620033c5565b925050604084015190509250925092565b600181811c908216806200350457607f821691505b602082108114156200352657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516139e0620035606000396000818161035a0152611a550152600081816102c10152610c3501526139e06000f3fe608060405234801561001057600080fd5b50600436106101d85760003560e01c806377a4d55911610104578063c39cca04116100a2578063f1c7f40e11610071578063f1c7f40e1461044d578063f2fde38b1461046d578063f7f8c5a514610480578063f8e76cc0146104a057600080fd5b8063c39cca04146103de578063c87b56dd146103eb578063e985e9c5146103fe578063f099d5bb1461043a57600080fd5b80638da5cb5b116100de5780638da5cb5b1461039f57806395d89b41146103b0578063a22cb465146103b8578063b88d4fde146103cb57600080fd5b806377a4d5591461034d57806378e97925146103555780638c47a5071461037c57600080fd5b806323b872dd1161017c5780634b0bddd21161014b5780634b0bddd2146102f65780636352211e1461030957806370a082311461031c578063715018a61461034557600080fd5b806323b872dd1461029657806333b57274146102a9578063355274ea146102bc57806342842e0e146102e357600080fd5b806306fdde03116101b857806306fdde031461022d578063081812fc14610242578063095ea7b31461026d57806318160ddd1461028057600080fd5b80611784146101dd57806301ffc9a7146101f257806302fe53051461021a575b600080fd5b6101f06101eb36600461297d565b6104b3565b005b6102056102003660046129bd565b6105a1565b60405190151581526020015b60405180910390f35b6101f06102283660046129e1565b6105f3565b610235610632565b6040516102119190612aab565b610255610250366004612abe565b6106c0565b6040516001600160a01b039091168152602001610211565b6101f061027b36600461297d565b610704565b61028861075a565b604051908152602001610211565b6101f06102a4366004612ad7565b610770565b6101f06102b7366004612b23565b61077b565b6102887f000000000000000000000000000000000000000000000000000000000000000081565b6101f06102f1366004612ad7565b6107e4565b6101f0610304366004612b4f565b6107ff565b610255610317366004612abe565b610854565b61028861032a366004612b79565b6001600160a01b031660009081526006602052604090205490565b6101f061085f565b610235610895565b6102887f000000000000000000000000000000000000000000000000000000000000000081565b61020561038a366004612abe565b600b6020526000908152604090205460ff1681565b6000546001600160a01b0316610255565b6102356108a2565b6101f06103c6366004612b4f565b6108af565b6101f06103d9366004612baa565b61091b565b600a546102059060ff1681565b6102356103f9366004612abe565b610955565b61020561040c366004612c86565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6101f0610448366004612cb0565b610aba565b61028861045b366004612abe565b600d6020526000908152604090205481565b6101f061047b366004612b79565b610af7565b61028861048e366004612abe565b600c6020526000908152604090205481565b6102056104ae366004612abe565b610b92565b6000546001600160a01b031633148015906104de57503360009081526009602052604090205460ff16155b156104fc576040516355098f2760e01b815260040160405180910390fd5b6004548060005b8381101561059057336040516bffffffffffffffffffffffff19606092831b811660208301529187901b909116603482015260488101859052606881018390524260888201524460a882015260c80160408051601f1981840301815291815281516020928301206000858152600c845282812091909155600d909252902042905560019182019101610503565b505061059c8383610ba6565b505050565b60006001600160e01b031982166380ac58cd60e01b14806105d257506001600160e01b03198216635b5e139f60e01b145b806105ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106265760405162461bcd60e51b815260040161061d90612ccb565b60405180910390fd5b61059c600383836128c8565b6001805461063f90612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90612d00565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b505050505081565b60006106cb82610b92565b6106e8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061070f82610d25565b9050336001600160a01b03821614801590610731575061072f813361040c565b155b1561074f576040516367d9dca160e11b815260040160405180910390fd5b61059c818484610d7e565b6000600160045461076b9190612d51565b905090565b61059c838383610dda565b6000546001600160a01b031633148015906107a657503360009081526009602052604090205460ff16155b156107c4576040516355098f2760e01b815260040160405180910390fd5b6000918252600b6020526040909120805460ff1916911515919091179055565b61059c8383836040518060200160405280600081525061091b565b6000546001600160a01b031633146108295760405162461bcd60e51b815260040161061d90612ccb565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60006105ed82610d25565b6000546001600160a01b031633146108895760405162461bcd60e51b815260040161061d90612ccb565b6108936000610fde565b565b6003805461063f90612d00565b6002805461063f90612d00565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610926848484610dda565b6109328484848461102e565b61094f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061096082610b92565b61097d57604051630a14c4b560e41b815260040160405180910390fd5b600f5460009061098d848361112e565b6109979190612d7e565b6014549091506000906109ab85600161112e565b6109b59190612d7e565b9050600060046109c686600261112e565b6109d09190612d7e565b6109db906001612d92565b6015549091506000906109ef87600361112e565b6109f99190612d7e565b905060026000610a0d88878787878761116d565b90506000610a3e826101a00151604051602001610a2a9190612dc6565b604051602081830303815290604052611546565b604051602001610a4e9190612de2565b60405160208183030381529060405290506000610a6a8361169a565b9050610a8c610a788b61193d565b8284604051602001610a2a93929190612e27565b604051602001610a9c9190612efd565b60405160208183030381529060405298505050505050505050919050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161061d90612ccb565b600a805460ff1916911515919091179055565b6000546001600160a01b03163314610b215760405162461bcd60e51b815260040161061d90612ccb565b6001600160a01b038116610b865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061d565b610b8f81610fde565b50565b600080821180156105ed5750506004541190565b6000546001600160a01b03163314801590610bd157503360009081526009602052604090205460ff16155b15610bef576040516355098f2760e01b815260040160405180910390fd5b6001600160a01b038216610c1557604051622e076360e81b815260040160405180910390fd5b80610c335760405163b562e8dd60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816001600454610c649190612d51565b610c6e9190612d92565b1115610c8d5760405163a4875a4960e01b815260040160405180910390fd5b6004546001600160a01b03831660008181526006602090815260408083208054870190558483526005909152812080546001600160a01b03191690921790915581905b83811015610d1c5760405182906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a460019182019101610cd0565b50600455505050565b6000610d3082610b92565b610d4d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560205260409020546001600160a01b031691508115610d755750919050565b60001901610d4f565b60008181526007602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610de582610d25565b90506000336001600160a01b0383161480610e055750610e05823361040c565b80610e20575033610e15846106c0565b6001600160a01b0316145b905080610e4057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316826001600160a01b031614610e715760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e9857604051633a954ecd60e21b815260040160405180910390fd5b600a5460ff1615610ebc57604051630314a19b60e51b815260040160405180910390fd5b6000838152600b602052604090205460ff1615610eec57604051631ec47c7760e01b815260040160405180910390fd5b610ef882600085610d7e565b6001600160a01b038086166000908152600660209081526040808320805460001901905587841680845281842080546001908101909155888552600590935281842080546001600160a01b0319169091179055908601808352912054909116158015610f685750610f6881610b92565b15610f9557600081815260056020526040902080546001600160a01b0319166001600160a01b0385161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561112257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611072903390899088908890600401612f42565b6020604051808303816000875af19250505080156110ad575060408051601f3d908101601f191682019092526110aa91810190612f7f565b60015b611108573d8080156110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b508051611100576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611126565b5060015b949350505050565b6000828152600c6020908152604080832054815192830152810183905260600160408051601f1981840301815291905280516020909101209392505050565b6111fb6040518061024001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160608152602001600081526020016000815260200160008152602001606081525090565b600085158061120a5750856001145b1561122b5761121a856002612f9c565b6112249082612d92565b9050611243565b611236856003612f9c565b6112409082612d92565b90505b600060046112528a600561112e565b61125c9190612d7e565b611267906004612d92565b905060008515806112785750856001145b1561129557611288856002612f9c565b6112929082612d92565b90505b6000604051806102400160405280600081526020018b8152602001600081526020018a8152602001898152602001848152602001600081526020016000815260200160008152602001600081526020018881526020018781526020016112fa8d611a3b565b81526040805160208181018352600082528301520160028461131c8789612d92565b6113269190612d92565b6113309190612fbb565b61133b906003612f9c565b61134690602f612d51565b8152602001611356866003612f9c565b600285611363888a612d92565b61136d9190612d92565b6113779190612fbb565b611382906003612f9c565b61138d90602f612d51565b6113979190612d92565b81526020016113a7856003612f9c565b6113b2876003612f9c565b6002866113bf898b612d92565b6113c99190612d92565b6113d39190612fbb565b6113de906003612f9c565b6113e990602f612d51565b6113f39190612d92565b6113fd9190612d92565b81526020016040518060200160405280600081525081525090506114288b82836101e0015186611a8f565b6102208201526114388b82611d91565b6114458c838c8c8f611f3d565b6114fc8386600f8f8154811061145d5761145d612fcf565b9060005260206000209060020201600001805461147990612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590612d00565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b50505050506122bf565b83610220015161150e8f868d8d61232c565b604051602001611522959493929190612fe5565b60408051808303601f190181529190526101a08201529a9950505050505050505050565b606081516000141561156657505060408051602081019091526000815290565b600060405180606001604052806040815260200161396b60409139905060006003845160026115959190612d92565b61159f9190612fbb565b6115aa906004612f9c565b67ffffffffffffffff8111156115c2576115c2612b94565b6040519080825280601f01601f1916602001820160405280156115ec576020820181803683370190505b509050600182016020820185865187015b80821015611658576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506115fd565b505060038651066001811461167457600281146116875761168f565b603d6001830353603d600283035361168f565b603d60018303535b509195945050505050565b60606116a58261272f565b6116e06040518060400160405280600b81526020016a084dec8f24098cadccee8d60ab1b8152506116d98560a0015161193d565b6001612871565b6117be6040518060400160405280600a8152602001692bb4b7339021b7b637b960b11b81525060118660c001518154811061171d5761171d612fcf565b9060005260206000209060020201600101805461173990612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461176590612d00565b80156117b25780601f10611787576101008083540402835291602001916117b2565b820191906000526020600020905b81548152906001019060200180831161179557829003601f168201915b50505050506000612871565b6117f26040518060400160405280600b81526020016a0aed2dcce4098cadccee8d60ab1b8152506116d98760e0015161193d565b61182f6040518060400160405280600981526020016822bcb29021b7b637b960b91b81525060128861010001518154811061171d5761171d612fcf565b61186d6040518060400160405280600a81526020016924b934b99021b7b637b960b11b81525060138961012001518154811061171d5761171d612fcf565b6118ac6040518060400160405280600b81526020016a22bcb2902830ba3a32b93760a91b81525060158a61014001518154811061171d5761171d612fcf565b6118e26040518060400160405280600c81526020016b457965205365676d656e747360a01b8152506116d98b610160015161193d565b61190f6040518060400160405280600381526020016241676560e81b8152506116d98c610180015161193d565b6040516020016119279998979695949392919061313e565b6040516020818303038152906040529050919050565b6060816119615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561198b578061197581613238565b91506119849050600a83612fbb565b9150611965565b60008167ffffffffffffffff8111156119a6576119a6612b94565b6040519080825280601f01601f1916602001820160405280156119d0576020820181803683370190505b5090505b8415611126576119e5600183612d51565b91506119f2600a86612d7e565b6119fd906030612d92565b60f81b818381518110611a1257611a12612fcf565b60200101906001600160f81b031916908160001a905350611a34600a86612fbb565b94506119d4565b6000818152600d60205260408120546201518090611a7a907f000000000000000000000000000000000000000000000000000000000000000090612d51565b611a849190612fbb565b6105ed906001612d92565b601154606090600090611aa487610bb861112e565b611aae9190612d7e565b9050808560c0018181525050600060118281548110611acf57611acf612fcf565b9060005260206000209060020201604051806040016040529081600082018054611af890612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2490612d00565b8015611b715780601f10611b4657610100808354040283529160200191611b71565b820191906000526020600020905b815481529060010190602001808311611b5457829003601f168201915b50505050508152602001600182018054611b8a90612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb690612d00565b8015611c035780601f10611bd857610100808354040283529160200191611c03565b820191906000526020600020905b815481529060010190602001808311611be657829003601f168201915b5050505050815250509050600060405180606001604052806001815260200160018152602001600281525090506000816003611c418b610bb961112e565b611c4b9190612d7e565b60038110611c5b57611c5b612fcf565b602002015160e0890181905290506000611c76600288612d51565b611c828b610bba61112e565b611c8c9190612d7e565b90506000611c9b826003612f9c565b611ca5908a612d92565b90506000611cb4836002612d92565b611cbe908a612d51565b611cca8d610bbb61112e565b611cd49190612d7e565b611cdf906003612f9c565b611cea836006612d92565b611cf49190612d92565b9050606060005b85811015611d805781611d0d8561193d565b611d2b611d1b846003612f9c565b611d2690602f612d51565b61193d565b8a51611d368761193d565b611d44611d1b876003612f9c565b8d51604051611d5c9796959493929190602001613289565b60405160208183030381529060405291508080611d7890613238565b915050611cfb565b509c9b505050505050505050505050565b600e54606090600090611da6856103e861112e565b611db09190612d7e565b808452600e805491925060009183908110611dcd57611dcd612fcf565b9060005260206000209060020201604051806040016040529081600082018054611df690612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2290612d00565b8015611e6f5780601f10611e4457610100808354040283529160200191611e6f565b820191906000526020600020905b815481529060010190602001808311611e5257829003601f168201915b50505050508152602001600182018054611e8890612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb490612d00565b8015611f015780601f10611ed657610100808354040283529160200191611f01565b820191906000526020600020905b815481529060010190602001808311611ee457829003601f168201915b505050505081525050905060008160000151604051602001611f239190613395565b60408051808303601f190181529190529695505050505050565b601054606090600090611f52886107d061112e565b611f5c9190612d7e565b905080866040018181525050600060108281548110611f7d57611f7d612fcf565b9060005260206000209060020201604051806040016040529081600082018054611fa690612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290612d00565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050815260200160018201805461203890612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461206490612d00565b80156120b15780601f10612086576101008083540402835291602001916120b1565b820191906000526020600020905b81548152906001019060200180831161209457829003601f168201915b5050505050815250509050606060005b868110156122b2578761217c57816120f86120dd836002612f9c565b6120e8906003612f9c565b8b6101c00151611d269190612d92565b845161212e612108856002612f9c565b612113906003612f9c565b6101c08e0151612124906003612d92565b611d269190612d92565b600f8a8154811061214157612141612fcf565b9060005260206000209060020201600001604051602001612166959493929190613492565b60405160208183030381529060405291506122a0565b87600114156121de57816121946120dd836002612f9c565b600f88815481106121a7576121a7612fcf565b90600052602060002090600202016000016121c88460026121089190612f9c565b865160405161216695949392919060200161354b565b87600214156122a057816121f66120dd836003612f9c565b600f888154811061220957612209612fcf565b60009182526020909120600290910201612227612108856003612f9c565b8651612254612237876003612f9c565b612242906003612f9c565b8f6101c0015160066121249190612d92565b600f8c8154811061226757612267612fcf565b906000526020600020906002020160000160405160200161228e9796959493929190613602565b60405160208183030381529060405291505b806122aa81613238565b9150506120c1565b5098975050505050505050565b60608060005b8481101561232357816122ec6122dc836003612f9c565b886101e00151611d269190612d92565b856040516020016122ff939291906136e5565b6040516020818303038152906040529150808061231b90613238565b9150506122c5565b50949350505050565b60125460609060009061234187610fa061112e565b61234b9190612d7e565b9050808561010001818152505060006012828154811061236d5761236d612fcf565b906000526020600020906002020160405180604001604052908160008201805461239690612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546123c290612d00565b801561240f5780601f106123e45761010080835404028352916020019161240f565b820191906000526020600020905b8154815290600101906020018083116123f257829003601f168201915b5050505050815260200160018201805461242890612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461245490612d00565b80156124a15780601f10612476576101008083540402835291602001916124a1565b820191906000526020600020905b81548152906001019060200180831161248457829003601f168201915b505050505081525050905060006013805490506124c089610fa161112e565b6124ca9190612d7e565b905080876101200181815250506000601382815481106124ec576124ec612fcf565b906000526020600020906002020160405180604001604052908160008201805461251590612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461254190612d00565b801561258e5780601f106125635761010080835404028352916020019161258e565b820191906000526020600020905b81548152906001019060200180831161257157829003601f168201915b505050505081526020016001820180546125a790612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546125d390612d00565b80156126205780601f106125f557610100808354040283529160200191612620565b820191906000526020600020905b81548152906001019060200180831161260357829003601f168201915b5050505050815250509050606060005b8781101561272157886126bf578161266761264c836002612f9c565b612657906003612f9c565b8c6102000151611d269190612d92565b8451612693612677856002612f9c565b612682906003612f9c565b6102008f0151612124906003612d92565b88516040516126a9959493929190602001613771565b604051602081830303815290604052915061270f565b886001141561270f57816126d761264c836002612f9c565b86516126e7612677856002612f9c565b86516040516126fd959493929190602001613771565b60405160208183030381529060405291505b8061271981613238565b915050612630565b509998505050505050505050565b606061276e6040518060400160405280600a815260200169109858dad9dc9bdd5b9960b21b815250600e84600001518154811061171d5761171d612fcf565b6127ab6040518060400160405280600a8152602001692137b23c9021b7b637b960b11b815250600f85602001518154811061171d5761171d612fcf565b6127e86040518060400160405280600a8152602001692a30b4b61021b7b637b960b11b815250601086604001518154811061171d5761171d612fcf565b6128276040518060400160405280600c81526020016b2a30b4b6102830ba3a32b93760a11b815250601487606001518154811061171d5761171d612fcf565b61285d6040518060400160405280600d81526020016c5461696c205365676d656e747360981b8152506116d9886080015161193d565b6040516020016119279594939291906137fc565b6060828261289c578360405160200161288a91906138a8565b60405160208183030381529060405290505b84816040516020016128af9291906138d6565b6040516020818303038152906040529150509392505050565b8280546128d490612d00565b90600052602060002090601f0160209004810192826128f6576000855561293c565b82601f1061290f5782800160ff1982351617855561293c565b8280016001018555821561293c579182015b8281111561293c578235825591602001919060010190612921565b5061294892915061294c565b5090565b5b80821115612948576000815560010161294d565b80356001600160a01b038116811461297857600080fd5b919050565b6000806040838503121561299057600080fd5b61299983612961565b946020939093013593505050565b6001600160e01b031981168114610b8f57600080fd5b6000602082840312156129cf57600080fd5b81356129da816129a7565b9392505050565b600080602083850312156129f457600080fd5b823567ffffffffffffffff80821115612a0c57600080fd5b818501915085601f830112612a2057600080fd5b813581811115612a2f57600080fd5b866020828501011115612a4157600080fd5b60209290920196919550909350505050565b60005b83811015612a6e578181015183820152602001612a56565b8381111561094f5750506000910152565b60008151808452612a97816020860160208601612a53565b601f01601f19169290920160200192915050565b6020815260006129da6020830184612a7f565b600060208284031215612ad057600080fd5b5035919050565b600080600060608486031215612aec57600080fd5b612af584612961565b9250612b0360208501612961565b9150604084013590509250925092565b8035801515811461297857600080fd5b60008060408385031215612b3657600080fd5b82359150612b4660208401612b13565b90509250929050565b60008060408385031215612b6257600080fd5b612b6b83612961565b9150612b4660208401612b13565b600060208284031215612b8b57600080fd5b6129da82612961565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612bc057600080fd5b612bc985612961565b9350612bd760208601612961565b925060408501359150606085013567ffffffffffffffff80821115612bfb57600080fd5b818701915087601f830112612c0f57600080fd5b813581811115612c2157612c21612b94565b604051601f8201601f19908116603f01168101908382118183101715612c4957612c49612b94565b816040528281528a6020848701011115612c6257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c9957600080fd5b612ca283612961565b9150612b4660208401612961565b600060208284031215612cc257600080fd5b6129da82612b13565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d1457607f821691505b60208210811415612d3557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612d6357612d63612d3b565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612d8d57612d8d612d68565b500690565b60008219821115612da557612da5612d3b565b500190565b60008151612dbc818560208601612a53565b9290920192915050565b60008251612dd8818460208701612a53565b9190910192915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251612e1a81601a850160208701612a53565b91909101601a0192915050565b6a3d90113730b6b2911d101160a91b81526802132b2b634b732bd160bd1b600b8201528351600090612e60816014850160208901612a53565b7f222c20226465736372697074696f6e223a2022627a7a20627a7a222c200000006014918401918201526d01130ba3a3934b13aba32b9911d160951b60318201528451612eb481603f840160208901612a53565b6b16101134b6b0b3b2911d101160a11b603f92909101918201528351612ee181604b840160208801612a53565b61227d60f01b604b9290910191820152604d0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612f3581601d850160208701612a53565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7590830184612a7f565b9695505050505050565b600060208284031215612f9157600080fd5b81516129da816129a7565b6000816000190483118215151615612fb657612fb6612d3b565b500290565b600082612fca57612fca612d68565b500490565b634e487b7160e01b600052603260045260246000fd5b7f3c7376672076657273696f6e3d22312e31222077696474683d2231303030222081526d03432b4b3b43a1e911898181811160951b6020808301919091527f76696577426f783d223020302031303030203130303022207374726f6b652d6c602e8301526e034b732b1b0b81e913937bab732111608d1b604e8301527f786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376605d8301526203391160ed1b607d8301527f786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f3160808301526a1c9c9c97bc3634b735911f60a91b60a083015286516000916130e490829060ab8601908b01612a53565b8651908301906130fb8160ab840160208b01612a53565b61313161311f61311961311360ab858701018b612daa565b89612daa565b87612daa565b651e17b9bb339f60d11b815260060190565b9998505050505050505050565b60008a51613150818460208f01612a53565b8a5190830190613164818360208f01612a53565b600b60fa1b91018181528a51909190613184816001850160208f01612a53565b6001920191820181905289516131a1816002850160208e01612a53565b6002920191820181905288516131be816003850160208d01612a53565b600392019182015286516131d9816004840160208b01612a53565b61322761321a6131196132076132146132076132016004888a0101600b60fa1b815260010190565b8d612daa565b600b60fa1b815260010190565b8a612daa565b605d60f81b815260010190565b9d9c50505050505050505050505050565b600060001982141561324c5761324c612d3b565b5060010190565b7f22202f3e3c726563742077696474683d22332522206865696768743d22332522815263103c1e9160e11b602082015260240190565b60008851602061329c8285838e01612a53565b60008051602061394b83398151915291840191825289516132c281838501848e01612a53565b651291103c9e9160d11b920181810183905289519092906132e981602686018d8601612a53565b681291103334b6361e9160b91b60269490910193840152885161331281602f8601858d01612a53565b613320602f82860101613253565b93505087516133328185858c01612a53565b92909201918252855161334b8160068501848a01612a53565b61338561337561336f600684870101681291103334b6361e9160b91b815260090190565b88612daa565b631110179f60e11b815260040190565b9c9b505050505050505050505050565b7f3c726563742077696474683d223130302522206865696768743d223130302522815266103334b6361e9160c91b6020820152600082516133dd816027850160208701612a53565b631110179f60e11b6027939091019283015250602b01919050565b8054600090600181811c908083168061341257607f831692505b602080841082141561343457634e487b7160e01b600052602260045260246000fd5b818015613448576001811461345957613486565b60ff19861689528489019650613486565b60008881526020902060005b8681101561347e5781548b820152908501908301613465565b505084890196505b50505050505092915050565b6000865160206134a58285838c01612a53565b60008051602061394b83398151915291840191825287516134cb81838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b920181810183905287519092906134fd81603186018b8601612a53565b61350b603182860101613253565b935050865161351d8185858b01612a53565b929092019182525061353260118201856133f8565b631110179f60e11b815260040198975050505050505050565b60008651602061355e8285838c01612a53565b60008051602061394b833981519152918401918252875161358481838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b9201818101839052916135b76135b2603185018a6133f8565b613253565b925086516135c88185858b01612a53565b9290920191825284516135e18160118501848901612a53565b631110179f60e11b6011939091019283015250601501979650505050505050565b6000885160206136158285838e01612a53565b60008051602061394b833981519152918401918252895161363b81838501848e01612a53565b701291103c9e911a981291103334b6361e9160791b9201818101839052916136696135b2603185018c6133f8565b9250885161367a8185858d01612a53565b80840193505080835287516136958160118601858c01612a53565b6136a3601182860101613253565b93505086516136b58185858b01612a53565b92909201918252506136ca60118201856133f8565b631110179f60e11b81526004019a9950505050505050505050565b600084516136f7818460208901612a53565b808301905060008051602061394b83398151915281528451613720816020840160208901612a53565b808201915050701291103c9e911a981291103334b6361e9160791b60208201528351613753816031840160208801612a53565b631110179f60e11b6031929091019182015260350195945050505050565b6000865160206137848285838c01612a53565b60008051602061394b83398151915291840191825287516137aa81838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b920181810183905287519092906137dc81603186018b8601612a53565b6137ea603182860101613253565b93505086516135c88185858b01612a53565b605b60f81b815260008651613818816001850160208b01612a53565b8083019050600b60fa1b806001830152875161383b816002850160208c01612a53565b600292019182018190528651613858816003850160208b01612a53565b600392019182018190528551613875816004850160208a01612a53565b600492019182018190528451613892816005850160208901612a53565b6005920191820152600601979650505050505050565b6000601160f91b80835283516138c5816001860160208801612a53565b600193019283015250600201919050565b703d90113a3930b4ba2fba3cb832911d101160791b81528251600090613903816011850160208801612a53565b6b0111610113b30b63ab2911d160a51b601191840191820152835161392f81601d840160208801612a53565b61207d60f01b601d9290910191820152601f0194935050505056fe3c726563742077696474683d22332522206865696768743d2233252220783d224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207e75b3bae666b71f48c6a46112e87c3e7c7c44b75f6565ac16dd7b6481fada4a64736f6c634300080b003355f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec476bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fdbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344455f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ed31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6866de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6728d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000208f00000000000000000000000000000000000000000000000000000000000000084265656c696e657a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003425a5a0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101d85760003560e01c806377a4d55911610104578063c39cca04116100a2578063f1c7f40e11610071578063f1c7f40e1461044d578063f2fde38b1461046d578063f7f8c5a514610480578063f8e76cc0146104a057600080fd5b8063c39cca04146103de578063c87b56dd146103eb578063e985e9c5146103fe578063f099d5bb1461043a57600080fd5b80638da5cb5b116100de5780638da5cb5b1461039f57806395d89b41146103b0578063a22cb465146103b8578063b88d4fde146103cb57600080fd5b806377a4d5591461034d57806378e97925146103555780638c47a5071461037c57600080fd5b806323b872dd1161017c5780634b0bddd21161014b5780634b0bddd2146102f65780636352211e1461030957806370a082311461031c578063715018a61461034557600080fd5b806323b872dd1461029657806333b57274146102a9578063355274ea146102bc57806342842e0e146102e357600080fd5b806306fdde03116101b857806306fdde031461022d578063081812fc14610242578063095ea7b31461026d57806318160ddd1461028057600080fd5b80611784146101dd57806301ffc9a7146101f257806302fe53051461021a575b600080fd5b6101f06101eb36600461297d565b6104b3565b005b6102056102003660046129bd565b6105a1565b60405190151581526020015b60405180910390f35b6101f06102283660046129e1565b6105f3565b610235610632565b6040516102119190612aab565b610255610250366004612abe565b6106c0565b6040516001600160a01b039091168152602001610211565b6101f061027b36600461297d565b610704565b61028861075a565b604051908152602001610211565b6101f06102a4366004612ad7565b610770565b6101f06102b7366004612b23565b61077b565b6102887f000000000000000000000000000000000000000000000000000000000000208f81565b6101f06102f1366004612ad7565b6107e4565b6101f0610304366004612b4f565b6107ff565b610255610317366004612abe565b610854565b61028861032a366004612b79565b6001600160a01b031660009081526006602052604090205490565b6101f061085f565b610235610895565b6102887f00000000000000000000000000000000000000000000000000000000622aa65b81565b61020561038a366004612abe565b600b6020526000908152604090205460ff1681565b6000546001600160a01b0316610255565b6102356108a2565b6101f06103c6366004612b4f565b6108af565b6101f06103d9366004612baa565b61091b565b600a546102059060ff1681565b6102356103f9366004612abe565b610955565b61020561040c366004612c86565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6101f0610448366004612cb0565b610aba565b61028861045b366004612abe565b600d6020526000908152604090205481565b6101f061047b366004612b79565b610af7565b61028861048e366004612abe565b600c6020526000908152604090205481565b6102056104ae366004612abe565b610b92565b6000546001600160a01b031633148015906104de57503360009081526009602052604090205460ff16155b156104fc576040516355098f2760e01b815260040160405180910390fd5b6004548060005b8381101561059057336040516bffffffffffffffffffffffff19606092831b811660208301529187901b909116603482015260488101859052606881018390524260888201524460a882015260c80160408051601f1981840301815291815281516020928301206000858152600c845282812091909155600d909252902042905560019182019101610503565b505061059c8383610ba6565b505050565b60006001600160e01b031982166380ac58cd60e01b14806105d257506001600160e01b03198216635b5e139f60e01b145b806105ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106265760405162461bcd60e51b815260040161061d90612ccb565b60405180910390fd5b61059c600383836128c8565b6001805461063f90612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90612d00565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b505050505081565b60006106cb82610b92565b6106e8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061070f82610d25565b9050336001600160a01b03821614801590610731575061072f813361040c565b155b1561074f576040516367d9dca160e11b815260040160405180910390fd5b61059c818484610d7e565b6000600160045461076b9190612d51565b905090565b61059c838383610dda565b6000546001600160a01b031633148015906107a657503360009081526009602052604090205460ff16155b156107c4576040516355098f2760e01b815260040160405180910390fd5b6000918252600b6020526040909120805460ff1916911515919091179055565b61059c8383836040518060200160405280600081525061091b565b6000546001600160a01b031633146108295760405162461bcd60e51b815260040161061d90612ccb565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60006105ed82610d25565b6000546001600160a01b031633146108895760405162461bcd60e51b815260040161061d90612ccb565b6108936000610fde565b565b6003805461063f90612d00565b6002805461063f90612d00565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610926848484610dda565b6109328484848461102e565b61094f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061096082610b92565b61097d57604051630a14c4b560e41b815260040160405180910390fd5b600f5460009061098d848361112e565b6109979190612d7e565b6014549091506000906109ab85600161112e565b6109b59190612d7e565b9050600060046109c686600261112e565b6109d09190612d7e565b6109db906001612d92565b6015549091506000906109ef87600361112e565b6109f99190612d7e565b905060026000610a0d88878787878761116d565b90506000610a3e826101a00151604051602001610a2a9190612dc6565b604051602081830303815290604052611546565b604051602001610a4e9190612de2565b60405160208183030381529060405290506000610a6a8361169a565b9050610a8c610a788b61193d565b8284604051602001610a2a93929190612e27565b604051602001610a9c9190612efd565b60405160208183030381529060405298505050505050505050919050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161061d90612ccb565b600a805460ff1916911515919091179055565b6000546001600160a01b03163314610b215760405162461bcd60e51b815260040161061d90612ccb565b6001600160a01b038116610b865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061d565b610b8f81610fde565b50565b600080821180156105ed5750506004541190565b6000546001600160a01b03163314801590610bd157503360009081526009602052604090205460ff16155b15610bef576040516355098f2760e01b815260040160405180910390fd5b6001600160a01b038216610c1557604051622e076360e81b815260040160405180910390fd5b80610c335760405163b562e8dd60e01b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000208f816001600454610c649190612d51565b610c6e9190612d92565b1115610c8d5760405163a4875a4960e01b815260040160405180910390fd5b6004546001600160a01b03831660008181526006602090815260408083208054870190558483526005909152812080546001600160a01b03191690921790915581905b83811015610d1c5760405182906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a460019182019101610cd0565b50600455505050565b6000610d3082610b92565b610d4d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600560205260409020546001600160a01b031691508115610d755750919050565b60001901610d4f565b60008181526007602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610de582610d25565b90506000336001600160a01b0383161480610e055750610e05823361040c565b80610e20575033610e15846106c0565b6001600160a01b0316145b905080610e4057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316826001600160a01b031614610e715760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e9857604051633a954ecd60e21b815260040160405180910390fd5b600a5460ff1615610ebc57604051630314a19b60e51b815260040160405180910390fd5b6000838152600b602052604090205460ff1615610eec57604051631ec47c7760e01b815260040160405180910390fd5b610ef882600085610d7e565b6001600160a01b038086166000908152600660209081526040808320805460001901905587841680845281842080546001908101909155888552600590935281842080546001600160a01b0319169091179055908601808352912054909116158015610f685750610f6881610b92565b15610f9557600081815260056020526040902080546001600160a01b0319166001600160a01b0385161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561112257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611072903390899088908890600401612f42565b6020604051808303816000875af19250505080156110ad575060408051601f3d908101601f191682019092526110aa91810190612f7f565b60015b611108573d8080156110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b508051611100576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611126565b5060015b949350505050565b6000828152600c6020908152604080832054815192830152810183905260600160408051601f1981840301815291905280516020909101209392505050565b6111fb6040518061024001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160608152602001600081526020016000815260200160008152602001606081525090565b600085158061120a5750856001145b1561122b5761121a856002612f9c565b6112249082612d92565b9050611243565b611236856003612f9c565b6112409082612d92565b90505b600060046112528a600561112e565b61125c9190612d7e565b611267906004612d92565b905060008515806112785750856001145b1561129557611288856002612f9c565b6112929082612d92565b90505b6000604051806102400160405280600081526020018b8152602001600081526020018a8152602001898152602001848152602001600081526020016000815260200160008152602001600081526020018881526020018781526020016112fa8d611a3b565b81526040805160208181018352600082528301520160028461131c8789612d92565b6113269190612d92565b6113309190612fbb565b61133b906003612f9c565b61134690602f612d51565b8152602001611356866003612f9c565b600285611363888a612d92565b61136d9190612d92565b6113779190612fbb565b611382906003612f9c565b61138d90602f612d51565b6113979190612d92565b81526020016113a7856003612f9c565b6113b2876003612f9c565b6002866113bf898b612d92565b6113c99190612d92565b6113d39190612fbb565b6113de906003612f9c565b6113e990602f612d51565b6113f39190612d92565b6113fd9190612d92565b81526020016040518060200160405280600081525081525090506114288b82836101e0015186611a8f565b6102208201526114388b82611d91565b6114458c838c8c8f611f3d565b6114fc8386600f8f8154811061145d5761145d612fcf565b9060005260206000209060020201600001805461147990612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546114a590612d00565b80156114f25780601f106114c7576101008083540402835291602001916114f2565b820191906000526020600020905b8154815290600101906020018083116114d557829003601f168201915b50505050506122bf565b83610220015161150e8f868d8d61232c565b604051602001611522959493929190612fe5565b60408051808303601f190181529190526101a08201529a9950505050505050505050565b606081516000141561156657505060408051602081019091526000815290565b600060405180606001604052806040815260200161396b60409139905060006003845160026115959190612d92565b61159f9190612fbb565b6115aa906004612f9c565b67ffffffffffffffff8111156115c2576115c2612b94565b6040519080825280601f01601f1916602001820160405280156115ec576020820181803683370190505b509050600182016020820185865187015b80821015611658576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506115fd565b505060038651066001811461167457600281146116875761168f565b603d6001830353603d600283035361168f565b603d60018303535b509195945050505050565b60606116a58261272f565b6116e06040518060400160405280600b81526020016a084dec8f24098cadccee8d60ab1b8152506116d98560a0015161193d565b6001612871565b6117be6040518060400160405280600a8152602001692bb4b7339021b7b637b960b11b81525060118660c001518154811061171d5761171d612fcf565b9060005260206000209060020201600101805461173990612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461176590612d00565b80156117b25780601f10611787576101008083540402835291602001916117b2565b820191906000526020600020905b81548152906001019060200180831161179557829003601f168201915b50505050506000612871565b6117f26040518060400160405280600b81526020016a0aed2dcce4098cadccee8d60ab1b8152506116d98760e0015161193d565b61182f6040518060400160405280600981526020016822bcb29021b7b637b960b91b81525060128861010001518154811061171d5761171d612fcf565b61186d6040518060400160405280600a81526020016924b934b99021b7b637b960b11b81525060138961012001518154811061171d5761171d612fcf565b6118ac6040518060400160405280600b81526020016a22bcb2902830ba3a32b93760a91b81525060158a61014001518154811061171d5761171d612fcf565b6118e26040518060400160405280600c81526020016b457965205365676d656e747360a01b8152506116d98b610160015161193d565b61190f6040518060400160405280600381526020016241676560e81b8152506116d98c610180015161193d565b6040516020016119279998979695949392919061313e565b6040516020818303038152906040529050919050565b6060816119615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561198b578061197581613238565b91506119849050600a83612fbb565b9150611965565b60008167ffffffffffffffff8111156119a6576119a6612b94565b6040519080825280601f01601f1916602001820160405280156119d0576020820181803683370190505b5090505b8415611126576119e5600183612d51565b91506119f2600a86612d7e565b6119fd906030612d92565b60f81b818381518110611a1257611a12612fcf565b60200101906001600160f81b031916908160001a905350611a34600a86612fbb565b94506119d4565b6000818152600d60205260408120546201518090611a7a907f00000000000000000000000000000000000000000000000000000000622aa65b90612d51565b611a849190612fbb565b6105ed906001612d92565b601154606090600090611aa487610bb861112e565b611aae9190612d7e565b9050808560c0018181525050600060118281548110611acf57611acf612fcf565b9060005260206000209060020201604051806040016040529081600082018054611af890612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2490612d00565b8015611b715780601f10611b4657610100808354040283529160200191611b71565b820191906000526020600020905b815481529060010190602001808311611b5457829003601f168201915b50505050508152602001600182018054611b8a90612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb690612d00565b8015611c035780601f10611bd857610100808354040283529160200191611c03565b820191906000526020600020905b815481529060010190602001808311611be657829003601f168201915b5050505050815250509050600060405180606001604052806001815260200160018152602001600281525090506000816003611c418b610bb961112e565b611c4b9190612d7e565b60038110611c5b57611c5b612fcf565b602002015160e0890181905290506000611c76600288612d51565b611c828b610bba61112e565b611c8c9190612d7e565b90506000611c9b826003612f9c565b611ca5908a612d92565b90506000611cb4836002612d92565b611cbe908a612d51565b611cca8d610bbb61112e565b611cd49190612d7e565b611cdf906003612f9c565b611cea836006612d92565b611cf49190612d92565b9050606060005b85811015611d805781611d0d8561193d565b611d2b611d1b846003612f9c565b611d2690602f612d51565b61193d565b8a51611d368761193d565b611d44611d1b876003612f9c565b8d51604051611d5c9796959493929190602001613289565b60405160208183030381529060405291508080611d7890613238565b915050611cfb565b509c9b505050505050505050505050565b600e54606090600090611da6856103e861112e565b611db09190612d7e565b808452600e805491925060009183908110611dcd57611dcd612fcf565b9060005260206000209060020201604051806040016040529081600082018054611df690612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2290612d00565b8015611e6f5780601f10611e4457610100808354040283529160200191611e6f565b820191906000526020600020905b815481529060010190602001808311611e5257829003601f168201915b50505050508152602001600182018054611e8890612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb490612d00565b8015611f015780601f10611ed657610100808354040283529160200191611f01565b820191906000526020600020905b815481529060010190602001808311611ee457829003601f168201915b505050505081525050905060008160000151604051602001611f239190613395565b60408051808303601f190181529190529695505050505050565b601054606090600090611f52886107d061112e565b611f5c9190612d7e565b905080866040018181525050600060108281548110611f7d57611f7d612fcf565b9060005260206000209060020201604051806040016040529081600082018054611fa690612d00565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290612d00565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050815260200160018201805461203890612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461206490612d00565b80156120b15780601f10612086576101008083540402835291602001916120b1565b820191906000526020600020905b81548152906001019060200180831161209457829003601f168201915b5050505050815250509050606060005b868110156122b2578761217c57816120f86120dd836002612f9c565b6120e8906003612f9c565b8b6101c00151611d269190612d92565b845161212e612108856002612f9c565b612113906003612f9c565b6101c08e0151612124906003612d92565b611d269190612d92565b600f8a8154811061214157612141612fcf565b9060005260206000209060020201600001604051602001612166959493929190613492565b60405160208183030381529060405291506122a0565b87600114156121de57816121946120dd836002612f9c565b600f88815481106121a7576121a7612fcf565b90600052602060002090600202016000016121c88460026121089190612f9c565b865160405161216695949392919060200161354b565b87600214156122a057816121f66120dd836003612f9c565b600f888154811061220957612209612fcf565b60009182526020909120600290910201612227612108856003612f9c565b8651612254612237876003612f9c565b612242906003612f9c565b8f6101c0015160066121249190612d92565b600f8c8154811061226757612267612fcf565b906000526020600020906002020160000160405160200161228e9796959493929190613602565b60405160208183030381529060405291505b806122aa81613238565b9150506120c1565b5098975050505050505050565b60608060005b8481101561232357816122ec6122dc836003612f9c565b886101e00151611d269190612d92565b856040516020016122ff939291906136e5565b6040516020818303038152906040529150808061231b90613238565b9150506122c5565b50949350505050565b60125460609060009061234187610fa061112e565b61234b9190612d7e565b9050808561010001818152505060006012828154811061236d5761236d612fcf565b906000526020600020906002020160405180604001604052908160008201805461239690612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546123c290612d00565b801561240f5780601f106123e45761010080835404028352916020019161240f565b820191906000526020600020905b8154815290600101906020018083116123f257829003601f168201915b5050505050815260200160018201805461242890612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461245490612d00565b80156124a15780601f10612476576101008083540402835291602001916124a1565b820191906000526020600020905b81548152906001019060200180831161248457829003601f168201915b505050505081525050905060006013805490506124c089610fa161112e565b6124ca9190612d7e565b905080876101200181815250506000601382815481106124ec576124ec612fcf565b906000526020600020906002020160405180604001604052908160008201805461251590612d00565b80601f016020809104026020016040519081016040528092919081815260200182805461254190612d00565b801561258e5780601f106125635761010080835404028352916020019161258e565b820191906000526020600020905b81548152906001019060200180831161257157829003601f168201915b505050505081526020016001820180546125a790612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546125d390612d00565b80156126205780601f106125f557610100808354040283529160200191612620565b820191906000526020600020905b81548152906001019060200180831161260357829003601f168201915b5050505050815250509050606060005b8781101561272157886126bf578161266761264c836002612f9c565b612657906003612f9c565b8c6102000151611d269190612d92565b8451612693612677856002612f9c565b612682906003612f9c565b6102008f0151612124906003612d92565b88516040516126a9959493929190602001613771565b604051602081830303815290604052915061270f565b886001141561270f57816126d761264c836002612f9c565b86516126e7612677856002612f9c565b86516040516126fd959493929190602001613771565b60405160208183030381529060405291505b8061271981613238565b915050612630565b509998505050505050505050565b606061276e6040518060400160405280600a815260200169109858dad9dc9bdd5b9960b21b815250600e84600001518154811061171d5761171d612fcf565b6127ab6040518060400160405280600a8152602001692137b23c9021b7b637b960b11b815250600f85602001518154811061171d5761171d612fcf565b6127e86040518060400160405280600a8152602001692a30b4b61021b7b637b960b11b815250601086604001518154811061171d5761171d612fcf565b6128276040518060400160405280600c81526020016b2a30b4b6102830ba3a32b93760a11b815250601487606001518154811061171d5761171d612fcf565b61285d6040518060400160405280600d81526020016c5461696c205365676d656e747360981b8152506116d9886080015161193d565b6040516020016119279594939291906137fc565b6060828261289c578360405160200161288a91906138a8565b60405160208183030381529060405290505b84816040516020016128af9291906138d6565b6040516020818303038152906040529150509392505050565b8280546128d490612d00565b90600052602060002090601f0160209004810192826128f6576000855561293c565b82601f1061290f5782800160ff1982351617855561293c565b8280016001018555821561293c579182015b8281111561293c578235825591602001919060010190612921565b5061294892915061294c565b5090565b5b80821115612948576000815560010161294d565b80356001600160a01b038116811461297857600080fd5b919050565b6000806040838503121561299057600080fd5b61299983612961565b946020939093013593505050565b6001600160e01b031981168114610b8f57600080fd5b6000602082840312156129cf57600080fd5b81356129da816129a7565b9392505050565b600080602083850312156129f457600080fd5b823567ffffffffffffffff80821115612a0c57600080fd5b818501915085601f830112612a2057600080fd5b813581811115612a2f57600080fd5b866020828501011115612a4157600080fd5b60209290920196919550909350505050565b60005b83811015612a6e578181015183820152602001612a56565b8381111561094f5750506000910152565b60008151808452612a97816020860160208601612a53565b601f01601f19169290920160200192915050565b6020815260006129da6020830184612a7f565b600060208284031215612ad057600080fd5b5035919050565b600080600060608486031215612aec57600080fd5b612af584612961565b9250612b0360208501612961565b9150604084013590509250925092565b8035801515811461297857600080fd5b60008060408385031215612b3657600080fd5b82359150612b4660208401612b13565b90509250929050565b60008060408385031215612b6257600080fd5b612b6b83612961565b9150612b4660208401612b13565b600060208284031215612b8b57600080fd5b6129da82612961565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612bc057600080fd5b612bc985612961565b9350612bd760208601612961565b925060408501359150606085013567ffffffffffffffff80821115612bfb57600080fd5b818701915087601f830112612c0f57600080fd5b813581811115612c2157612c21612b94565b604051601f8201601f19908116603f01168101908382118183101715612c4957612c49612b94565b816040528281528a6020848701011115612c6257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c9957600080fd5b612ca283612961565b9150612b4660208401612961565b600060208284031215612cc257600080fd5b6129da82612b13565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d1457607f821691505b60208210811415612d3557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612d6357612d63612d3b565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612d8d57612d8d612d68565b500690565b60008219821115612da557612da5612d3b565b500190565b60008151612dbc818560208601612a53565b9290920192915050565b60008251612dd8818460208701612a53565b9190910192915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251612e1a81601a850160208701612a53565b91909101601a0192915050565b6a3d90113730b6b2911d101160a91b81526802132b2b634b732bd160bd1b600b8201528351600090612e60816014850160208901612a53565b7f222c20226465736372697074696f6e223a2022627a7a20627a7a222c200000006014918401918201526d01130ba3a3934b13aba32b9911d160951b60318201528451612eb481603f840160208901612a53565b6b16101134b6b0b3b2911d101160a11b603f92909101918201528351612ee181604b840160208801612a53565b61227d60f01b604b9290910191820152604d0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612f3581601d850160208701612a53565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7590830184612a7f565b9695505050505050565b600060208284031215612f9157600080fd5b81516129da816129a7565b6000816000190483118215151615612fb657612fb6612d3b565b500290565b600082612fca57612fca612d68565b500490565b634e487b7160e01b600052603260045260246000fd5b7f3c7376672076657273696f6e3d22312e31222077696474683d2231303030222081526d03432b4b3b43a1e911898181811160951b6020808301919091527f76696577426f783d223020302031303030203130303022207374726f6b652d6c602e8301526e034b732b1b0b81e913937bab732111608d1b604e8301527f786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376605d8301526203391160ed1b607d8301527f786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f3160808301526a1c9c9c97bc3634b735911f60a91b60a083015286516000916130e490829060ab8601908b01612a53565b8651908301906130fb8160ab840160208b01612a53565b61313161311f61311961311360ab858701018b612daa565b89612daa565b87612daa565b651e17b9bb339f60d11b815260060190565b9998505050505050505050565b60008a51613150818460208f01612a53565b8a5190830190613164818360208f01612a53565b600b60fa1b91018181528a51909190613184816001850160208f01612a53565b6001920191820181905289516131a1816002850160208e01612a53565b6002920191820181905288516131be816003850160208d01612a53565b600392019182015286516131d9816004840160208b01612a53565b61322761321a6131196132076132146132076132016004888a0101600b60fa1b815260010190565b8d612daa565b600b60fa1b815260010190565b8a612daa565b605d60f81b815260010190565b9d9c50505050505050505050505050565b600060001982141561324c5761324c612d3b565b5060010190565b7f22202f3e3c726563742077696474683d22332522206865696768743d22332522815263103c1e9160e11b602082015260240190565b60008851602061329c8285838e01612a53565b60008051602061394b83398151915291840191825289516132c281838501848e01612a53565b651291103c9e9160d11b920181810183905289519092906132e981602686018d8601612a53565b681291103334b6361e9160b91b60269490910193840152885161331281602f8601858d01612a53565b613320602f82860101613253565b93505087516133328185858c01612a53565b92909201918252855161334b8160068501848a01612a53565b61338561337561336f600684870101681291103334b6361e9160b91b815260090190565b88612daa565b631110179f60e11b815260040190565b9c9b505050505050505050505050565b7f3c726563742077696474683d223130302522206865696768743d223130302522815266103334b6361e9160c91b6020820152600082516133dd816027850160208701612a53565b631110179f60e11b6027939091019283015250602b01919050565b8054600090600181811c908083168061341257607f831692505b602080841082141561343457634e487b7160e01b600052602260045260246000fd5b818015613448576001811461345957613486565b60ff19861689528489019650613486565b60008881526020902060005b8681101561347e5781548b820152908501908301613465565b505084890196505b50505050505092915050565b6000865160206134a58285838c01612a53565b60008051602061394b83398151915291840191825287516134cb81838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b920181810183905287519092906134fd81603186018b8601612a53565b61350b603182860101613253565b935050865161351d8185858b01612a53565b929092019182525061353260118201856133f8565b631110179f60e11b815260040198975050505050505050565b60008651602061355e8285838c01612a53565b60008051602061394b833981519152918401918252875161358481838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b9201818101839052916135b76135b2603185018a6133f8565b613253565b925086516135c88185858b01612a53565b9290920191825284516135e18160118501848901612a53565b631110179f60e11b6011939091019283015250601501979650505050505050565b6000885160206136158285838e01612a53565b60008051602061394b833981519152918401918252895161363b81838501848e01612a53565b701291103c9e911a981291103334b6361e9160791b9201818101839052916136696135b2603185018c6133f8565b9250885161367a8185858d01612a53565b80840193505080835287516136958160118601858c01612a53565b6136a3601182860101613253565b93505086516136b58185858b01612a53565b92909201918252506136ca60118201856133f8565b631110179f60e11b81526004019a9950505050505050505050565b600084516136f7818460208901612a53565b808301905060008051602061394b83398151915281528451613720816020840160208901612a53565b808201915050701291103c9e911a981291103334b6361e9160791b60208201528351613753816031840160208801612a53565b631110179f60e11b6031929091019182015260350195945050505050565b6000865160206137848285838c01612a53565b60008051602061394b83398151915291840191825287516137aa81838501848c01612a53565b701291103c9e911a981291103334b6361e9160791b920181810183905287519092906137dc81603186018b8601612a53565b6137ea603182860101613253565b93505086516135c88185858b01612a53565b605b60f81b815260008651613818816001850160208b01612a53565b8083019050600b60fa1b806001830152875161383b816002850160208c01612a53565b600292019182018190528651613858816003850160208b01612a53565b600392019182018190528551613875816004850160208a01612a53565b600492019182018190528451613892816005850160208901612a53565b6005920191820152600601979650505050505050565b6000601160f91b80835283516138c5816001860160208801612a53565b600193019283015250600201919050565b703d90113a3930b4ba2fba3cb832911d101160791b81528251600090613903816011850160208801612a53565b6b0111610113b30b63ab2911d160a51b601191840191820152835161392f81601d840160208801612a53565b61207d60f01b601d9290910191820152601f0194935050505056fe3c726563742077696474683d22332522206865696768743d2233252220783d224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207e75b3bae666b71f48c6a46112e87c3e7c7c44b75f6565ac16dd7b6481fada4a64736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000208f00000000000000000000000000000000000000000000000000000000000000084265656c696e657a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003425a5a0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Beelinez
Arg [1] : _symbol (string): BZZ
Arg [2] : _cap (uint256): 8335

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000208f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4265656c696e657a000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 425a5a0000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.