ETH Price: $2,452.50 (+2.34%)

Token

CryptoArtToken (CART)
 

Overview

Max Total Supply

946 CART

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
auroraxxxx.eth
Balance
1 CART
0x6D938CbE86b4763691f702577d4046F656aCb3c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Asia's cryptoart NFT trading market.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KnownOriginDigitalAssetV2

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 16: KnownOriginDigitalAssetV2.sol
pragma solidity ^0.4.24;

// allows for multi-address access controls to different functions
import "./AccessControl.sol";

// Prevents stuck ether
import "./HasNoEther.sol";

// For safe maths operations
import "./SafeMath.sol";

// Pause purchasing only in case of emergency/migration
import "./Pausable.sol";

// ERC721
import "./ERC721Token.sol";

// Utils only
import "./Strings.sol";

/**
* @title KnownOriginDigitalAsset - V2
*
* http://www.knownorigin.io/
*
* ERC721 compliant digital assets for real-world artwork.
*
* Base NFT Issuance Contract
*
* BE ORIGINAL. BUY ORIGINAL.
*
*/
contract KnownOriginDigitalAssetV2 is
ERC721Token,
AccessControl,
HasNoEther,
Pausable
{
  using SafeMath for uint256;

  ////////////
  // Events //
  ////////////

  // Emitted on purchases from within this contract
  event Purchase(
    uint256 indexed _tokenId,
    uint256 indexed _editionNumber,
    address indexed _buyer,
    uint256 _priceInWei
  );

  // Emitted on every mint
  event Minted(
    uint256 indexed _tokenId,
    uint256 indexed _editionNumber,
    address indexed _buyer
  );

  // Emitted on every edition created
  event EditionCreated(
    uint256 indexed _editionNumber,
    bytes32 indexed _editionData,
    uint256 indexed _editionType
  );

  ////////////////
  // Properties //
  ////////////////

  uint256 constant internal MAX_UINT32 = ~uint32(0);

  string public tokenBaseURI = "https://ipfs.infura.io/ipfs/";

  // simple counter to keep track of the highest edition number used
  uint256 public highestEditionNumber;

  // total wei been processed through the contract
  uint256 public totalPurchaseValueInWei;

  // number of assets minted of any type
  uint256 public totalNumberMinted;

  // number of assets available of any type
  uint256 public totalNumberAvailable;

  // the KO account which can receive commission
  address public koCommissionAccount;

  // Optional commission split can be defined per edition
  mapping(uint256 => CommissionSplit) editionNumberToOptionalCommissionSplit;

  // Simple structure providing an optional commission split per edition purchase
  struct CommissionSplit {
    uint256 rate;
    address recipient;
  }

  // Object for edition details
  struct EditionDetails {
    // Identifiers
    uint256 editionNumber;    // the range e.g. 10000
    bytes32 editionData;      // some data about the edition
    uint256 editionType;      // e.g. 1 = KODA V1, 2 = KOTA, 3 = Bespoke partnership
    // Config
    uint256 startDate;        // date when the edition goes on sale
    uint256 endDate;          // date when the edition is available until
    address artistAccount;    // artists account
    uint256 artistCommission; // base artists commission, could be overridden by external contracts
    uint256 priceInWei;       // base price for edition, could be overridden by external contracts
    string tokenURI;          // IPFS hash - see base URI
    bool active;              // Root control - on/off for the edition
    // Counters
    uint256 totalSupply;      // Total purchases or mints
    uint256 totalAvailable;   // Total number available to be purchased
  }

  // _editionNumber : EditionDetails
  mapping(uint256 => EditionDetails) internal editionNumberToEditionDetails;

  // _tokenId : _editionNumber
  mapping(uint256 => uint256) internal tokenIdToEditionNumber;

  // _editionNumber : [_tokenId, _tokenId]
  mapping(uint256 => uint256[]) internal editionNumberToTokenIds;
  mapping(uint256 => uint256) internal editionNumberToTokenIdIndex;

  // _artistAccount : [_editionNumber, _editionNumber]
  mapping(address => uint256[]) internal artistToEditionNumbers;
  mapping(uint256 => uint256) internal editionNumberToArtistIndex;

  // _editionType : [_editionNumber, _editionNumber]
  mapping(uint256 => uint256[]) internal editionTypeToEditionNumber;
  mapping(uint256 => uint256) internal editionNumberToTypeIndex;

  ///////////////
  // Modifiers // 
  ///////////////

  modifier onlyAvailableEdition(uint256 _editionNumber) {
    require(editionNumberToEditionDetails[_editionNumber].totalSupply < editionNumberToEditionDetails[_editionNumber].totalAvailable, "No more editions left to purchase");
    _;
  }

  modifier onlyActiveEdition(uint256 _editionNumber) {
    require(editionNumberToEditionDetails[_editionNumber].active, "Edition not active");
    _;
  }

  modifier onlyRealEdition(uint256 _editionNumber) {
    require(editionNumberToEditionDetails[_editionNumber].editionNumber > 0, "Edition number invalid");
    _;
  }

  modifier onlyValidTokenId(uint256 _tokenId) {
    require(exists(_tokenId), "Token ID does not exist");
    _;
  }

  modifier onlyPurchaseDuringWindow(uint256 _editionNumber) {
    require(editionNumberToEditionDetails[_editionNumber].startDate <= block.timestamp, "Edition not available yet");
    require(editionNumberToEditionDetails[_editionNumber].endDate >= block.timestamp, "Edition no longer available");
    _;
  }

  /*
   * Constructor
   */
  constructor () public payable ERC721Token("CryptoArtToken", "CART") {
    // set commission account to contract creator
    koCommissionAccount = msg.sender;
  }

  /**
   * @dev Creates an active edition from the given configuration
   * @dev Only callable from KO staff/addresses
   */
  function createActiveEdition(
    uint256 _editionNumber,
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalAvailable
  )
  public
  onlyIfKnownOrigin
  returns (bool)
  {
    return _createEdition(_editionNumber, _editionData, _editionType, _startDate, _endDate, _artistAccount, _artistCommission, _priceInWei, _tokenURI, _totalAvailable, true);
  }

  /**
   * @dev Creates an inactive edition from the given configuration
   * @dev Only callable from KO staff/addresses
   */
  function createInactiveEdition(
    uint256 _editionNumber,
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalAvailable
  )
  public
  onlyIfKnownOrigin
  returns (bool)
  {
    return _createEdition(_editionNumber, _editionData, _editionType, _startDate, _endDate, _artistAccount, _artistCommission, _priceInWei, _tokenURI, _totalAvailable, false);
  }

  /**
   * @dev Creates an active edition from the given configuration
   * @dev The concept of pre0minted editions means we can 'undermint' token IDS, good for holding back editions from public sale
   * @dev Only callable from KO staff/addresses
   */
  function createActivePreMintedEdition(
    uint256 _editionNumber,
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalSupply,
    uint256 _totalAvailable
  )
  public
  onlyIfKnownOrigin
  returns (bool)
  {
    _createEdition(_editionNumber, _editionData, _editionType, _startDate, _endDate, _artistAccount, _artistCommission, _priceInWei, _tokenURI, _totalAvailable, true);
    updateTotalSupply(_editionNumber, _totalSupply);
    return true;
  }

  /**
   * @dev Creates an inactive edition from the given configuration
   * @dev The concept of pre0minted editions means we can 'undermint' token IDS, good for holding back editions from public sale
   * @dev Only callable from KO staff/addresses
   */
  function createInactivePreMintedEdition(
    uint256 _editionNumber,
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalSupply,
    uint256 _totalAvailable
  )
  public
  onlyIfKnownOrigin
  returns (bool)
  {
    _createEdition(_editionNumber, _editionData, _editionType, _startDate, _endDate, _artistAccount, _artistCommission, _priceInWei, _tokenURI, _totalAvailable, false);
    updateTotalSupply(_editionNumber, _totalSupply);
    return true;
  }

  /**
   * @dev Internal factory method for building editions
   */
  function _createEdition(
    uint256 _editionNumber,
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalAvailable,
    bool _active
  )
  internal
  returns (bool)
  {
    // Prevent missing edition number
    require(_editionNumber != 0, "Edition number not provided");

    // Prevent edition number lower than last one used
    require(_editionNumber > highestEditionNumber, "Edition number must be greater than previously used");

    // Check previously edition plus total available is less than new edition number
    require(highestEditionNumber.add(editionNumberToEditionDetails[highestEditionNumber].totalAvailable) < _editionNumber, "Edition number must be greater than previously used plus total available");

    // Prevent missing types
    require(_editionType != 0, "Edition type not provided");

    // Prevent missing token URI
    require(bytes(_tokenURI).length != 0, "Token URI is missing");

    // Prevent empty artists address
    require(_artistAccount != address(0), "Artist account not provided");

    // Prevent invalid commissions
    require(_artistCommission <= 100 && _artistCommission >= 0, "Artist commission cannot be greater than 100 or less than 0");

    // Prevent duplicate editions
    require(editionNumberToEditionDetails[_editionNumber].editionNumber == 0, "Edition already in existence");

    // Default end date to max uint256
    uint256 endDate = _endDate;
    if (_endDate == 0) {
      endDate = MAX_UINT32;
    }

    editionNumberToEditionDetails[_editionNumber] = EditionDetails({
      editionNumber : _editionNumber,
      editionData : _editionData,
      editionType : _editionType,
      startDate : _startDate,
      endDate : endDate,
      artistAccount : _artistAccount,
      artistCommission : _artistCommission,
      priceInWei : _priceInWei,
      tokenURI : _tokenURI,
      totalSupply : 0, // default to all available
      totalAvailable : _totalAvailable,
      active : _active
      });

    // Add to total available count
    totalNumberAvailable = totalNumberAvailable.add(_totalAvailable);

    // Update mappings
    _updateArtistLookupData(_artistAccount, _editionNumber);
    _updateEditionTypeLookupData(_editionType, _editionNumber);

    emit EditionCreated(_editionNumber, _editionData, _editionType);

    // Update the edition pointer if needs be
    highestEditionNumber = _editionNumber;

    return true;
  }

  function _updateEditionTypeLookupData(uint256 _editionType, uint256 _editionNumber) internal {
    uint256 typeEditionIndex = editionTypeToEditionNumber[_editionType].length;
    editionTypeToEditionNumber[_editionType].push(_editionNumber);
    editionNumberToTypeIndex[_editionNumber] = typeEditionIndex;
  }

  function _updateArtistLookupData(address _artistAccount, uint256 _editionNumber) internal {
    uint256 artistEditionIndex = artistToEditionNumbers[_artistAccount].length;
    artistToEditionNumbers[_artistAccount].push(_editionNumber);
    editionNumberToArtistIndex[_editionNumber] = artistEditionIndex;
  }

  /**
   * @dev Public entry point for purchasing an edition
   * @dev Reverts if edition is invalid
   * @dev Reverts if payment not provided in full
   * @dev Reverts if edition is sold out
   * @dev Reverts if edition is not active or available
   */
  function purchase(uint256 _editionNumber)
  public
  payable
  returns (uint256) {
    return purchaseTo(msg.sender, _editionNumber);
  }

  /**
   * @dev Public entry point for purchasing an edition on behalf of someone else
   * @dev Reverts if edition is invalid
   * @dev Reverts if payment not provided in full
   * @dev Reverts if edition is sold out
   * @dev Reverts if edition is not active or available
   */
  function purchaseTo(address _to, uint256 _editionNumber)
  public
  payable
  whenNotPaused
  onlyRealEdition(_editionNumber)
  onlyActiveEdition(_editionNumber)
  onlyAvailableEdition(_editionNumber)
  onlyPurchaseDuringWindow(_editionNumber)
  returns (uint256) {

    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    require(msg.value >= _editionDetails.priceInWei, "Value must be greater than price of edition");

    // Construct next token ID e.g. 100000 + 1 = ID of 100001 (this first in the edition set)
    uint256 _tokenId = _nextTokenId(_editionNumber);

    // Create the token
    _mintToken(_to, _tokenId, _editionNumber, _editionDetails.tokenURI);

    // Splice funds and handle commissions
    _handleFunds(_editionNumber, _editionDetails.priceInWei, _editionDetails.artistAccount, _editionDetails.artistCommission);

    // Broadcast purchase
    emit Purchase(_tokenId, _editionNumber, _to, msg.value);

    return _tokenId;
  }

  /**
   * @dev Private (KO only) method for minting editions
   * @dev Payment not needed for this method
   */
  function mint(address _to, uint256 _editionNumber)
  public
  onlyIfMinter
  onlyRealEdition(_editionNumber)
  onlyAvailableEdition(_editionNumber)
  returns (uint256) {
    // Construct next token ID e.g. 100000 + 1 = ID of 100001 (this first in the edition set)
    uint256 _tokenId = _nextTokenId(_editionNumber);

    // Create the token
    _mintToken(_to, _tokenId, _editionNumber, editionNumberToEditionDetails[_editionNumber].tokenURI);

    // Create the token
    return _tokenId;
  }

  /**
   * @dev Private (KO only) method for under minting editions
   * @dev Under minting allows for token IDs to be back filled if total supply is not set to zero by default
   * @dev Payment not needed for this method
   */
  function underMint(address _to, uint256 _editionNumber)
  public
  onlyIfUnderMinter
  onlyRealEdition(_editionNumber)
  returns (uint256) {
    // Under mint token, meaning it takes one from the already sold version
    uint256 _tokenId = _underMintNextTokenId(_editionNumber);

    // If the next tokenId generate is more than the available number, abort as we have reached maximum under mint
    if (_tokenId > _editionNumber.add(editionNumberToEditionDetails[_editionNumber].totalAvailable)) {
      revert("Reached max tokenId, cannot under mint anymore");
    }

    // Create the token
    _mintToken(_to, _tokenId, _editionNumber, editionNumberToEditionDetails[_editionNumber].tokenURI);

    // Create the token
    return _tokenId;
  }

  function _nextTokenId(uint256 _editionNumber) internal returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];

    // Bump number totalSupply
    _editionDetails.totalSupply = _editionDetails.totalSupply.add(1);

    // Construct next token ID e.g. 100000 + 1 = ID of 100001 (this first in the edition set)
    return _editionDetails.editionNumber.add(_editionDetails.totalSupply);
  }

  function _underMintNextTokenId(uint256 _editionNumber) internal returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];

    // For old editions start the counter as edition + 1
    uint256 _tokenId = _editionDetails.editionNumber.add(1);

    // Work your way up until you find a free token based on the new _tokenIdd
    while (exists(_tokenId)) {
      _tokenId = _tokenId.add(1);
    }

    // Bump number totalSupply if we are now over minting new tokens
    if (_tokenId > _editionDetails.editionNumber.add(_editionDetails.totalSupply)) {
      _editionDetails.totalSupply = _editionDetails.totalSupply.add(1);
    }

    return _tokenId;
  }

  function _mintToken(address _to, uint256 _tokenId, uint256 _editionNumber, string _tokenURI) internal {

    // Mint new base token
    super._mint(_to, _tokenId);
    super._setTokenURI(_tokenId, _tokenURI);

    // Maintain mapping for tokenId to edition for lookup
    tokenIdToEditionNumber[_tokenId] = _editionNumber;

    // Get next insert position for edition to token Id mapping
    uint256 currentIndexOfTokenId = editionNumberToTokenIds[_editionNumber].length;

    // Maintain mapping of edition to token array for "edition minted tokens"
    editionNumberToTokenIds[_editionNumber].push(_tokenId);

    // Maintain a position index for the tokenId within the edition number mapping array, used for clean up token burn
    editionNumberToTokenIdIndex[_tokenId] = currentIndexOfTokenId;

    // Record sale volume
    totalNumberMinted = totalNumberMinted.add(1);

    // Emit minted event
    emit Minted(_tokenId, _editionNumber, _to);
  }

  function _handleFunds(uint256 _editionNumber, uint256 _priceInWei, address _artistAccount, uint256 _artistCommission) internal {

    // Extract the artists commission and send it
    uint256 artistPayment = _priceInWei.div(100).mul(_artistCommission);
    if (artistPayment > 0) {
      _artistAccount.transfer(artistPayment);
    }

    // Load any commission overrides
    CommissionSplit storage commission = editionNumberToOptionalCommissionSplit[_editionNumber];

    // Apply optional commission structure
    if (commission.rate > 0) {
      uint256 rateSplit = _priceInWei.div(100).mul(commission.rate);
      commission.recipient.transfer(rateSplit);
    }

    // Send remaining eth to KO
    uint256 remainingCommission = msg.value.sub(artistPayment).sub(rateSplit);
    koCommissionAccount.transfer(remainingCommission);

    // Record wei sale value
    totalPurchaseValueInWei = totalPurchaseValueInWei.add(msg.value);
  }

  /**
   * @dev Private (KO only) method for burning tokens which have been created incorrectly
   */
  function burn(uint256 _tokenId) public onlyIfKnownOrigin {

    // Clear from parents
    super._burn(ownerOf(_tokenId), _tokenId);

    // Get hold of the edition for cleanup
    uint256 _editionNumber = tokenIdToEditionNumber[_tokenId];

    // Delete token ID mapping
    delete tokenIdToEditionNumber[_tokenId];

    // Delete tokens associated to the edition - this will leave a gap in the array of zero
    uint256[] storage tokenIdsForEdition = editionNumberToTokenIds[_editionNumber];
    uint256 editionTokenIdIndex = editionNumberToTokenIdIndex[_tokenId];
    delete tokenIdsForEdition[editionTokenIdIndex];
  }

  /**
   * @dev An extension to the default ERC721 behaviour, derived from ERC-875.
   * @dev Allowing for batch transfers from the sender, will fail if from does not own all the tokens
   */
  function batchTransfer(address _to, uint256[] _tokenIds) public {
    for (uint i = 0; i < _tokenIds.length; i++) {
      safeTransferFrom(ownerOf(_tokenIds[i]), _to, _tokenIds[i]);
    }
  }

  /**
   * @dev An extension to the default ERC721 behaviour, derived from ERC-875.
   * @dev Allowing for batch transfers from the provided address, will fail if from does not own all the tokens
   */
  function batchTransferFrom(address _from, address _to, uint256[] _tokenIds) public {
    for (uint i = 0; i < _tokenIds.length; i++) {
      transferFrom(_from, _to, _tokenIds[i]);
    }
  }

  //////////////////
  // Base Updates //
  //////////////////

  function updateTokenBaseURI(string _newBaseURI)
  external
  onlyIfKnownOrigin {
    require(bytes(_newBaseURI).length != 0, "Base URI invalid");
    tokenBaseURI = _newBaseURI;
  }

  function updateKoCommissionAccount(address _koCommissionAccount)
  external
  onlyIfKnownOrigin {
    require(_koCommissionAccount != address(0), "Invalid address");
    koCommissionAccount = _koCommissionAccount;
  }

  /////////////////////
  // Edition Updates //
  /////////////////////

  function updateEditionTokenURI(uint256 _editionNumber, string _uri)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].tokenURI = _uri;
  }

  function updatePriceInWei(uint256 _editionNumber, uint256 _priceInWei)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].priceInWei = _priceInWei;
  }

  function updateArtistCommission(uint256 _editionNumber, uint256 _rate)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].artistCommission = _rate;
  }

  function updateArtistsAccount(uint256 _editionNumber, address _artistAccount)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {

    EditionDetails storage _originalEditionDetails = editionNumberToEditionDetails[_editionNumber];

    uint256 editionArtistIndex = editionNumberToArtistIndex[_editionNumber];

    // Get list of editions old artist works with
    uint256[] storage editionNumbersForArtist = artistToEditionNumbers[_originalEditionDetails.artistAccount];

    // Remove edition from artists lists
    delete editionNumbersForArtist[editionArtistIndex];

    // Add new artists to the list
    uint256 newArtistsEditionIndex = artistToEditionNumbers[_artistAccount].length;
    artistToEditionNumbers[_artistAccount].push(_editionNumber);
    editionNumberToArtistIndex[_editionNumber] = newArtistsEditionIndex;

    // Update the edition
    _originalEditionDetails.artistAccount = _artistAccount;
  }

  function updateEditionType(uint256 _editionNumber, uint256 _editionType)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {

    EditionDetails storage _originalEditionDetails = editionNumberToEditionDetails[_editionNumber];

    // Get list of editions for old type
    uint256[] storage editionNumbersForType = editionTypeToEditionNumber[_originalEditionDetails.editionType];

    // Remove edition from old type list
    uint256 editionTypeIndex = editionNumberToTypeIndex[_editionNumber];
    delete editionNumbersForType[editionTypeIndex];

    // Add new type to the list
    uint256 newTypeEditionIndex = editionTypeToEditionNumber[_editionType].length;
    editionTypeToEditionNumber[_editionType].push(_editionNumber);
    editionNumberToTypeIndex[_editionNumber] = newTypeEditionIndex;

    // Update the edition
    _originalEditionDetails.editionType = _editionType;
  }

  function updateActive(uint256 _editionNumber, bool _active)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].active = _active;
  }

  function updateTotalSupply(uint256 _editionNumber, uint256 _totalSupply)
  public
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    require(tokensOfEdition(_editionNumber).length <= _totalSupply, "Can not lower totalSupply to below the number of tokens already in existence");
    editionNumberToEditionDetails[_editionNumber].totalSupply = _totalSupply;
  }

  function updateTotalAvailable(uint256 _editionNumber, uint256 _totalAvailable)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];

    require(_editionDetails.totalSupply <= _totalAvailable, "Unable to reduce available amount to the below the number totalSupply");

    uint256 originalAvailability = _editionDetails.totalAvailable;
    _editionDetails.totalAvailable = _totalAvailable;
    totalNumberAvailable = totalNumberAvailable.sub(originalAvailability).add(_totalAvailable);
  }

  function updateStartDate(uint256 _editionNumber, uint256 _startDate)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].startDate = _startDate;
  }

  function updateEndDate(uint256 _editionNumber, uint256 _endDate)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    editionNumberToEditionDetails[_editionNumber].endDate = _endDate;
  }

  function updateOptionalCommission(uint256 _editionNumber, uint256 _rate, address _recipient)
  external
  onlyIfKnownOrigin
  onlyRealEdition(_editionNumber) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    uint256 artistCommission = _editionDetails.artistCommission;

    if (_rate > 0) {
      require(_recipient != address(0), "Setting a rate must be accompanied by a valid address");
    }
    require(artistCommission.add(_rate) <= 100, "Cant set commission greater than 100%");

    editionNumberToOptionalCommissionSplit[_editionNumber] = CommissionSplit({rate : _rate, recipient : _recipient});
  }

  ///////////////////
  // Token Updates //
  ///////////////////

  function setTokenURI(uint256 _tokenId, string _uri)
  external
  onlyIfKnownOrigin
  onlyValidTokenId(_tokenId) {
    _setTokenURI(_tokenId, _uri);
  }

  ///////////////////
  // Query Methods //
  ///////////////////

  /**
   * @dev Lookup the edition of the provided token ID
   * @dev Returns 0 if not valid
   */
  function editionOfTokenId(uint256 _tokenId) public view returns (uint256 _editionNumber) {
    return tokenIdToEditionNumber[_tokenId];
  }

  /**
   * @dev Lookup all editions added for the given edition type
   * @dev Returns array of edition numbers, any zero edition ids can be ignore/stripped
   */
  function editionsOfType(uint256 _type) public view returns (uint256[] _editionNumbers) {
    return editionTypeToEditionNumber[_type];
  }

  /**
   * @dev Lookup all editions for the given artist account
   * @dev Returns empty list if not valid
   */
  function artistsEditions(address _artistsAccount) public view returns (uint256[] _editionNumbers) {
    return artistToEditionNumbers[_artistsAccount];
  }

  /**
   * @dev Lookup all tokens minted for the given edition number
   * @dev Returns array of token IDs, any zero edition ids can be ignore/stripped
   */
  function tokensOfEdition(uint256 _editionNumber) public view returns (uint256[] _tokenIds) {
    return editionNumberToTokenIds[_editionNumber];
  }

  /**
   * @dev Lookup all owned tokens for the provided address
   * @dev Returns array of token IDs
   */
  function tokensOf(address _owner) public view returns (uint256[] _tokenIds) {
    return ownedTokens[_owner];
  }

  /**
   * @dev Checks to see if the edition exists, assumes edition of zero is invalid
   */
  function editionExists(uint256 _editionNumber) public view returns (bool) {
    if (_editionNumber == 0) {
      return false;
    }
    EditionDetails storage editionNumber = editionNumberToEditionDetails[_editionNumber];
    return editionNumber.editionNumber == _editionNumber;
  }

  /**
   * @dev Lookup any optional commission split set for the edition
   * @dev Both values will be zero if not present
   */
  function editionOptionalCommission(uint256 _editionNumber) public view returns (uint256 _rate, address _recipient) {
    CommissionSplit storage commission = editionNumberToOptionalCommissionSplit[_editionNumber];
    return (commission.rate, commission.recipient);
  }

  /**
   * @dev Main entry point for looking up edition config/metadata
   * @dev Reverts if invalid edition number provided
   */
  function detailsOfEdition(uint256 editionNumber)
  public view
  onlyRealEdition(editionNumber)
  returns (
    bytes32 _editionData,
    uint256 _editionType,
    uint256 _startDate,
    uint256 _endDate,
    address _artistAccount,
    uint256 _artistCommission,
    uint256 _priceInWei,
    string _tokenURI,
    uint256 _totalSupply,
    uint256 _totalAvailable,
    bool _active
  ) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[editionNumber];
    return (
    _editionDetails.editionData,
    _editionDetails.editionType,
    _editionDetails.startDate,
    _editionDetails.endDate,
    _editionDetails.artistAccount,
    _editionDetails.artistCommission,
    _editionDetails.priceInWei,
    Strings.strConcat(tokenBaseURI, _editionDetails.tokenURI),
    _editionDetails.totalSupply,
    _editionDetails.totalAvailable,
    _editionDetails.active
    );
  }

  /**
   * @dev Lookup a tokens common identifying characteristics
   * @dev Reverts if invalid token ID provided
   */
  function tokenData(uint256 _tokenId)
  public view
  onlyValidTokenId(_tokenId)
  returns (
    uint256 _editionNumber,
    uint256 _editionType,
    bytes32 _editionData,
    string _tokenURI,
    address _owner
  ) {
    uint256 editionNumber = tokenIdToEditionNumber[_tokenId];
    EditionDetails storage editionDetails = editionNumberToEditionDetails[editionNumber];
    return (
    editionNumber,
    editionDetails.editionType,
    editionDetails.editionData,
    tokenURI(_tokenId),
    ownerOf(_tokenId)
    );
  }

  function tokenURI(uint256 _tokenId) public view onlyValidTokenId(_tokenId) returns (string) {
    return Strings.strConcat(tokenBaseURI, tokenURIs[_tokenId]);
  }

  function tokenURISafe(uint256 _tokenId) public view returns (string) {
    return Strings.strConcat(tokenBaseURI, tokenURIs[_tokenId]);
  }

  function purchaseDatesToken(uint256 _tokenId) public view returns (uint256 _startDate, uint256 _endDate) {
    uint256 _editionNumber = tokenIdToEditionNumber[_tokenId];
    return purchaseDatesEdition(_editionNumber);
  }

  function priceInWeiToken(uint256 _tokenId) public view returns (uint256 _priceInWei) {
    uint256 _editionNumber = tokenIdToEditionNumber[_tokenId];
    return priceInWeiEdition(_editionNumber);
  }

  //////////////////////////
  // Edition config query //
  //////////////////////////

  function editionData(uint256 _editionNumber) public view returns (bytes32) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.editionData;
  }

  function editionType(uint256 _editionNumber) public view returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.editionType;
  }

  function purchaseDatesEdition(uint256 _editionNumber) public view returns (uint256 _startDate, uint256 _endDate) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return (
    _editionDetails.startDate,
    _editionDetails.endDate
    );
  }

  function artistCommission(uint256 _editionNumber) public view returns (address _artistAccount, uint256 _artistCommission) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return (
    _editionDetails.artistAccount,
    _editionDetails.artistCommission
    );
  }

  function priceInWeiEdition(uint256 _editionNumber) public view returns (uint256 _priceInWei) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.priceInWei;
  }

  function tokenURIEdition(uint256 _editionNumber) public view returns (string) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return Strings.strConcat(tokenBaseURI, _editionDetails.tokenURI);
  }

  function editionActive(uint256 _editionNumber) public view returns (bool) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.active;
  }

  function totalRemaining(uint256 _editionNumber) public view returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.totalAvailable.sub(_editionDetails.totalSupply);
  }

  function totalAvailableEdition(uint256 _editionNumber) public view returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.totalAvailable;
  }

  function totalSupplyEdition(uint256 _editionNumber) public view returns (uint256) {
    EditionDetails storage _editionDetails = editionNumberToEditionDetails[_editionNumber];
    return _editionDetails.totalSupply;
  }

}

File 1 of 16: AccessControl.sol
pragma solidity ^0.4.24;

import "./Roles.sol";

/**
 * @title Based on OpenZeppelin Whitelist & RBCA contracts
 * @dev The AccessControl contract provides different access for addresses, and provides basic authorization control functions.
 */
contract AccessControl {

  using Roles for Roles.Role;

  uint8 public constant ROLE_KNOWN_ORIGIN = 1;
  uint8 public constant ROLE_MINTER = 2;
  uint8 public constant ROLE_UNDER_MINTER = 3;

  event RoleAdded(address indexed operator, uint8 role);
  event RoleRemoved(address indexed operator, uint8 role);

  address public owner;

  mapping(uint8 => Roles.Role) private roles;

  modifier onlyIfKnownOrigin() {
    require(msg.sender == owner || hasRole(msg.sender, ROLE_KNOWN_ORIGIN));
    _;
  }

  modifier onlyIfMinter() {
    require(msg.sender == owner || hasRole(msg.sender, ROLE_KNOWN_ORIGIN) || hasRole(msg.sender, ROLE_MINTER));
    _;
  }

  modifier onlyIfUnderMinter() {
    require(msg.sender == owner || hasRole(msg.sender, ROLE_KNOWN_ORIGIN) || hasRole(msg.sender, ROLE_UNDER_MINTER));
    _;
  }

  constructor() public {
    owner = msg.sender;
  }

  ////////////////////////////////////
  // Whitelist/RBCA Derived Methods //
  ////////////////////////////////////

  function addAddressToAccessControl(address _operator, uint8 _role)
  public
  onlyIfKnownOrigin
  {
    roles[_role].add(_operator);
    emit RoleAdded(_operator, _role);
  }

  function removeAddressFromAccessControl(address _operator, uint8 _role)
  public
  onlyIfKnownOrigin
  {
    roles[_role].remove(_operator);
    emit RoleRemoved(_operator, _role);
  }

  function checkRole(address _operator, uint8 _role)
  public
  view
  {
    roles[_role].check(_operator);
  }

  function hasRole(address _operator, uint8 _role)
  public
  view
  returns (bool)
  {
    return roles[_role].has(_operator);
  }

}

File 2 of 16: AddressUtils.sol
pragma solidity ^0.4.24;


/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param _addr address to check
   * @return whether the target address is a contract
   */
  function isContract(address _addr) internal view returns (bool) {
    uint256 size;
    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    // solium-disable-next-line security/no-inline-assembly
    assembly { size := extcodesize(_addr) }
    return size > 0;
  }

}

File 3 of 16: ERC165.sol
pragma solidity ^0.4.24;


/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface ERC165 {

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceId The interface identifier, as specified in ERC-165
   * @dev Interface identification is specified in ERC-165. This function
   * uses less than 30,000 gas.
   */
  function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

File 4 of 16: ERC721.sol
pragma solidity ^0.4.24;

import "./ERC721Basic.sol";


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Enumerable is ERC721Basic {
  function totalSupply() public view returns (uint256);
  function tokenOfOwnerByIndex(
    address _owner,
    uint256 _index
  )
    public
    view
    returns (uint256 _tokenId);

  function tokenByIndex(uint256 _index) public view returns (uint256);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Metadata is ERC721Basic {
  function name() external view returns (string _name);
  function symbol() external view returns (string _symbol);
  function tokenURI(uint256 _tokenId) public view returns (string);
}


/**
 * @title ERC-721 Non-Fungible Token Standard, full implementation interface
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721 is ERC721Basic, ERC721Enumerable, ERC721Metadata {
}

File 5 of 16: ERC721Basic.sol
pragma solidity ^0.4.24;

import "./ERC165.sol";


/**
 * @title ERC721 Non-Fungible Token Standard basic interface
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Basic is ERC165 {

  bytes4 internal constant InterfaceId_ERC721 = 0x80ac58cd;
  /*
   * 0x80ac58cd ===
   *   bytes4(keccak256('balanceOf(address)')) ^
   *   bytes4(keccak256('ownerOf(uint256)')) ^
   *   bytes4(keccak256('approve(address,uint256)')) ^
   *   bytes4(keccak256('getApproved(uint256)')) ^
   *   bytes4(keccak256('setApprovalForAll(address,bool)')) ^
   *   bytes4(keccak256('isApprovedForAll(address,address)')) ^
   *   bytes4(keccak256('transferFrom(address,address,uint256)')) ^
   *   bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^
   *   bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)'))
   */

  bytes4 internal constant InterfaceId_ERC721Exists = 0x4f558e79;
  /*
   * 0x4f558e79 ===
   *   bytes4(keccak256('exists(uint256)'))
   */

  bytes4 internal constant InterfaceId_ERC721Enumerable = 0x780e9d63;
  /**
   * 0x780e9d63 ===
   *   bytes4(keccak256('totalSupply()')) ^
   *   bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^
   *   bytes4(keccak256('tokenByIndex(uint256)'))
   */

  bytes4 internal constant InterfaceId_ERC721Metadata = 0x5b5e139f;
  /**
   * 0x5b5e139f ===
   *   bytes4(keccak256('name()')) ^
   *   bytes4(keccak256('symbol()')) ^
   *   bytes4(keccak256('tokenURI(uint256)'))
   */

  event Transfer(
    address indexed _from,
    address indexed _to,
    uint256 indexed _tokenId
  );
  event Approval(
    address indexed _owner,
    address indexed _approved,
    uint256 indexed _tokenId
  );
  event ApprovalForAll(
    address indexed _owner,
    address indexed _operator,
    bool _approved
  );

  function balanceOf(address _owner) public view returns (uint256 _balance);
  function ownerOf(uint256 _tokenId) public view returns (address _owner);
  function exists(uint256 _tokenId) public view returns (bool _exists);

  function approve(address _to, uint256 _tokenId) public;
  function getApproved(uint256 _tokenId)
    public view returns (address _operator);

  function setApprovalForAll(address _operator, bool _approved) public;
  function isApprovedForAll(address _owner, address _operator)
    public view returns (bool);

  function transferFrom(address _from, address _to, uint256 _tokenId) public;
  function safeTransferFrom(address _from, address _to, uint256 _tokenId)
    public;

  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    public;
}

File 6 of 16: ERC721BasicToken.sol
pragma solidity ^0.4.24;

import "./ERC721Basic.sol";
import "./ERC721Receiver.sol";
import "./SafeMath.sol";
import "../../AddressUtils.sol";
import "./SupportsInterfaceWithLookup.sol";


/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {

  using SafeMath for uint256;
  using AddressUtils for address;

  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
  // which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
  bytes4 private constant ERC721_RECEIVED = 0x150b7a02;

  // Mapping from token ID to owner
  mapping (uint256 => address) internal tokenOwner;

  // Mapping from token ID to approved address
  mapping (uint256 => address) internal tokenApprovals;

  // Mapping from owner to number of owned token
  mapping (address => uint256) internal ownedTokensCount;

  // Mapping from owner to operator approvals
  mapping (address => mapping (address => bool)) internal operatorApprovals;

  constructor()
    public
  {
    // register the supported interfaces to conform to ERC721 via ERC165
    _registerInterface(InterfaceId_ERC721);
    _registerInterface(InterfaceId_ERC721Exists);
  }

  /**
   * @dev Gets the balance of the specified address
   * @param _owner address to query the balance of
   * @return uint256 representing the amount owned by the passed address
   */
  function balanceOf(address _owner) public view returns (uint256) {
    require(_owner != address(0));
    return ownedTokensCount[_owner];
  }

  /**
   * @dev Gets the owner of the specified token ID
   * @param _tokenId uint256 ID of the token to query the owner of
   * @return owner address currently marked as the owner of the given token ID
   */
  function ownerOf(uint256 _tokenId) public view returns (address) {
    address owner = tokenOwner[_tokenId];
    require(owner != address(0));
    return owner;
  }

  /**
   * @dev Returns whether the specified token exists
   * @param _tokenId uint256 ID of the token to query the existence of
   * @return whether the token exists
   */
  function exists(uint256 _tokenId) public view returns (bool) {
    address owner = tokenOwner[_tokenId];
    return owner != address(0);
  }

  /**
   * @dev Approves another address to transfer the given token ID
   * The zero address indicates there is no approved address.
   * There can only be one approved address per token at a given time.
   * Can only be called by the token owner or an approved operator.
   * @param _to address to be approved for the given token ID
   * @param _tokenId uint256 ID of the token to be approved
   */
  function approve(address _to, uint256 _tokenId) public {
    address owner = ownerOf(_tokenId);
    require(_to != owner);
    require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

    tokenApprovals[_tokenId] = _to;
    emit Approval(owner, _to, _tokenId);
  }

  /**
   * @dev Gets the approved address for a token ID, or zero if no address set
   * @param _tokenId uint256 ID of the token to query the approval of
   * @return address currently approved for the given token ID
   */
  function getApproved(uint256 _tokenId) public view returns (address) {
    return tokenApprovals[_tokenId];
  }

  /**
   * @dev Sets or unsets the approval of a given operator
   * An operator is allowed to transfer all tokens of the sender on their behalf
   * @param _to operator address to set the approval
   * @param _approved representing the status of the approval to be set
   */
  function setApprovalForAll(address _to, bool _approved) public {
    require(_to != msg.sender);
    operatorApprovals[msg.sender][_to] = _approved;
    emit ApprovalForAll(msg.sender, _to, _approved);
  }

  /**
   * @dev Tells whether an operator is approved by a given owner
   * @param _owner owner address which you want to query the approval of
   * @param _operator operator address which you want to query the approval of
   * @return bool whether the given operator is approved by the given owner
   */
  function isApprovedForAll(
    address _owner,
    address _operator
  )
    public
    view
    returns (bool)
  {
    return operatorApprovals[_owner][_operator];
  }

  /**
   * @dev Transfers the ownership of a given token ID to another address
   * Usage of this method is discouraged, use `safeTransferFrom` whenever possible
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
  */
  function transferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  )
    public
  {
    require(isApprovedOrOwner(msg.sender, _tokenId));
    require(_from != address(0));
    require(_to != address(0));

    clearApproval(_from, _tokenId);
    removeTokenFrom(_from, _tokenId);
    addTokenTo(_to, _tokenId);

    emit Transfer(_from, _to, _tokenId);
  }

  /**
   * @dev Safely transfers the ownership of a given token ID to another address
   * If the target address is a contract, it must implement `onERC721Received`,
   * which is called upon a safe transfer, and return the magic value
   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
   * the transfer is reverted.
   *
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
  */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  )
    public
  {
    // solium-disable-next-line arg-overflow
    safeTransferFrom(_from, _to, _tokenId, "");
  }

  /**
   * @dev Safely transfers the ownership of a given token ID to another address
   * If the target address is a contract, it must implement `onERC721Received`,
   * which is called upon a safe transfer, and return the magic value
   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
   * the transfer is reverted.
   * Requires the msg sender to be the owner, approved, or operator
   * @param _from current owner of the token
   * @param _to address to receive the ownership of the given token ID
   * @param _tokenId uint256 ID of the token to be transferred
   * @param _data bytes data to send along with a safe transfer check
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    public
  {
    transferFrom(_from, _to, _tokenId);
    // solium-disable-next-line arg-overflow
    require(checkAndCallSafeTransfer(_from, _to, _tokenId, _data));
  }

  /**
   * @dev Returns whether the given spender can transfer a given token ID
   * @param _spender address of the spender to query
   * @param _tokenId uint256 ID of the token to be transferred
   * @return bool whether the msg.sender is approved for the given token ID,
   *  is an operator of the owner, or is the owner of the token
   */
  function isApprovedOrOwner(
    address _spender,
    uint256 _tokenId
  )
    internal
    view
    returns (bool)
  {
    address owner = ownerOf(_tokenId);
    // Disable solium check because of
    // https://github.com/duaraghav8/Solium/issues/175
    // solium-disable-next-line operator-whitespace
    return (
      _spender == owner ||
      getApproved(_tokenId) == _spender ||
      isApprovedForAll(owner, _spender)
    );
  }

  /**
   * @dev Internal function to mint a new token
   * Reverts if the given token ID already exists
   * @param _to The address that will own the minted token
   * @param _tokenId uint256 ID of the token to be minted by the msg.sender
   */
  function _mint(address _to, uint256 _tokenId) internal {
    require(_to != address(0));
    addTokenTo(_to, _tokenId);
    emit Transfer(address(0), _to, _tokenId);
  }

  /**
   * @dev Internal function to burn a specific token
   * Reverts if the token does not exist
   * @param _tokenId uint256 ID of the token being burned by the msg.sender
   */
  function _burn(address _owner, uint256 _tokenId) internal {
    clearApproval(_owner, _tokenId);
    removeTokenFrom(_owner, _tokenId);
    emit Transfer(_owner, address(0), _tokenId);
  }

  /**
   * @dev Internal function to clear current approval of a given token ID
   * Reverts if the given address is not indeed the owner of the token
   * @param _owner owner of the token
   * @param _tokenId uint256 ID of the token to be transferred
   */
  function clearApproval(address _owner, uint256 _tokenId) internal {
    require(ownerOf(_tokenId) == _owner);
    if (tokenApprovals[_tokenId] != address(0)) {
      tokenApprovals[_tokenId] = address(0);
    }
  }

  /**
   * @dev Internal function to add a token ID to the list of a given address
   * @param _to address representing the new owner of the given token ID
   * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function addTokenTo(address _to, uint256 _tokenId) internal {
    require(tokenOwner[_tokenId] == address(0));
    tokenOwner[_tokenId] = _to;
    ownedTokensCount[_to] = ownedTokensCount[_to].add(1);
  }

  /**
   * @dev Internal function to remove a token ID from the list of a given address
   * @param _from address representing the previous owner of the given token ID
   * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function removeTokenFrom(address _from, uint256 _tokenId) internal {
    require(ownerOf(_tokenId) == _from);
    ownedTokensCount[_from] = ownedTokensCount[_from].sub(1);
    tokenOwner[_tokenId] = address(0);
  }

  /**
   * @dev Internal function to invoke `onERC721Received` on a target address
   * The call is not executed if the target address is not a contract
   * @param _from address representing the previous owner of the given token ID
   * @param _to target address that will receive the tokens
   * @param _tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return whether the call correctly returned the expected magic value
   */
  function checkAndCallSafeTransfer(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes _data
  )
    internal
    returns (bool)
  {
    if (!_to.isContract()) {
      return true;
    }
    bytes4 retval = ERC721Receiver(_to).onERC721Received(
      msg.sender, _from, _tokenId, _data);
    return (retval == ERC721_RECEIVED);
  }
}

File 7 of 16: ERC721Receiver.sol
pragma solidity ^0.4.24;


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract ERC721Receiver {
  /**
   * @dev Magic value to be returned upon successful reception of an NFT
   *  Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`,
   *  which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
   */
  bytes4 internal constant ERC721_RECEIVED = 0x150b7a02;

  /**
   * @notice Handle the receipt of an NFT
   * @dev The ERC721 smart contract calls this function on the recipient
   * after a `safetransfer`. This function MAY throw to revert and reject the
   * transfer. Return of other than the magic value MUST result in the
   * transaction being reverted.
   * Note: the contract address is always the message sender.
   * @param _operator The address which called `safeTransferFrom` function
   * @param _from The address which previously owned the token
   * @param _tokenId The NFT identifier which is being transferred
   * @param _data Additional data with no specified format
   * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
   */
  function onERC721Received(
    address _operator,
    address _from,
    uint256 _tokenId,
    bytes _data
  )
    public
    returns(bytes4);
}

File 8 of 16: ERC721Token.sol
pragma solidity ^0.4.24;

import "./ERC721.sol";
import "./ERC721BasicToken.sol";
import "./SupportsInterfaceWithLookup.sol";


/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
 */
contract ERC721Token is SupportsInterfaceWithLookup, ERC721BasicToken, ERC721 {

  // Token name
  string internal name_;

  // Token symbol
  string internal symbol_;

  // Mapping from owner to list of owned token IDs
  mapping(address => uint256[]) internal ownedTokens;

  // Mapping from token ID to index of the owner tokens list
  mapping(uint256 => uint256) internal ownedTokensIndex;

  // Array with all token ids, used for enumeration
  uint256[] internal allTokens;

  // Mapping from token id to position in the allTokens array
  mapping(uint256 => uint256) internal allTokensIndex;

  // Optional mapping for token URIs
  mapping(uint256 => string) internal tokenURIs;

  /**
   * @dev Constructor function
   */
  constructor(string _name, string _symbol) public {
    name_ = _name;
    symbol_ = _symbol;

    // register the supported interfaces to conform to ERC721 via ERC165
    _registerInterface(InterfaceId_ERC721Enumerable);
    _registerInterface(InterfaceId_ERC721Metadata);
  }

  /**
   * @dev Gets the token name
   * @return string representing the token name
   */
  function name() external view returns (string) {
    return name_;
  }

  /**
   * @dev Gets the token symbol
   * @return string representing the token symbol
   */
  function symbol() external view returns (string) {
    return symbol_;
  }

  /**
   * @dev Returns an URI for a given token ID
   * Throws if the token ID does not exist. May return an empty string.
   * @param _tokenId uint256 ID of the token to query
   */
  function tokenURI(uint256 _tokenId) public view returns (string) {
    require(exists(_tokenId));
    return tokenURIs[_tokenId];
  }

  /**
   * @dev Gets the token ID at a given index of the tokens list of the requested owner
   * @param _owner address owning the tokens list to be accessed
   * @param _index uint256 representing the index to be accessed of the requested tokens list
   * @return uint256 token ID at the given index of the tokens list owned by the requested address
   */
  function tokenOfOwnerByIndex(
    address _owner,
    uint256 _index
  )
    public
    view
    returns (uint256)
  {
    require(_index < balanceOf(_owner));
    return ownedTokens[_owner][_index];
  }

  /**
   * @dev Gets the total amount of tokens stored by the contract
   * @return uint256 representing the total amount of tokens
   */
  function totalSupply() public view returns (uint256) {
    return allTokens.length;
  }

  /**
   * @dev Gets the token ID at a given index of all the tokens in this contract
   * Reverts if the index is greater or equal to the total number of tokens
   * @param _index uint256 representing the index to be accessed of the tokens list
   * @return uint256 token ID at the given index of the tokens list
   */
  function tokenByIndex(uint256 _index) public view returns (uint256) {
    require(_index < totalSupply());
    return allTokens[_index];
  }

  /**
   * @dev Internal function to set the token URI for a given token
   * Reverts if the token ID does not exist
   * @param _tokenId uint256 ID of the token to set its URI
   * @param _uri string URI to assign
   */
  function _setTokenURI(uint256 _tokenId, string _uri) internal {
    require(exists(_tokenId));
    tokenURIs[_tokenId] = _uri;
  }

  /**
   * @dev Internal function to add a token ID to the list of a given address
   * @param _to address representing the new owner of the given token ID
   * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function addTokenTo(address _to, uint256 _tokenId) internal {
    super.addTokenTo(_to, _tokenId);
    uint256 length = ownedTokens[_to].length;
    ownedTokens[_to].push(_tokenId);
    ownedTokensIndex[_tokenId] = length;
  }

  /**
   * @dev Internal function to remove a token ID from the list of a given address
   * @param _from address representing the previous owner of the given token ID
   * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function removeTokenFrom(address _from, uint256 _tokenId) internal {
    super.removeTokenFrom(_from, _tokenId);

    // To prevent a gap in the array, we store the last token in the index of the token to delete, and
    // then delete the last slot.
    uint256 tokenIndex = ownedTokensIndex[_tokenId];
    uint256 lastTokenIndex = ownedTokens[_from].length.sub(1);
    uint256 lastToken = ownedTokens[_from][lastTokenIndex];

    ownedTokens[_from][tokenIndex] = lastToken;
    // This also deletes the contents at the last position of the array
    ownedTokens[_from].length--;

    // Note that this will handle single-element arrays. In that case, both tokenIndex and lastTokenIndex are going to
    // be zero. Then we can make sure that we will remove _tokenId from the ownedTokens list since we are first swapping
    // the lastToken to the first position, and then dropping the element placed in the last position of the list

    ownedTokensIndex[_tokenId] = 0;
    ownedTokensIndex[lastToken] = tokenIndex;
  }

  /**
   * @dev Internal function to mint a new token
   * Reverts if the given token ID already exists
   * @param _to address the beneficiary that will own the minted token
   * @param _tokenId uint256 ID of the token to be minted by the msg.sender
   */
  function _mint(address _to, uint256 _tokenId) internal {
    super._mint(_to, _tokenId);

    allTokensIndex[_tokenId] = allTokens.length;
    allTokens.push(_tokenId);
  }

  /**
   * @dev Internal function to burn a specific token
   * Reverts if the token does not exist
   * @param _owner owner of the token to burn
   * @param _tokenId uint256 ID of the token being burned by the msg.sender
   */
  function _burn(address _owner, uint256 _tokenId) internal {
    super._burn(_owner, _tokenId);

    // Clear metadata (if any)
    if (bytes(tokenURIs[_tokenId]).length != 0) {
      delete tokenURIs[_tokenId];
    }

    // Reorg all tokens array
    uint256 tokenIndex = allTokensIndex[_tokenId];
    uint256 lastTokenIndex = allTokens.length.sub(1);
    uint256 lastToken = allTokens[lastTokenIndex];

    allTokens[tokenIndex] = lastToken;
    allTokens[lastTokenIndex] = 0;

    allTokens.length--;
    allTokensIndex[_tokenId] = 0;
    allTokensIndex[lastToken] = tokenIndex;
  }

}

File 9 of 16: HasNoEther.sol
pragma solidity ^0.4.24;

import "./Ownable.sol";


/**
 * @title Contracts that should not own Ether
 * @author Remco Bloemen <remco@2π.com>
 * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up
 * in the contract, it will allow the owner to reclaim this Ether.
 * @notice Ether can still be sent to this contract by:
 * calling functions labeled `payable`
 * `selfdestruct(contract_address)`
 * mining directly to the contract address
 */
contract HasNoEther is Ownable {

  /**
  * @dev Constructor that rejects incoming Ether
  * The `payable` flag is added so we can access `msg.value` without compiler warning. If we
  * leave out payable, then Solidity will allow inheriting contracts to implement a payable
  * constructor. By doing it this way we prevent a payable constructor from working. Alternatively
  * we could use assembly to access msg.value.
  */
  constructor() public payable {
    require(msg.value == 0);
  }

  /**
   * @dev Disallows direct send by setting a default function without the `payable` flag.
   */
  function() external {
  }

  /**
   * @dev Transfer all Ether held by the contract to the owner.
   */
  function reclaimEther() external onlyOwner {
    owner.transfer(address(this).balance);
  }
}

File 11 of 16: Ownable.sol
pragma solidity ^0.4.24;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

File 12 of 16: Pausable.sol
pragma solidity ^0.4.24;


import "./Ownable.sol";


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() public onlyOwner whenNotPaused {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() public onlyOwner whenPaused {
    paused = false;
    emit Unpause();
  }
}

File 13 of 16: Roles.sol
pragma solidity ^0.4.24;


/**
 * @title Roles
 * @author Francisco Giordano (@frangio)
 * @dev Library for managing addresses assigned to a Role.
 * See RBAC.sol for example usage.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an address access to this role
   */
  function add(Role storage _role, address _addr)
    internal
  {
    _role.bearer[_addr] = true;
  }

  /**
   * @dev remove an address' access to this role
   */
  function remove(Role storage _role, address _addr)
    internal
  {
    _role.bearer[_addr] = false;
  }

  /**
   * @dev check if an address has this role
   * // reverts
   */
  function check(Role storage _role, address _addr)
    internal
    view
  {
    require(has(_role, _addr));
  }

  /**
   * @dev check if an address has this role
   * @return bool
   */
  function has(Role storage _role, address _addr)
    internal
    view
    returns (bool)
  {
    return _role.bearer[_addr];
  }
}

File 14 of 16: SafeMath.sol
pragma solidity ^0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}

File 15 of 16: Strings.sol
pragma solidity ^0.4.19;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string _a, string _b, string _c, string _d, string _e) internal pure returns (string) {
    bytes memory _ba = bytes(_a);
    bytes memory _bb = bytes(_b);
    bytes memory _bc = bytes(_c);
    bytes memory _bd = bytes(_d);
    bytes memory _be = bytes(_e);
    string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
    bytes memory babcde = bytes(abcde);
    uint k = 0;
    for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
    for (i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
    for (i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
    for (i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
    for (i = 0; i < _be.length; i++) babcde[k++] = _be[i];
    return string(babcde);
  }

  function strConcat(string _a, string _b) internal pure returns (string) {
    return strConcat(_a, _b, "", "", "");
  }
}

File 16 of 16: SupportsInterfaceWithLookup.sol
pragma solidity ^0.4.24;

import "./ERC165.sol";


/**
 * @title SupportsInterfaceWithLookup
 * @author Matt Condon (@shrugs)
 * @dev Implements ERC165 using a lookup table.
 */
contract SupportsInterfaceWithLookup is ERC165 {

  bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
  /**
   * 0x01ffc9a7 ===
   *   bytes4(keccak256('supportsInterface(bytes4)'))
   */

  /**
   * @dev a mapping of interface id to whether or not it's supported
   */
  mapping(bytes4 => bool) internal supportedInterfaces;

  /**
   * @dev A contract implementing SupportsInterfaceWithLookup
   * implement ERC165 itself
   */
  constructor()
    public
  {
    _registerInterface(InterfaceId_ERC165);
  }

  /**
   * @dev implement supportsInterface(bytes4) using a lookup table
   */
  function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool)
  {
    return supportedInterfaces[_interfaceId];
  }

  /**
   * @dev private method for registering an interface
   */
  function _registerInterface(bytes4 _interfaceId)
    internal
  {
    require(_interfaceId != 0xffffffff);
    supportedInterfaces[_interfaceId] = true;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_active","type":"bool"}],"name":"updateActive","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"priceInWeiToken","outputs":[{"name":"_priceInWei","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_koCommissionAccount","type":"address"}],"name":"updateKoCommissionAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"InterfaceId_ERC165","outputs":[{"name":"","type":"bytes4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"editionData","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newBaseURI","type":"string"}],"name":"updateTokenBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"uint8"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalPurchaseValueInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_startDate","type":"uint256"}],"name":"updateStartDate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"artistCommission","outputs":[{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"tokenURIEdition","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_editionNumber","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalNumberAvailable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"uint8"}],"name":"addAddressToAccessControl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"priceInWeiEdition","outputs":[{"name":"_priceInWei","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenBaseURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_rate","type":"uint256"}],"name":"updateArtistCommission","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"editionType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOf","outputs":[{"name":"_tokenIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"purchaseDatesEdition","outputs":[{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_artistsAccount","type":"address"}],"name":"artistsEditions","outputs":[{"name":"_editionNumbers","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"totalAvailableEdition","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"koCommissionAccount","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"editionNumber","type":"uint256"}],"name":"detailsOfEdition","outputs":[{"name":"_editionData","type":"bytes32"},{"name":"_editionType","type":"uint256"},{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"},{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"},{"name":"_priceInWei","type":"uint256"},{"name":"_tokenURI","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_totalAvailable","type":"uint256"},{"name":"_active","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_uri","type":"string"}],"name":"updateEditionTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"tokensOfEdition","outputs":[{"name":"_tokenIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_editionNumber","type":"uint256"}],"name":"underMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_priceInWei","type":"uint256"}],"name":"updatePriceInWei","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"editionOfTokenId","outputs":[{"name":"_editionNumber","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_editionNumber","type":"uint256"}],"name":"purchaseTo","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionData","type":"bytes32"},{"name":"_editionType","type":"uint256"},{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"},{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"},{"name":"_priceInWei","type":"uint256"},{"name":"_tokenURI","type":"string"},{"name":"_totalAvailable","type":"uint256"}],"name":"createActiveEdition","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_MINTER","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"uint8"}],"name":"hasRole","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"uint8"}],"name":"removeAddressFromAccessControl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_recipient","type":"address"}],"name":"updateOptionalCommission","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_UNDER_MINTER","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionData","type":"bytes32"},{"name":"_editionType","type":"uint256"},{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"},{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"},{"name":"_priceInWei","type":"uint256"},{"name":"_tokenURI","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_totalAvailable","type":"uint256"}],"name":"createInactivePreMintedEdition","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"highestEditionNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenIds","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionData","type":"bytes32"},{"name":"_editionType","type":"uint256"},{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"},{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"},{"name":"_priceInWei","type":"uint256"},{"name":"_tokenURI","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_totalAvailable","type":"uint256"}],"name":"createActivePreMintedEdition","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_artistAccount","type":"address"}],"name":"updateArtistsAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenData","outputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionType","type":"uint256"},{"name":"_editionData","type":"bytes32"},{"name":"_tokenURI","type":"string"},{"name":"_owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"totalSupplyEdition","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"purchaseDatesToken","outputs":[{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"editionActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_totalAvailable","type":"uint256"}],"name":"updateTotalAvailable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_KNOWN_ORIGIN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"editionExists","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionType","type":"uint256"}],"name":"updateEditionType","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"editionOptionalCommission","outputs":[{"name":"_rate","type":"uint256"},{"name":"_recipient","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_endDate","type":"uint256"}],"name":"updateEndDate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_editionData","type":"bytes32"},{"name":"_editionType","type":"uint256"},{"name":"_startDate","type":"uint256"},{"name":"_endDate","type":"uint256"},{"name":"_artistAccount","type":"address"},{"name":"_artistCommission","type":"uint256"},{"name":"_priceInWei","type":"uint256"},{"name":"_tokenURI","type":"string"},{"name":"_totalAvailable","type":"uint256"}],"name":"createInactiveEdition","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_type","type":"uint256"}],"name":"editionsOfType","outputs":[{"name":"_editionNumbers","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"}],"name":"purchase","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalNumberMinted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_editionNumber","type":"uint256"},{"name":"_totalSupply","type":"uint256"}],"name":"updateTotalSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURISafe","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":true,"name":"_editionNumber","type":"uint256"},{"indexed":true,"name":"_buyer","type":"address"},{"indexed":false,"name":"_priceInWei","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":true,"name":"_editionNumber","type":"uint256"},{"indexed":true,"name":"_buyer","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_editionNumber","type":"uint256"},{"indexed":true,"name":"_editionData","type":"bytes32"},{"indexed":true,"name":"_editionType","type":"uint256"}],"name":"EditionCreated","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"uint8"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"uint8"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]

600e805460a060020a60ff021916905560c0604052601c60808190527f68747470733a2f2f697066732e696e667572612e696f2f697066732f0000000060a09081526200005091600f91906200029f565b50604080518082018252600e81527f43727970746f417274546f6b656e0000000000000000000000000000000000006020808301919091528251808401909352600483527f43415254000000000000000000000000000000000000000000000000000000009083015290620000ee7f01ffc9a70000000000000000000000000000000000000000000000000000000064010000000062000232810204565b620001227f80ac58cd0000000000000000000000000000000000000000000000000000000064010000000062000232810204565b620001567f4f558e790000000000000000000000000000000000000000000000000000000064010000000062000232810204565b81516200016b9060059060208501906200029f565b508051620001819060069060208401906200029f565b50620001b67f780e9d630000000000000000000000000000000000000000000000000000000064010000000062000232810204565b620001ea7f5b5e139f0000000000000000000000000000000000000000000000000000000064010000000062000232810204565b5050600c805433600160a060020a03199182168117909255600e8054909116909117905534156200021a57600080fd5b60148054600160a060020a0319163317905562000344565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200026257600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002e257805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000312578251825591602001919060010190620002f5565b506200032092915062000324565b5090565b6200034191905b808211156200032057600081556001016200032b565b90565b614ffb80620003546000396000f3006080604052600436106103dc5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146103eb57806304bb1e3d1461042157806306fdde0314610440578063081812fc146104ca578063095ea7b3146104fe5780631534738014610522578063162094c41461054c57806318160ddd14610570578063187d88031461058557806319fa8f50146105a6578063213d6771146105d85780632295ee5b146105f057806323a3ad721461061057806323b872dd146106375780632bbd84e8146106615780632f745c5914610676578063328a2c2d1461069a57806332fd8478146106b5578063385df389146106f05780633f4ba83a1461070857806340c10f191461071d57806342842e0e1461074157806342966c681461076b57806342c7ea5f14610783578063439232581461079857806343bf63e8146107bf5780634e99b800146107d75780634f558e79146107ec5780634f6ccce7146108045780635091f8811461081c578063593af56a146108375780635a3f26721461084f5780635c975abb146108c05780636352211e146108d5578063652edd41146108ed5780636641179e1461091e5780636a0286921461093f5780636e93dbdc1461095757806370a082311461096c578063715018a61461098d57806371c847b2146109a257806375dcb70a14610a965780637a85c02a14610aba5780637d55758f14610ad25780637eb9f04a14610af6578063824eec3b14610b115780638456cb5914610b29578063891407c014610b3e5780638bbb594a14610b555780638da5cb5b14610bda57806392afc33a14610bef57806395a8c58d14610c1a57806395d89b4114610c41578063975347b814610c5657806397e851f614610c7d578063985989d214610ca45780639cd7745714610cb95780639f727c2714610d45578063a22cb46514610d5a578063abf3260f14610d80578063ac3c995214610d95578063ae8a869014610df8578063afa7a25f14610e84578063b4b5b48f14610ea8578063b6f4df3414610f61578063b88d4fde14610f79578063b8f6c21914610fe8578063bbd1e1fc14611000578063bc02844c14611018578063bdcdc0bc14611030578063be46b94c1461104b578063c2b2fb5e14611060578063c87b56dd14611078578063d4f3d6b814611090578063de56a245146110ab578063e6232ba1146110e4578063e65d19ca146110ff578063e7b8d97714611184578063e985e9c51461119c578063efef39a1146111c3578063f1ff3d4b146111ce578063f2fde38b146111e3578063f3993d1114611204578063f8b4ab7a1461126f578063fee7e35d1461128a575b3480156103e857600080fd5b50005b3480156103f757600080fd5b5061040d600160e060020a0319600435166112a2565b604080519115158252519081900360200190f35b34801561042d57600080fd5b5061043e60043560243515156112c1565b005b34801561044c57600080fd5b50610455611363565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048f578181015183820152602001610477565b50505050905090810190601f1680156104bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104d657600080fd5b506104e26004356113fa565b60408051600160a060020a039092168252519081900360200190f35b34801561050a57600080fd5b5061043e600160a060020a0360043516602435611415565b34801561052e57600080fd5b5061053a6004356114be565b60408051918252519081900360200190f35b34801561055857600080fd5b5061043e6004803590602480359081019101356114df565b34801561057c57600080fd5b5061053a6115a9565b34801561059157600080fd5b5061043e600160a060020a03600435166115af565b3480156105b257600080fd5b506105bb61165b565b60408051600160e060020a03199092168252519081900360200190f35b3480156105e457600080fd5b5061053a60043561167f565b3480156105fc57600080fd5b5061043e6004803560248101910135611694565b34801561061c57600080fd5b5061043e600160a060020a036004351660ff60243516611726565b34801561064357600080fd5b5061043e600160a060020a036004358116906024351660443561174c565b34801561066d57600080fd5b5061053a6117ef565b34801561068257600080fd5b5061053a600160a060020a03600435166024356117f5565b3480156106a657600080fd5b5061043e600435602435611843565b3480156106c157600080fd5b506106cd6004356118d7565b60408051600160a060020a03909316835260208301919091528051918290030190f35b3480156106fc57600080fd5b506104556004356118fe565b34801561071457600080fd5b5061043e611a34565b34801561072957600080fd5b5061053a600160a060020a0360043516602435611aac565b34801561074d57600080fd5b5061043e600160a060020a0360043581169060243516604435611c95565b34801561077757600080fd5b5061043e600435611cb1565b34801561078f57600080fd5b5061053a611d42565b3480156107a457600080fd5b5061043e600160a060020a036004351660ff60243516611d48565b3480156107cb57600080fd5b5061053a600435611dda565b3480156107e357600080fd5b50610455611def565b3480156107f857600080fd5b5061040d600435611e7d565b34801561081057600080fd5b5061053a600435611e9a565b34801561082857600080fd5b5061043e600435602435611ecf565b34801561084357600080fd5b5061053a600435611f63565b34801561085b57600080fd5b50610870600160a060020a0360043516611f78565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156108ac578181015183820152602001610894565b505050509050019250505060405180910390f35b3480156108cc57600080fd5b5061040d611fe4565b3480156108e157600080fd5b506104e2600435611ff4565b3480156108f957600080fd5b50610905600435612018565b6040805192835260208301919091528051918290030190f35b34801561092a57600080fd5b50610870600160a060020a0360043516612035565b34801561094b57600080fd5b5061053a60043561209f565b34801561096357600080fd5b506104e26120b4565b34801561097857600080fd5b5061053a600160a060020a03600435166120c3565b34801561099957600080fd5b5061043e6120f6565b3480156109ae57600080fd5b506109ba600435612157565b604051808c600019166000191681526020018b81526020018a815260200189815260200188600160a060020a0316600160a060020a031681526020018781526020018681526020018060200185815260200184815260200183151515158152602001828103825286818151815260200191508051906020019080838360005b83811015610a51578181015183820152602001610a39565b50505050905090810190601f168015610a7e5780820380516001836020036101000a031916815260200191505b509c5050505050505050505050505060405180910390f35b348015610aa257600080fd5b5061043e600480359060248035908101910135612352565b348015610ac657600080fd5b506108706004356123f3565b348015610ade57600080fd5b5061053a600160a060020a0360043516602435612453565b348015610b0257600080fd5b5061043e600435602435612610565b348015610b1d57600080fd5b5061053a6004356126a4565b348015610b3557600080fd5b5061043e6126b6565b61053a600160a060020a0360043516602435612733565b348015610b6157600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e43595369594610124949201919081908401838280828437509497505093359450612afc9350505050565b348015610be657600080fd5b506104e2612b4c565b348015610bfb57600080fd5b50610c04612b5b565b6040805160ff9092168252519081900360200190f35b348015610c2657600080fd5b5061040d600160a060020a036004351660ff60243516612b60565b348015610c4d57600080fd5b50610455612b89565b348015610c6257600080fd5b5061043e600160a060020a036004351660ff60243516612bea565b348015610c8957600080fd5b5061043e600435602435600160a060020a0360443516612c7c565b348015610cb057600080fd5b50610c04612e7f565b348015610cc557600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e4359536959461012494920191908190840183828082843750949750508435955050506020909201359150612e849050565b348015610d5157600080fd5b5061043e612ee2565b348015610d6657600080fd5b5061043e600160a060020a03600435166024351515612f36565b348015610d8c57600080fd5b5061053a612fba565b348015610da157600080fd5b5060408051602060046024803582810135848102808701860190975280865261043e968435600160a060020a031696369660449591949091019291829185019084908082843750949750612fc09650505050505050565b348015610e0457600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e43595369594610124949201919081908401838280828437509497505084359550505060209092013591506130159050565b348015610e9057600080fd5b5061043e600435600160a060020a0360243516613056565b348015610eb457600080fd5b50610ec0600435613186565b604080518681526020808201879052918101859052600160a060020a038316608082015260a06060820181815285519183019190915284519192909160c084019186019080838360005b83811015610f22578181015183820152602001610f0a565b50505050905090810190601f168015610f4f5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b348015610f6d57600080fd5b5061053a600435613248565b348015610f8557600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261043e94600160a060020a03813581169560248035909216956044359536956084940191819084018382808284375094975061325d9650505050505050565b348015610ff457600080fd5b5061090560043561327f565b34801561100c57600080fd5b5061040d6004356132a3565b34801561102457600080fd5b5061053a6004356132bb565b34801561103c57600080fd5b5061043e6004356024356132e2565b34801561105757600080fd5b50610c0461345a565b34801561106c57600080fd5b5061040d60043561345f565b34801561108457600080fd5b50610455600435613487565b34801561109c57600080fd5b5061043e6004356024356135e2565b3480156110b757600080fd5b506110c36004356136f0565b60408051928352600160a060020a0390911660208301528051918290030190f35b3480156110f057600080fd5b5061043e600435602435613716565b34801561110b57600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e435953695946101249492019190819084018382808284375094975050933594506137aa9350505050565b34801561119057600080fd5b506108706004356137eb565b3480156111a857600080fd5b5061040d600160a060020a036004358116906024351661384b565b61053a600435613879565b3480156111da57600080fd5b5061053a613885565b3480156111ef57600080fd5b5061043e600160a060020a036004351661388b565b34801561121057600080fd5b50604080516020600460443581810135838102808601850190965280855261043e958335600160a060020a0390811696602480359092169636969560649592949301928291850190849080828437509497506138ab9650505050505050565b34801561127b57600080fd5b5061043e6004356024356138e1565b34801561129657600080fd5b50610455600435613a22565b600160e060020a03191660009081526020819052604090205460ff1690565b600c54600160a060020a03163314806112e057506112e0336001612b60565b15156112eb57600080fd5b60008281526016602052604081205483911061133f576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b50600091825260166020526040909120600901805460ff1916911515919091179055565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b505050505090505b90565b600090815260026020526040902054600160a060020a031690565b600061142082611ff4565b9050600160a060020a03838116908216141561143b57600080fd5b33600160a060020a03821614806114575750611457813361384b565b151561146257600080fd5b6000828152600260205260408082208054600160a060020a031916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000818152601760205260408120546114d681611dda565b91505b50919050565b600c54600160a060020a03163314806114fe57506114fe336001612b60565b151561150957600080fd5b8261151381611e7d565b1515611569576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b6115a38484848080601f01602080910402602001604051908101604052809392919081815260200183838082843750613b1d945050505050565b50505050565b60095490565b600c54600160a060020a03163314806115ce57506115ce336001612b60565b15156115d957600080fd5b600160a060020a0381161515611639576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015290519081900360640190fd5b60148054600160a060020a031916600160a060020a0392909216919091179055565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b60009081526016602052604090206001015490565b600c54600160a060020a03163314806116b357506116b3336001612b60565b15156116be57600080fd5b801515611715576040805160e560020a62461bcd02815260206004820152601060248201527f426173652055524920696e76616c696400000000000000000000000000000000604482015290519081900360640190fd5b611721600f8383614e45565b505050565b60ff81166000908152600d60205260409020611748908363ffffffff613b5016565b5050565b6117563382613b65565b151561176157600080fd5b600160a060020a038316151561177657600080fd5b600160a060020a038216151561178b57600080fd5b6117958382613bc4565b61179f8382613c26565b6117a98282613d2d565b8082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60115481565b6000611800836120c3565b821061180b57600080fd5b600160a060020a038316600090815260076020526040902080548390811061182f57fe5b906000526020600020015490505b92915050565b600c54600160a060020a03163314806118625750611862336001612b60565b151561186d57600080fd5b6000828152601660205260408120548391106118c1576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060030155565b60009081526016602052604090206005810154600690910154600160a060020a0390911691565b600081815260166020908152604091829020600f80548451601f6002600019610100600186161502019093169290920491820185900485028101850190955280855260609492936114d69392919083018282801561199d5780601f106119725761010080835404028352916020019161199d565b820191906000526020600020905b81548152906001019060200180831161198057829003601f168201915b5050505060088401805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152935090830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050613d76565b600e54600160a060020a03163314611a4b57600080fd5b600e5460a060020a900460ff161515611a6357600080fd5b600e805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600c546000908190600160a060020a0316331480611ad05750611ad0336001612b60565b80611ae15750611ae1336002612b60565b1515611aec57600080fd5b600083815260166020526040812054849110611b40576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000848152601660205260409020600b810154600a90910154859111611bd6576040805160e560020a62461bcd02815260206004820152602160248201527f4e6f206d6f72652065646974696f6e73206c65667420746f207075726368617360448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b611bdf85613dab565b6000868152601660209081526040918290206008018054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152939650611c8b938a9388938b939190830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b820191906000526020600020905b815481529060010190602001808311611c6457829003601f168201915b5050505050613de7565b5090949350505050565b611721838383602060405190810160405280600081525061325d565b600c5460009081908190600160a060020a0316331480611cd75750611cd7336001612b60565b1515611ce257600080fd5b611cf4611cee85611ff4565b85613e94565b50505060008181526017602090815260408083208054908490558084526018835281842085855260199093529220548154829082908110611d3157fe5b600091825260208220015550505050565b60135481565b600c54600160a060020a0316331480611d675750611d67336001612b60565b1515611d7257600080fd5b60ff81166000908152600d60205260409020611d94908363ffffffff613f8e16565b6040805160ff831681529051600160a060020a038416917f0ed8a6a6a166243876472f7a8610b62c1a76c67911642d39ff34ead38105534f919081900360200190a25050565b60009081526016602052604090206007015490565b600f805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611e755780601f10611e4a57610100808354040283529160200191611e75565b820191906000526020600020905b815481529060010190602001808311611e5857829003601f168201915b505050505081565b600090815260016020526040902054600160a060020a0316151590565b6000611ea46115a9565b8210611eaf57600080fd5b6009805483908110611ebd57fe5b90600052602060002001549050919050565b600c54600160a060020a0316331480611eee5750611eee336001612b60565b1515611ef957600080fd5b600082815260166020526040812054839110611f4d576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060060155565b60009081526016602052604090206002015490565b600160a060020a038116600090815260076020908152604091829020805483518184028101840190945280845260609392830182828015611fd857602002820191906000526020600020905b815481526020019060010190808311611fc4575b50505050509050919050565b600e5460a060020a900460ff1681565b600081815260016020526040812054600160a060020a031680151561183d57600080fd5b600090815260166020526040902060038101546004909101549091565b600160a060020a0381166000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b6000908152601660205260409020600b015490565b601454600160a060020a031681565b6000600160a060020a03821615156120da57600080fd5b50600160a060020a031660009081526003602052604090205490565b600e54600160a060020a0316331461210d57600080fd5b600e54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600e8054600160a060020a0319169055565b600080600080600080600060606000806000808c600060166000838152602001908152602001600020600001541115156121c9576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b601660008f8152602001908152602001600020915081600101548260020154836003015484600401548560050160009054906101000a9004600160a060020a03168660060154876007015461230f600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ad5780601f10612282576101008083540402835291602001916122ad565b820191906000526020600020905b81548152906001019060200180831161229057829003601f168201915b5050505060088c01805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152935090830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b89600a01548a600b01548b60090160009054906101000a900460ff169c509c509c509c509c509c509c509c509c509c509c50505091939597999b90929496989a50565b600c54600160a060020a03163314806123715750612371336001612b60565b151561237c57600080fd5b6000838152601660205260408120548491106123d0576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b60008481526016602052604090206123ec906008018484614e45565b5050505050565b600081815260186020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b600c546000908190600160a060020a03163314806124775750612477336001612b60565b806124885750612488336003612b60565b151561249357600080fd5b6000838152601660205260408120548491106124e7576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6124f084613fb3565b6000858152601660205260409020600b015490925061251690859063ffffffff61403e16565b821115612593576040805160e560020a62461bcd02815260206004820152602e60248201527f52656163686564206d617820746f6b656e49642c2063616e6e6f7420756e646560448201527f72206d696e7420616e796d6f7265000000000000000000000000000000000000606482015290519081900360840190fd5b60008481526016602090815260409182902060080180548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845261260893899387938a939091830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b509392505050565b600c54600160a060020a031633148061262f575061262f336001612b60565b151561263a57600080fd5b60008281526016602052604081205483911061268e576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060070155565b60009081526017602052604090205490565b600e54600160a060020a031633146126cd57600080fd5b600e5460a060020a900460ff16156126e457600080fd5b600e805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600e546000908190819060a060020a900460ff161561275157600080fd5b6000848152601660205260408120548591106127a5576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600085815260166020526040902060090154859060ff161515612812576040805160e560020a62461bcd02815260206004820152601260248201527f45646974696f6e206e6f74206163746976650000000000000000000000000000604482015290519081900360640190fd5b6000868152601660205260409020600b810154600a909101548791116128a8576040805160e560020a62461bcd02815260206004820152602160248201527f4e6f206d6f72652065646974696f6e73206c65667420746f207075726368617360448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000878152601660205260409020600301548790421015612913576040805160e560020a62461bcd02815260206004820152601960248201527f45646974696f6e206e6f7420617661696c61626c652079657400000000000000604482015290519081900360640190fd5b60008181526016602052604090206004015442111561297c576040805160e560020a62461bcd02815260206004820152601b60248201527f45646974696f6e206e6f206c6f6e67657220617661696c61626c650000000000604482015290519081900360640190fd5b60008881526016602052604090206007810154909650341015612a0f576040805160e560020a62461bcd02815260206004820152602b60248201527f56616c7565206d7573742062652067726561746572207468616e20707269636560448201527f206f662065646974696f6e000000000000000000000000000000000000000000606482015290519081900360840190fd5b612a1888613dab565b600887018054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152939850612a81938d938a938e93830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b612aac8887600701548860050160009054906101000a9004600160a060020a0316896006015461404b565b88600160a060020a031688867f145e2ff612f82ecb64f13b28a0e2825f8fd3dba6d6fbbdec265aa58800014c3d346040518082815260200191505060405180910390a45092979650505050505050565b600c54600090600160a060020a0316331480612b1e5750612b1e336001612b60565b1515612b2957600080fd5b612b3d8b8b8b8b8b8b8b8b8b8b600161419f565b9b9a5050505050505050505050565b600e54600160a060020a031681565b600281565b60ff81166000908152600d60205260408120612b82908463ffffffff6146f916565b9392505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156113ef5780601f106113c4576101008083540402835291602001916113ef565b600c54600160a060020a0316331480612c095750612c09336001612b60565b1515612c1457600080fd5b60ff81166000908152600d60205260409020612c36908363ffffffff61471816565b6040805160ff831681529051600160a060020a038416917f3824b64a1e23d936b458f4e31445c664d2bc9c14e842407917cbc100b0236a2f919081900360200190a25050565b600c546000908190600160a060020a0316331480612ca05750612ca0336001612b60565b1515612cab57600080fd5b600085815260166020526040812054869110612cff576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600086815260166020526040812060068101549094509250851115612da457600160a060020a0384161515612da4576040805160e560020a62461bcd02815260206004820152603560248201527f53657474696e6720612072617465206d757374206265206163636f6d70616e6960448201527f656420627920612076616c696420616464726573730000000000000000000000606482015290519081900360840190fd5b6064612db6838763ffffffff61403e16565b1115612e32576040805160e560020a62461bcd02815260206004820152602560248201527f43616e742073657420636f6d6d697373696f6e2067726561746572207468616e60448201527f2031303025000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b5050604080518082018252938452600160a060020a03928316602080860191825260009687526015905294209251835550915160019091018054600160a060020a03191691909216179055565b600381565b600c54600090600160a060020a0316331480612ea65750612ea6336001612b60565b1515612eb157600080fd5b612ec58c8c8c8c8c8c8c8c8c8b600061419f565b50612ed08c846138e1565b5060019b9a5050505050505050505050565b600e54600160a060020a03163314612ef957600080fd5b600e54604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015612f33573d6000803e3d6000fd5b50565b600160a060020a038216331415612f4c57600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b60105481565b60005b81518110156117215761300d612fef8383815181101515612fe057fe5b90602001906020020151611ff4565b848484815181101515612ffe57fe5b90602001906020020151611c95565b600101612fc3565b600c54600090600160a060020a03163314806130375750613037336001612b60565b151561304257600080fd5b612ec58c8c8c8c8c8c8c8c8c8b600161419f565b600c54600090819081908190600160a060020a031633148061307e575061307e336001612b60565b151561308957600080fd5b6000868152601660205260408120548791106130dd576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000878152601660209081526040808320601b8352818420546005820154600160a060020a03168552601a90935292208054929750909550935083908590811061312357fe5b60009182526020808320909101829055600160a060020a03909716808252601a88526040808320805460018101825590845289842081018b9055998352601b909852969020969096555050506005018054600160a060020a031916909117905550565b6000806000606060008060008761319c81611e7d565b15156131f2576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b600089815260176020908152604080832054808452601690925290912060028101546001820154929550909350849161322a8c613487565b6132338d611ff4565b939d929c50909a509850909650945050505050565b6000908152601660205260409020600a015490565b61326884848461174c565b6132748484848461473a565b15156115a357600080fd5b600081815260176020526040812054819061329981612018565b9250925050915091565b60009081526016602052604090206009015460ff1690565b6000818152601660205260408120600a810154600b8201546114d69163ffffffff6148a716565b600c546000908190600160a060020a03163314806133065750613306336001612b60565b151561331157600080fd5b600084815260166020526040812054859110613365576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000858152601660205260409020600a81015490935084101561341e576040805160e560020a62461bcd02815260206004820152604560248201527f556e61626c6520746f2072656475636520617661696c61626c6520616d6f756e60448201527f7420746f207468652062656c6f7720746865206e756d62657220746f74616c5360648201527f7570706c79000000000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600b8301805490859055601354909250613450908590613444908563ffffffff6148a716565b9063ffffffff61403e16565b6013555050505050565b600181565b60008082151561347257600091506114d9565b50506000818152601660205260409020541490565b60608161349381611e7d565b15156134e9576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b600f8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526114d693909290918301828280156135765780601f1061354b57610100808354040283529160200191613576565b820191906000526020600020905b81548152906001019060200180831161355957829003601f168201915b5050506000878152600b60209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815294509250830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b600c54600090819081908190600160a060020a031633148061360a575061360a336001612b60565b151561361557600080fd5b600086815260166020526040812054879110613669576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600087815260166020908152604080832060028101548452601c83528184208b8552601d909352922054815492975090955093508490849081106136a957fe5b60009182526020808320909101829055878252601c81526040808320805460018101825590845282842081018b9055998352601d9091529020969096555050506002015550565b600090815260156020526040902080546001909101549091600160a060020a0390911690565b600c54600160a060020a03163314806137355750613735336001612b60565b151561374057600080fd5b600082815260166020526040812054839110613794576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060040155565b600c54600090600160a060020a03163314806137cc57506137cc336001612b60565b15156137d757600080fd5b612b3d8b8b8b8b8b8b8b8b8b8b600061419f565b6000818152601c6020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600061183d3383612733565b60125481565b600e54600160a060020a031633146138a257600080fd5b612f33816148b9565b60005b81518110156115a3576138d9848484848151811015156138ca57fe5b9060200190602002015161174c565b6001016138ae565b600c54600160a060020a03163314806139005750613900336001612b60565b151561390b57600080fd5b60008281526016602052604081205483911061395f576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b81613969846123f3565b511115613a0c576040805160e560020a62461bcd02815260206004820152604c60248201527f43616e206e6f74206c6f77657220746f74616c537570706c7920746f2062656c60448201527f6f7720746865206e756d626572206f6620746f6b656e7320616c72656164792060648201527f696e206578697374656e63650000000000000000000000000000000000000000608482015290519081900360a40190fd5b50600091825260166020526040909120600a0155565b600f805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815260609361183d9391929091830182828015613ab15780601f10613a8657610100808354040283529160200191613ab1565b820191906000526020600020905b815481529060010190602001808311613a9457829003601f168201915b5050506000868152600b60209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815294509250830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b613b2682611e7d565b1515613b3157600080fd5b6000828152600b60209081526040909120825161172192840190614ec3565b613b5a82826146f9565b151561174857600080fd5b600080613b7183611ff4565b905080600160a060020a031684600160a060020a03161480613bac575083600160a060020a0316613ba1846113fa565b600160a060020a0316145b80613bbc5750613bbc818561384b565b949350505050565b81600160a060020a0316613bd782611ff4565b600160a060020a031614613bea57600080fd5b600081815260026020526040902054600160a060020a0316156117485760009081526002602052604090208054600160a060020a031916905550565b6000806000613c35858561492a565b600084815260086020908152604080832054600160a060020a0389168452600790925290912054909350613c7090600163ffffffff6148a716565b600160a060020a038616600090815260076020526040902080549193509083908110613c9857fe5b90600052602060002001549050806007600087600160a060020a0316600160a060020a0316815260200190815260200160002084815481101515613cd857fe5b6000918252602080832090910192909255600160a060020a0387168152600790915260409020805490613d0f906000198301614f31565b50600093845260086020526040808520859055908452909220555050565b6000613d3983836149b3565b50600160a060020a039091166000908152600760209081526040808320805460018101825590845282842081018590559383526008909152902055565b604080516020818101835260008083528351808301855281815284519283019094528152606092612b82928692869290614a36565b6000818152601660205260408120600a810154613dcf90600163ffffffff61403e16565b600a820181905581546114d69163ffffffff61403e16565b6000613df38585614c97565b613dfd8483613b1d565b506000838152601760209081526040808320859055848352601882528083208054600180820183559185528385208101889055878552601990935292208190556012549091613e52919063ffffffff61403e16565b601255604051600160a060020a03861690849086907f259eb7b480b3d449f506927269e4665c83c69e4cd797143eaa8f84632dc7a02b90600090a45050505050565b6000806000613ea38585614ce6565b6000848152600b60205260409020546002600019610100600184161502019091160415613ee1576000848152600b60205260408120613ee191614f55565b6000848152600a6020526040902054600954909350613f0790600163ffffffff6148a716565b9150600982815481101515613f1857fe5b9060005260206000200154905080600984815481101515613f3557fe5b60009182526020822001919091556009805484908110613f5157fe5b6000918252602090912001556009805490613f70906000198301614f31565b506000938452600a6020526040808520859055908452909220555050565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600081815260166020526040812080548290613fd690600163ffffffff61403e16565b90505b613fe281611e7d565b15613fff57613ff881600163ffffffff61403e16565b9050613fd9565b600a82015482546140159163ffffffff61403e16565b811115612b8257600a82015461403290600163ffffffff61403e16565b600a8301559392505050565b8181018281101561183d57fe5b60008080806140718561406589606463ffffffff614d3616565b9063ffffffff614d4b16565b935060008411156140b457604051600160a060020a0387169085156108fc029086906000818181858888f193505050501580156140b2573d6000803e3d6000fd5b505b6000888152601560205260408120805490945011156141235782546140e49061406589606463ffffffff614d3616565b6001840154604051919350600160a060020a03169083156108fc029084906000818181858888f19350505050158015614121573d6000803e3d6000fd5b505b61414382614137348763ffffffff6148a716565b9063ffffffff6148a716565b601454604051919250600160a060020a03169082156108fc029083906000818181858888f1935050505015801561417e573d6000803e3d6000fd5b50601154614192903463ffffffff61403e16565b6011555050505050505050565b6000808c15156141f9576040805160e560020a62461bcd02815260206004820152601b60248201527f45646974696f6e206e756d626572206e6f742070726f76696465640000000000604482015290519081900360640190fd5b6010548d11614278576040805160e560020a62461bcd02815260206004820152603360248201527f45646974696f6e206e756d626572206d7573742062652067726561746572207460448201527f68616e2070726576696f75736c79207573656400000000000000000000000000606482015290519081900360840190fd5b6010546000818152601660205260409020600b01548e9161429e9163ffffffff61403e16565b1061433f576040805160e560020a62461bcd02815260206004820152604860248201527f45646974696f6e206e756d626572206d7573742062652067726561746572207460448201527f68616e2070726576696f75736c79207573656420706c757320746f74616c206160648201527f7661696c61626c65000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b8a1515614396576040805160e560020a62461bcd02815260206004820152601960248201527f45646974696f6e2074797065206e6f742070726f766964656400000000000000604482015290519081900360640190fd5b845115156143ee576040805160e560020a62461bcd02815260206004820152601460248201527f546f6b656e20555249206973206d697373696e67000000000000000000000000604482015290519081900360640190fd5b600160a060020a038816151561444e576040805160e560020a62461bcd02815260206004820152601b60248201527f417274697374206163636f756e74206e6f742070726f76696465640000000000604482015290519081900360640190fd5b60648711158015614460575060008710155b15156144dc576040805160e560020a62461bcd02815260206004820152603b60248201527f41727469737420636f6d6d697373696f6e2063616e6e6f74206265206772656160448201527f746572207468616e20313030206f72206c657373207468616e20300000000000606482015290519081900360840190fd5b60008d81526016602052604090205415614540576040805160e560020a62461bcd02815260206004820152601c60248201527f45646974696f6e20616c726561647920696e206578697374656e636500000000604482015290519081900360640190fd5b5087801515614550575063ffffffff5b610180604051908101604052808e81526020018d6000191681526020018c81526020018b815260200182815260200189600160a060020a0316815260200188815260200187815260200186815260200184151581526020016000815260200185815250601660008f8152602001908152602001600020600082015181600001556020820151816001019060001916905560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a815481600160a060020a030219169083600160a060020a0316021790555060c0820151816006015560e0820151816007015561010082015181600801908051906020019061465c929190614ec3565b5061012082015160098201805460ff1916911515919091179055610140820151600a82015561016090910151600b9091015560135461469b908561403e565b6013556146a8888e614d74565b6146b28b8e614db0565b6040518b908d908f907ff702f09ce66e1a7f60e909cfb5b6400ce4967f4fd691158bd96066cb89c5c07890600090a450505060109990995550600198975050505050505050565b600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0316600090815260209190915260409020805460ff19169055565b60008061474f85600160a060020a0316614de2565b151561475e576001915061489e565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b838110156147f15781810151838201526020016147d9565b50505050905090810190601f16801561481e5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561484057600080fd5b505af1158015614854573d6000803e3d6000fd5b505050506040513d602081101561486a57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b6000828211156148b357fe5b50900390565b600160a060020a03811615156148ce57600080fd5b600e54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e8054600160a060020a031916600160a060020a0392909216919091179055565b81600160a060020a031661493d82611ff4565b600160a060020a03161461495057600080fd5b600160a060020a03821660009081526003602052604090205461497a90600163ffffffff6148a716565b600160a060020a039092166000908152600360209081526040808320949094559181526001909152208054600160a060020a0319169055565b600081815260016020526040902054600160a060020a0316156149d557600080fd5b60008181526001602081815260408084208054600160a060020a031916600160a060020a0388169081179091558452600390915290912054614a169161403e565b600160a060020a0390921660009081526003602052604090209190915550565b6060806060806060806060806000808e98508d97508c96508b95508a94508451865188518a518c51010101016040519080825280601f01601f191660200182016040528015614a8f578160200160208202803883390190505b50935083925060009150600090505b8851811015614afc578881815181101515614ab557fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614adc57fe5b906020010190600160f860020a031916908160001a905350600101614a9e565b5060005b8751811015614b5e578781815181101515614b1757fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614b3e57fe5b906020010190600160f860020a031916908160001a905350600101614b00565b5060005b8651811015614bc0578681815181101515614b7957fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614ba057fe5b906020010190600160f860020a031916908160001a905350600101614b62565b5060005b8551811015614c22578581815181101515614bdb57fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614c0257fe5b906020010190600160f860020a031916908160001a905350600101614bc4565b5060005b8451811015614c84578481815181101515614c3d57fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614c6457fe5b906020010190600160f860020a031916908160001a905350600101614c26565b50909d9c50505050505050505050505050565b614ca18282614dea565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af015550565b614cf08282613bc4565b614cfa8282613c26565b6040518190600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183811515614d4357fe5b049392505050565b6000821515614d5c5750600061183d565b50818102818382811515614d6c57fe5b041461183d57fe5b600160a060020a039091166000908152601a6020908152604080832080546001810182559084528284208101859055938352601b909152902055565b6000918252601c6020908152604080842080546001810182559085528285208101849055928452601d90915290912055565b6000903b1190565b600160a060020a0382161515614dff57600080fd5b614e098282613d2d565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e865782800160ff19823516178555614eb3565b82800160010185558215614eb3579182015b82811115614eb3578235825591602001919060010190614e98565b50614ebf929150614f95565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f0457805160ff1916838001178555614eb3565b82800160010185558215614eb3579182015b82811115614eb3578251825591602001919060010190614f16565b81548183558181111561172157600083815260209020611721918101908301614f95565b50805460018160011615610100020316600290046000825580601f10614f7b5750612f33565b601f016020900490600052602060002090810190612f3391905b6113f791905b80821115614ebf5760008155600101614f9b560045646974696f6e206e756d62657220696e76616c696400000000000000000000a165627a7a7230582003976a3c6ca10cfc2fabb53c6ddf1af7b77438184a021940ba58db7e2c0637b70029

Deployed Bytecode

0x6080604052600436106103dc5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146103eb57806304bb1e3d1461042157806306fdde0314610440578063081812fc146104ca578063095ea7b3146104fe5780631534738014610522578063162094c41461054c57806318160ddd14610570578063187d88031461058557806319fa8f50146105a6578063213d6771146105d85780632295ee5b146105f057806323a3ad721461061057806323b872dd146106375780632bbd84e8146106615780632f745c5914610676578063328a2c2d1461069a57806332fd8478146106b5578063385df389146106f05780633f4ba83a1461070857806340c10f191461071d57806342842e0e1461074157806342966c681461076b57806342c7ea5f14610783578063439232581461079857806343bf63e8146107bf5780634e99b800146107d75780634f558e79146107ec5780634f6ccce7146108045780635091f8811461081c578063593af56a146108375780635a3f26721461084f5780635c975abb146108c05780636352211e146108d5578063652edd41146108ed5780636641179e1461091e5780636a0286921461093f5780636e93dbdc1461095757806370a082311461096c578063715018a61461098d57806371c847b2146109a257806375dcb70a14610a965780637a85c02a14610aba5780637d55758f14610ad25780637eb9f04a14610af6578063824eec3b14610b115780638456cb5914610b29578063891407c014610b3e5780638bbb594a14610b555780638da5cb5b14610bda57806392afc33a14610bef57806395a8c58d14610c1a57806395d89b4114610c41578063975347b814610c5657806397e851f614610c7d578063985989d214610ca45780639cd7745714610cb95780639f727c2714610d45578063a22cb46514610d5a578063abf3260f14610d80578063ac3c995214610d95578063ae8a869014610df8578063afa7a25f14610e84578063b4b5b48f14610ea8578063b6f4df3414610f61578063b88d4fde14610f79578063b8f6c21914610fe8578063bbd1e1fc14611000578063bc02844c14611018578063bdcdc0bc14611030578063be46b94c1461104b578063c2b2fb5e14611060578063c87b56dd14611078578063d4f3d6b814611090578063de56a245146110ab578063e6232ba1146110e4578063e65d19ca146110ff578063e7b8d97714611184578063e985e9c51461119c578063efef39a1146111c3578063f1ff3d4b146111ce578063f2fde38b146111e3578063f3993d1114611204578063f8b4ab7a1461126f578063fee7e35d1461128a575b3480156103e857600080fd5b50005b3480156103f757600080fd5b5061040d600160e060020a0319600435166112a2565b604080519115158252519081900360200190f35b34801561042d57600080fd5b5061043e60043560243515156112c1565b005b34801561044c57600080fd5b50610455611363565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048f578181015183820152602001610477565b50505050905090810190601f1680156104bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104d657600080fd5b506104e26004356113fa565b60408051600160a060020a039092168252519081900360200190f35b34801561050a57600080fd5b5061043e600160a060020a0360043516602435611415565b34801561052e57600080fd5b5061053a6004356114be565b60408051918252519081900360200190f35b34801561055857600080fd5b5061043e6004803590602480359081019101356114df565b34801561057c57600080fd5b5061053a6115a9565b34801561059157600080fd5b5061043e600160a060020a03600435166115af565b3480156105b257600080fd5b506105bb61165b565b60408051600160e060020a03199092168252519081900360200190f35b3480156105e457600080fd5b5061053a60043561167f565b3480156105fc57600080fd5b5061043e6004803560248101910135611694565b34801561061c57600080fd5b5061043e600160a060020a036004351660ff60243516611726565b34801561064357600080fd5b5061043e600160a060020a036004358116906024351660443561174c565b34801561066d57600080fd5b5061053a6117ef565b34801561068257600080fd5b5061053a600160a060020a03600435166024356117f5565b3480156106a657600080fd5b5061043e600435602435611843565b3480156106c157600080fd5b506106cd6004356118d7565b60408051600160a060020a03909316835260208301919091528051918290030190f35b3480156106fc57600080fd5b506104556004356118fe565b34801561071457600080fd5b5061043e611a34565b34801561072957600080fd5b5061053a600160a060020a0360043516602435611aac565b34801561074d57600080fd5b5061043e600160a060020a0360043581169060243516604435611c95565b34801561077757600080fd5b5061043e600435611cb1565b34801561078f57600080fd5b5061053a611d42565b3480156107a457600080fd5b5061043e600160a060020a036004351660ff60243516611d48565b3480156107cb57600080fd5b5061053a600435611dda565b3480156107e357600080fd5b50610455611def565b3480156107f857600080fd5b5061040d600435611e7d565b34801561081057600080fd5b5061053a600435611e9a565b34801561082857600080fd5b5061043e600435602435611ecf565b34801561084357600080fd5b5061053a600435611f63565b34801561085b57600080fd5b50610870600160a060020a0360043516611f78565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156108ac578181015183820152602001610894565b505050509050019250505060405180910390f35b3480156108cc57600080fd5b5061040d611fe4565b3480156108e157600080fd5b506104e2600435611ff4565b3480156108f957600080fd5b50610905600435612018565b6040805192835260208301919091528051918290030190f35b34801561092a57600080fd5b50610870600160a060020a0360043516612035565b34801561094b57600080fd5b5061053a60043561209f565b34801561096357600080fd5b506104e26120b4565b34801561097857600080fd5b5061053a600160a060020a03600435166120c3565b34801561099957600080fd5b5061043e6120f6565b3480156109ae57600080fd5b506109ba600435612157565b604051808c600019166000191681526020018b81526020018a815260200189815260200188600160a060020a0316600160a060020a031681526020018781526020018681526020018060200185815260200184815260200183151515158152602001828103825286818151815260200191508051906020019080838360005b83811015610a51578181015183820152602001610a39565b50505050905090810190601f168015610a7e5780820380516001836020036101000a031916815260200191505b509c5050505050505050505050505060405180910390f35b348015610aa257600080fd5b5061043e600480359060248035908101910135612352565b348015610ac657600080fd5b506108706004356123f3565b348015610ade57600080fd5b5061053a600160a060020a0360043516602435612453565b348015610b0257600080fd5b5061043e600435602435612610565b348015610b1d57600080fd5b5061053a6004356126a4565b348015610b3557600080fd5b5061043e6126b6565b61053a600160a060020a0360043516602435612733565b348015610b6157600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e43595369594610124949201919081908401838280828437509497505093359450612afc9350505050565b348015610be657600080fd5b506104e2612b4c565b348015610bfb57600080fd5b50610c04612b5b565b6040805160ff9092168252519081900360200190f35b348015610c2657600080fd5b5061040d600160a060020a036004351660ff60243516612b60565b348015610c4d57600080fd5b50610455612b89565b348015610c6257600080fd5b5061043e600160a060020a036004351660ff60243516612bea565b348015610c8957600080fd5b5061043e600435602435600160a060020a0360443516612c7c565b348015610cb057600080fd5b50610c04612e7f565b348015610cc557600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e4359536959461012494920191908190840183828082843750949750508435955050506020909201359150612e849050565b348015610d5157600080fd5b5061043e612ee2565b348015610d6657600080fd5b5061043e600160a060020a03600435166024351515612f36565b348015610d8c57600080fd5b5061053a612fba565b348015610da157600080fd5b5060408051602060046024803582810135848102808701860190975280865261043e968435600160a060020a031696369660449591949091019291829185019084908082843750949750612fc09650505050505050565b348015610e0457600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e43595369594610124949201919081908401838280828437509497505084359550505060209092013591506130159050565b348015610e9057600080fd5b5061043e600435600160a060020a0360243516613056565b348015610eb457600080fd5b50610ec0600435613186565b604080518681526020808201879052918101859052600160a060020a038316608082015260a06060820181815285519183019190915284519192909160c084019186019080838360005b83811015610f22578181015183820152602001610f0a565b50505050905090810190601f168015610f4f5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b348015610f6d57600080fd5b5061053a600435613248565b348015610f8557600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261043e94600160a060020a03813581169560248035909216956044359536956084940191819084018382808284375094975061325d9650505050505050565b348015610ff457600080fd5b5061090560043561327f565b34801561100c57600080fd5b5061040d6004356132a3565b34801561102457600080fd5b5061053a6004356132bb565b34801561103c57600080fd5b5061043e6004356024356132e2565b34801561105757600080fd5b50610c0461345a565b34801561106c57600080fd5b5061040d60043561345f565b34801561108457600080fd5b50610455600435613487565b34801561109c57600080fd5b5061043e6004356024356135e2565b3480156110b757600080fd5b506110c36004356136f0565b60408051928352600160a060020a0390911660208301528051918290030190f35b3480156110f057600080fd5b5061043e600435602435613716565b34801561110b57600080fd5b5060408051602060046101043581810135601f810184900484028501840190955284845261040d94823594602480359560443595606435956084359560a435600160a060020a03169560c4359560e435953695946101249492019190819084018382808284375094975050933594506137aa9350505050565b34801561119057600080fd5b506108706004356137eb565b3480156111a857600080fd5b5061040d600160a060020a036004358116906024351661384b565b61053a600435613879565b3480156111da57600080fd5b5061053a613885565b3480156111ef57600080fd5b5061043e600160a060020a036004351661388b565b34801561121057600080fd5b50604080516020600460443581810135838102808601850190965280855261043e958335600160a060020a0390811696602480359092169636969560649592949301928291850190849080828437509497506138ab9650505050505050565b34801561127b57600080fd5b5061043e6004356024356138e1565b34801561129657600080fd5b50610455600435613a22565b600160e060020a03191660009081526020819052604090205460ff1690565b600c54600160a060020a03163314806112e057506112e0336001612b60565b15156112eb57600080fd5b60008281526016602052604081205483911061133f576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b50600091825260166020526040909120600901805460ff1916911515919091179055565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b505050505090505b90565b600090815260026020526040902054600160a060020a031690565b600061142082611ff4565b9050600160a060020a03838116908216141561143b57600080fd5b33600160a060020a03821614806114575750611457813361384b565b151561146257600080fd5b6000828152600260205260408082208054600160a060020a031916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000818152601760205260408120546114d681611dda565b91505b50919050565b600c54600160a060020a03163314806114fe57506114fe336001612b60565b151561150957600080fd5b8261151381611e7d565b1515611569576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b6115a38484848080601f01602080910402602001604051908101604052809392919081815260200183838082843750613b1d945050505050565b50505050565b60095490565b600c54600160a060020a03163314806115ce57506115ce336001612b60565b15156115d957600080fd5b600160a060020a0381161515611639576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015290519081900360640190fd5b60148054600160a060020a031916600160a060020a0392909216919091179055565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b60009081526016602052604090206001015490565b600c54600160a060020a03163314806116b357506116b3336001612b60565b15156116be57600080fd5b801515611715576040805160e560020a62461bcd02815260206004820152601060248201527f426173652055524920696e76616c696400000000000000000000000000000000604482015290519081900360640190fd5b611721600f8383614e45565b505050565b60ff81166000908152600d60205260409020611748908363ffffffff613b5016565b5050565b6117563382613b65565b151561176157600080fd5b600160a060020a038316151561177657600080fd5b600160a060020a038216151561178b57600080fd5b6117958382613bc4565b61179f8382613c26565b6117a98282613d2d565b8082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60115481565b6000611800836120c3565b821061180b57600080fd5b600160a060020a038316600090815260076020526040902080548390811061182f57fe5b906000526020600020015490505b92915050565b600c54600160a060020a03163314806118625750611862336001612b60565b151561186d57600080fd5b6000828152601660205260408120548391106118c1576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060030155565b60009081526016602052604090206005810154600690910154600160a060020a0390911691565b600081815260166020908152604091829020600f80548451601f6002600019610100600186161502019093169290920491820185900485028101850190955280855260609492936114d69392919083018282801561199d5780601f106119725761010080835404028352916020019161199d565b820191906000526020600020905b81548152906001019060200180831161198057829003601f168201915b5050505060088401805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152935090830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050613d76565b600e54600160a060020a03163314611a4b57600080fd5b600e5460a060020a900460ff161515611a6357600080fd5b600e805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600c546000908190600160a060020a0316331480611ad05750611ad0336001612b60565b80611ae15750611ae1336002612b60565b1515611aec57600080fd5b600083815260166020526040812054849110611b40576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000848152601660205260409020600b810154600a90910154859111611bd6576040805160e560020a62461bcd02815260206004820152602160248201527f4e6f206d6f72652065646974696f6e73206c65667420746f207075726368617360448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b611bdf85613dab565b6000868152601660209081526040918290206008018054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152939650611c8b938a9388938b939190830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b820191906000526020600020905b815481529060010190602001808311611c6457829003601f168201915b5050505050613de7565b5090949350505050565b611721838383602060405190810160405280600081525061325d565b600c5460009081908190600160a060020a0316331480611cd75750611cd7336001612b60565b1515611ce257600080fd5b611cf4611cee85611ff4565b85613e94565b50505060008181526017602090815260408083208054908490558084526018835281842085855260199093529220548154829082908110611d3157fe5b600091825260208220015550505050565b60135481565b600c54600160a060020a0316331480611d675750611d67336001612b60565b1515611d7257600080fd5b60ff81166000908152600d60205260409020611d94908363ffffffff613f8e16565b6040805160ff831681529051600160a060020a038416917f0ed8a6a6a166243876472f7a8610b62c1a76c67911642d39ff34ead38105534f919081900360200190a25050565b60009081526016602052604090206007015490565b600f805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611e755780601f10611e4a57610100808354040283529160200191611e75565b820191906000526020600020905b815481529060010190602001808311611e5857829003601f168201915b505050505081565b600090815260016020526040902054600160a060020a0316151590565b6000611ea46115a9565b8210611eaf57600080fd5b6009805483908110611ebd57fe5b90600052602060002001549050919050565b600c54600160a060020a0316331480611eee5750611eee336001612b60565b1515611ef957600080fd5b600082815260166020526040812054839110611f4d576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060060155565b60009081526016602052604090206002015490565b600160a060020a038116600090815260076020908152604091829020805483518184028101840190945280845260609392830182828015611fd857602002820191906000526020600020905b815481526020019060010190808311611fc4575b50505050509050919050565b600e5460a060020a900460ff1681565b600081815260016020526040812054600160a060020a031680151561183d57600080fd5b600090815260166020526040902060038101546004909101549091565b600160a060020a0381166000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b6000908152601660205260409020600b015490565b601454600160a060020a031681565b6000600160a060020a03821615156120da57600080fd5b50600160a060020a031660009081526003602052604090205490565b600e54600160a060020a0316331461210d57600080fd5b600e54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600e8054600160a060020a0319169055565b600080600080600080600060606000806000808c600060166000838152602001908152602001600020600001541115156121c9576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b601660008f8152602001908152602001600020915081600101548260020154836003015484600401548560050160009054906101000a9004600160a060020a03168660060154876007015461230f600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122ad5780601f10612282576101008083540402835291602001916122ad565b820191906000526020600020905b81548152906001019060200180831161229057829003601f168201915b5050505060088c01805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152935090830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b89600a01548a600b01548b60090160009054906101000a900460ff169c509c509c509c509c509c509c509c509c509c509c50505091939597999b90929496989a50565b600c54600160a060020a03163314806123715750612371336001612b60565b151561237c57600080fd5b6000838152601660205260408120548491106123d0576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b60008481526016602052604090206123ec906008018484614e45565b5050505050565b600081815260186020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b600c546000908190600160a060020a03163314806124775750612477336001612b60565b806124885750612488336003612b60565b151561249357600080fd5b6000838152601660205260408120548491106124e7576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6124f084613fb3565b6000858152601660205260409020600b015490925061251690859063ffffffff61403e16565b821115612593576040805160e560020a62461bcd02815260206004820152602e60248201527f52656163686564206d617820746f6b656e49642c2063616e6e6f7420756e646560448201527f72206d696e7420616e796d6f7265000000000000000000000000000000000000606482015290519081900360840190fd5b60008481526016602090815260409182902060080180548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845261260893899387938a939091830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b509392505050565b600c54600160a060020a031633148061262f575061262f336001612b60565b151561263a57600080fd5b60008281526016602052604081205483911061268e576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060070155565b60009081526017602052604090205490565b600e54600160a060020a031633146126cd57600080fd5b600e5460a060020a900460ff16156126e457600080fd5b600e805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600e546000908190819060a060020a900460ff161561275157600080fd5b6000848152601660205260408120548591106127a5576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600085815260166020526040902060090154859060ff161515612812576040805160e560020a62461bcd02815260206004820152601260248201527f45646974696f6e206e6f74206163746976650000000000000000000000000000604482015290519081900360640190fd5b6000868152601660205260409020600b810154600a909101548791116128a8576040805160e560020a62461bcd02815260206004820152602160248201527f4e6f206d6f72652065646974696f6e73206c65667420746f207075726368617360448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000878152601660205260409020600301548790421015612913576040805160e560020a62461bcd02815260206004820152601960248201527f45646974696f6e206e6f7420617661696c61626c652079657400000000000000604482015290519081900360640190fd5b60008181526016602052604090206004015442111561297c576040805160e560020a62461bcd02815260206004820152601b60248201527f45646974696f6e206e6f206c6f6e67657220617661696c61626c650000000000604482015290519081900360640190fd5b60008881526016602052604090206007810154909650341015612a0f576040805160e560020a62461bcd02815260206004820152602b60248201527f56616c7565206d7573742062652067726561746572207468616e20707269636560448201527f206f662065646974696f6e000000000000000000000000000000000000000000606482015290519081900360840190fd5b612a1888613dab565b600887018054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152939850612a81938d938a938e93830182828015611c815780601f10611c5657610100808354040283529160200191611c81565b612aac8887600701548860050160009054906101000a9004600160a060020a0316896006015461404b565b88600160a060020a031688867f145e2ff612f82ecb64f13b28a0e2825f8fd3dba6d6fbbdec265aa58800014c3d346040518082815260200191505060405180910390a45092979650505050505050565b600c54600090600160a060020a0316331480612b1e5750612b1e336001612b60565b1515612b2957600080fd5b612b3d8b8b8b8b8b8b8b8b8b8b600161419f565b9b9a5050505050505050505050565b600e54600160a060020a031681565b600281565b60ff81166000908152600d60205260408120612b82908463ffffffff6146f916565b9392505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156113ef5780601f106113c4576101008083540402835291602001916113ef565b600c54600160a060020a0316331480612c095750612c09336001612b60565b1515612c1457600080fd5b60ff81166000908152600d60205260409020612c36908363ffffffff61471816565b6040805160ff831681529051600160a060020a038416917f3824b64a1e23d936b458f4e31445c664d2bc9c14e842407917cbc100b0236a2f919081900360200190a25050565b600c546000908190600160a060020a0316331480612ca05750612ca0336001612b60565b1515612cab57600080fd5b600085815260166020526040812054869110612cff576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600086815260166020526040812060068101549094509250851115612da457600160a060020a0384161515612da4576040805160e560020a62461bcd02815260206004820152603560248201527f53657474696e6720612072617465206d757374206265206163636f6d70616e6960448201527f656420627920612076616c696420616464726573730000000000000000000000606482015290519081900360840190fd5b6064612db6838763ffffffff61403e16565b1115612e32576040805160e560020a62461bcd02815260206004820152602560248201527f43616e742073657420636f6d6d697373696f6e2067726561746572207468616e60448201527f2031303025000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b5050604080518082018252938452600160a060020a03928316602080860191825260009687526015905294209251835550915160019091018054600160a060020a03191691909216179055565b600381565b600c54600090600160a060020a0316331480612ea65750612ea6336001612b60565b1515612eb157600080fd5b612ec58c8c8c8c8c8c8c8c8c8b600061419f565b50612ed08c846138e1565b5060019b9a5050505050505050505050565b600e54600160a060020a03163314612ef957600080fd5b600e54604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015612f33573d6000803e3d6000fd5b50565b600160a060020a038216331415612f4c57600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b60105481565b60005b81518110156117215761300d612fef8383815181101515612fe057fe5b90602001906020020151611ff4565b848484815181101515612ffe57fe5b90602001906020020151611c95565b600101612fc3565b600c54600090600160a060020a03163314806130375750613037336001612b60565b151561304257600080fd5b612ec58c8c8c8c8c8c8c8c8c8b600161419f565b600c54600090819081908190600160a060020a031633148061307e575061307e336001612b60565b151561308957600080fd5b6000868152601660205260408120548791106130dd576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000878152601660209081526040808320601b8352818420546005820154600160a060020a03168552601a90935292208054929750909550935083908590811061312357fe5b60009182526020808320909101829055600160a060020a03909716808252601a88526040808320805460018101825590845289842081018b9055998352601b909852969020969096555050506005018054600160a060020a031916909117905550565b6000806000606060008060008761319c81611e7d565b15156131f2576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b600089815260176020908152604080832054808452601690925290912060028101546001820154929550909350849161322a8c613487565b6132338d611ff4565b939d929c50909a509850909650945050505050565b6000908152601660205260409020600a015490565b61326884848461174c565b6132748484848461473a565b15156115a357600080fd5b600081815260176020526040812054819061329981612018565b9250925050915091565b60009081526016602052604090206009015460ff1690565b6000818152601660205260408120600a810154600b8201546114d69163ffffffff6148a716565b600c546000908190600160a060020a03163314806133065750613306336001612b60565b151561331157600080fd5b600084815260166020526040812054859110613365576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b6000858152601660205260409020600a81015490935084101561341e576040805160e560020a62461bcd02815260206004820152604560248201527f556e61626c6520746f2072656475636520617661696c61626c6520616d6f756e60448201527f7420746f207468652062656c6f7720746865206e756d62657220746f74616c5360648201527f7570706c79000000000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600b8301805490859055601354909250613450908590613444908563ffffffff6148a716565b9063ffffffff61403e16565b6013555050505050565b600181565b60008082151561347257600091506114d9565b50506000818152601660205260409020541490565b60608161349381611e7d565b15156134e9576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b600f8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526114d693909290918301828280156135765780601f1061354b57610100808354040283529160200191613576565b820191906000526020600020905b81548152906001019060200180831161355957829003601f168201915b5050506000878152600b60209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815294509250830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b600c54600090819081908190600160a060020a031633148061360a575061360a336001612b60565b151561361557600080fd5b600086815260166020526040812054879110613669576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b600087815260166020908152604080832060028101548452601c83528184208b8552601d909352922054815492975090955093508490849081106136a957fe5b60009182526020808320909101829055878252601c81526040808320805460018101825590845282842081018b9055998352601d9091529020969096555050506002015550565b600090815260156020526040902080546001909101549091600160a060020a0390911690565b600c54600160a060020a03163314806137355750613735336001612b60565b151561374057600080fd5b600082815260166020526040812054839110613794576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b5060009182526016602052604090912060040155565b600c54600090600160a060020a03163314806137cc57506137cc336001612b60565b15156137d757600080fd5b612b3d8b8b8b8b8b8b8b8b8b8b600061419f565b6000818152601c6020908152604091829020805483518184028101840190945280845260609392830182828015611fd85760200282019190600052602060002090815481526020019060010190808311611fc45750505050509050919050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600061183d3383612733565b60125481565b600e54600160a060020a031633146138a257600080fd5b612f33816148b9565b60005b81518110156115a3576138d9848484848151811015156138ca57fe5b9060200190602002015161174c565b6001016138ae565b600c54600160a060020a03163314806139005750613900336001612b60565b151561390b57600080fd5b60008281526016602052604081205483911061395f576040805160e560020a62461bcd0281526020600482015260166024820152600080516020614fb0833981519152604482015290519081900360640190fd5b81613969846123f3565b511115613a0c576040805160e560020a62461bcd02815260206004820152604c60248201527f43616e206e6f74206c6f77657220746f74616c537570706c7920746f2062656c60448201527f6f7720746865206e756d626572206f6620746f6b656e7320616c72656164792060648201527f696e206578697374656e63650000000000000000000000000000000000000000608482015290519081900360a40190fd5b50600091825260166020526040909120600a0155565b600f805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815260609361183d9391929091830182828015613ab15780601f10613a8657610100808354040283529160200191613ab1565b820191906000526020600020905b815481529060010190602001808311613a9457829003601f168201915b5050506000868152600b60209081526040918290208054835160026001831615610100026000190190921691909104601f810184900484028201840190945283815294509250830182828015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b613b2682611e7d565b1515613b3157600080fd5b6000828152600b60209081526040909120825161172192840190614ec3565b613b5a82826146f9565b151561174857600080fd5b600080613b7183611ff4565b905080600160a060020a031684600160a060020a03161480613bac575083600160a060020a0316613ba1846113fa565b600160a060020a0316145b80613bbc5750613bbc818561384b565b949350505050565b81600160a060020a0316613bd782611ff4565b600160a060020a031614613bea57600080fd5b600081815260026020526040902054600160a060020a0316156117485760009081526002602052604090208054600160a060020a031916905550565b6000806000613c35858561492a565b600084815260086020908152604080832054600160a060020a0389168452600790925290912054909350613c7090600163ffffffff6148a716565b600160a060020a038616600090815260076020526040902080549193509083908110613c9857fe5b90600052602060002001549050806007600087600160a060020a0316600160a060020a0316815260200190815260200160002084815481101515613cd857fe5b6000918252602080832090910192909255600160a060020a0387168152600790915260409020805490613d0f906000198301614f31565b50600093845260086020526040808520859055908452909220555050565b6000613d3983836149b3565b50600160a060020a039091166000908152600760209081526040808320805460018101825590845282842081018590559383526008909152902055565b604080516020818101835260008083528351808301855281815284519283019094528152606092612b82928692869290614a36565b6000818152601660205260408120600a810154613dcf90600163ffffffff61403e16565b600a820181905581546114d69163ffffffff61403e16565b6000613df38585614c97565b613dfd8483613b1d565b506000838152601760209081526040808320859055848352601882528083208054600180820183559185528385208101889055878552601990935292208190556012549091613e52919063ffffffff61403e16565b601255604051600160a060020a03861690849086907f259eb7b480b3d449f506927269e4665c83c69e4cd797143eaa8f84632dc7a02b90600090a45050505050565b6000806000613ea38585614ce6565b6000848152600b60205260409020546002600019610100600184161502019091160415613ee1576000848152600b60205260408120613ee191614f55565b6000848152600a6020526040902054600954909350613f0790600163ffffffff6148a716565b9150600982815481101515613f1857fe5b9060005260206000200154905080600984815481101515613f3557fe5b60009182526020822001919091556009805484908110613f5157fe5b6000918252602090912001556009805490613f70906000198301614f31565b506000938452600a6020526040808520859055908452909220555050565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600081815260166020526040812080548290613fd690600163ffffffff61403e16565b90505b613fe281611e7d565b15613fff57613ff881600163ffffffff61403e16565b9050613fd9565b600a82015482546140159163ffffffff61403e16565b811115612b8257600a82015461403290600163ffffffff61403e16565b600a8301559392505050565b8181018281101561183d57fe5b60008080806140718561406589606463ffffffff614d3616565b9063ffffffff614d4b16565b935060008411156140b457604051600160a060020a0387169085156108fc029086906000818181858888f193505050501580156140b2573d6000803e3d6000fd5b505b6000888152601560205260408120805490945011156141235782546140e49061406589606463ffffffff614d3616565b6001840154604051919350600160a060020a03169083156108fc029084906000818181858888f19350505050158015614121573d6000803e3d6000fd5b505b61414382614137348763ffffffff6148a716565b9063ffffffff6148a716565b601454604051919250600160a060020a03169082156108fc029083906000818181858888f1935050505015801561417e573d6000803e3d6000fd5b50601154614192903463ffffffff61403e16565b6011555050505050505050565b6000808c15156141f9576040805160e560020a62461bcd02815260206004820152601b60248201527f45646974696f6e206e756d626572206e6f742070726f76696465640000000000604482015290519081900360640190fd5b6010548d11614278576040805160e560020a62461bcd02815260206004820152603360248201527f45646974696f6e206e756d626572206d7573742062652067726561746572207460448201527f68616e2070726576696f75736c79207573656400000000000000000000000000606482015290519081900360840190fd5b6010546000818152601660205260409020600b01548e9161429e9163ffffffff61403e16565b1061433f576040805160e560020a62461bcd02815260206004820152604860248201527f45646974696f6e206e756d626572206d7573742062652067726561746572207460448201527f68616e2070726576696f75736c79207573656420706c757320746f74616c206160648201527f7661696c61626c65000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b8a1515614396576040805160e560020a62461bcd02815260206004820152601960248201527f45646974696f6e2074797065206e6f742070726f766964656400000000000000604482015290519081900360640190fd5b845115156143ee576040805160e560020a62461bcd02815260206004820152601460248201527f546f6b656e20555249206973206d697373696e67000000000000000000000000604482015290519081900360640190fd5b600160a060020a038816151561444e576040805160e560020a62461bcd02815260206004820152601b60248201527f417274697374206163636f756e74206e6f742070726f76696465640000000000604482015290519081900360640190fd5b60648711158015614460575060008710155b15156144dc576040805160e560020a62461bcd02815260206004820152603b60248201527f41727469737420636f6d6d697373696f6e2063616e6e6f74206265206772656160448201527f746572207468616e20313030206f72206c657373207468616e20300000000000606482015290519081900360840190fd5b60008d81526016602052604090205415614540576040805160e560020a62461bcd02815260206004820152601c60248201527f45646974696f6e20616c726561647920696e206578697374656e636500000000604482015290519081900360640190fd5b5087801515614550575063ffffffff5b610180604051908101604052808e81526020018d6000191681526020018c81526020018b815260200182815260200189600160a060020a0316815260200188815260200187815260200186815260200184151581526020016000815260200185815250601660008f8152602001908152602001600020600082015181600001556020820151816001019060001916905560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a815481600160a060020a030219169083600160a060020a0316021790555060c0820151816006015560e0820151816007015561010082015181600801908051906020019061465c929190614ec3565b5061012082015160098201805460ff1916911515919091179055610140820151600a82015561016090910151600b9091015560135461469b908561403e565b6013556146a8888e614d74565b6146b28b8e614db0565b6040518b908d908f907ff702f09ce66e1a7f60e909cfb5b6400ce4967f4fd691158bd96066cb89c5c07890600090a450505060109990995550600198975050505050505050565b600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0316600090815260209190915260409020805460ff19169055565b60008061474f85600160a060020a0316614de2565b151561475e576001915061489e565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b838110156147f15781810151838201526020016147d9565b50505050905090810190601f16801561481e5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561484057600080fd5b505af1158015614854573d6000803e3d6000fd5b505050506040513d602081101561486a57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b6000828211156148b357fe5b50900390565b600160a060020a03811615156148ce57600080fd5b600e54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e8054600160a060020a031916600160a060020a0392909216919091179055565b81600160a060020a031661493d82611ff4565b600160a060020a03161461495057600080fd5b600160a060020a03821660009081526003602052604090205461497a90600163ffffffff6148a716565b600160a060020a039092166000908152600360209081526040808320949094559181526001909152208054600160a060020a0319169055565b600081815260016020526040902054600160a060020a0316156149d557600080fd5b60008181526001602081815260408084208054600160a060020a031916600160a060020a0388169081179091558452600390915290912054614a169161403e565b600160a060020a0390921660009081526003602052604090209190915550565b6060806060806060806060806000808e98508d97508c96508b95508a94508451865188518a518c51010101016040519080825280601f01601f191660200182016040528015614a8f578160200160208202803883390190505b50935083925060009150600090505b8851811015614afc578881815181101515614ab557fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614adc57fe5b906020010190600160f860020a031916908160001a905350600101614a9e565b5060005b8751811015614b5e578781815181101515614b1757fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614b3e57fe5b906020010190600160f860020a031916908160001a905350600101614b00565b5060005b8651811015614bc0578681815181101515614b7957fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614ba057fe5b906020010190600160f860020a031916908160001a905350600101614b62565b5060005b8551811015614c22578581815181101515614bdb57fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614c0257fe5b906020010190600160f860020a031916908160001a905350600101614bc4565b5060005b8451811015614c84578481815181101515614c3d57fe5b90602001015160f860020a900460f860020a028383806001019450815181101515614c6457fe5b906020010190600160f860020a031916908160001a905350600101614c26565b50909d9c50505050505050505050505050565b614ca18282614dea565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af015550565b614cf08282613bc4565b614cfa8282613c26565b6040518190600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183811515614d4357fe5b049392505050565b6000821515614d5c5750600061183d565b50818102818382811515614d6c57fe5b041461183d57fe5b600160a060020a039091166000908152601a6020908152604080832080546001810182559084528284208101859055938352601b909152902055565b6000918252601c6020908152604080842080546001810182559085528285208101849055928452601d90915290912055565b6000903b1190565b600160a060020a0382161515614dff57600080fd5b614e098282613d2d565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e865782800160ff19823516178555614eb3565b82800160010185558215614eb3579182015b82811115614eb3578235825591602001919060010190614e98565b50614ebf929150614f95565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f0457805160ff1916838001178555614eb3565b82800160010185558215614eb3579182015b82811115614eb3578251825591602001919060010190614f16565b81548183558181111561172157600083815260209020611721918101908301614f95565b50805460018160011615610100020316600290046000825580601f10614f7b5750612f33565b601f016020900490600052602060002090810190612f3391905b6113f791905b80821115614ebf5760008155600101614f9b560045646974696f6e206e756d62657220696e76616c696400000000000000000000a165627a7a7230582003976a3c6ca10cfc2fabb53c6ddf1af7b77438184a021940ba58db7e2c0637b70029

Deployed Bytecode Sourcemap

591:31376:9:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;591:31376:9;;775:142:15;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;775:142:15;-1:-1:-1;;;;;;775:142:15;;;;;;;;;;;;;;;;;;;;;;;22343:198:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22343:198:9;;;;;;;;;;;1518:70:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1518:70:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1518:70:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3262:111:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3262:111:5;;;;;;;;;-1:-1:-1;;;;;3262:111:5;;;;;;;;;;;;;;2758:277;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2758:277:5;-1:-1:-1;;;;;2758:277:5;;;;;;;29238:199:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29238:199:9;;;;;;;;;;;;;;;;;;;;;24667:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24667:151:9;;;;;;;;;;;;;;;;2787:87:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2787:87:7;;;;19560:217:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19560:217:9;-1:-1:-1;;;;;19560:217:9;;;;;230:54:15;;8:9:-1;5:2;;;30:1;27;20:12;5:2;230:54:15;;;;;;;;-1:-1:-1;;;;;;230:54:15;;;;;;;;;;;;;;29529:212:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29529:212:9;;;;;19375:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19375:181:9;;;;;;;;;;;;1602:109:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1602:109:0;-1:-1:-1;;;;;1602:109:0;;;;;;;;;4753:370:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4753:370:5;-1:-1:-1;;;;;4753:370:5;;;;;;;;;;;;1602:38:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1602:38:9;;;;2442:203:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2442:203:7;-1:-1:-1;;;;;2442:203:7;;;;;;;23515:213:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23515:213:9;;;;;;;30254:311;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;30254:311:9;;;;;;;;;-1:-1:-1;;;;;30254:311:9;;;;;;;;;;;;;;;;;;;;;30802:245;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;30802:245:9;;;;;827:92:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;827:92:11;;;;13275:494:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13275:494:9;-1:-1:-1;;;;;13275:494:9;;;;;;;5739:199:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5739:199:5;-1:-1:-1;;;;;5739:199:5;;;;;;;;;;;;17903:621:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17903:621:9;;;;;1767:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1767:35:9;;;;1236:174:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1236:174:0;-1:-1:-1;;;;;1236:174:0;;;;;;;;;30569:229:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;30569:229:9;;;;;1378:59;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1378:59:9;;;;2213:140:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2213:140:5;;;;;3198::7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3198:140:7;;;;;20284:217:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20284:217:9;;;;;;;29745:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29745:212:9;;;;;26126:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26126:113:9;-1:-1:-1;;;;;26126:113:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26126:113:9;;;;;;;;;;;;;;;;;236:26:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;236:26:11;;;;1871:164:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1871:164:5;;;;;29961:289:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29961:289:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;25549:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25549:155:9;-1:-1:-1;;;;;25549:155:9;;;;;31516:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31516:225:9;;;;;1856:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1856:34:9;;;;1516:142:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1516:142:5;-1:-1:-1;;;;;1516:142:5;;;;;1001:111:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1001:111:10;;;;27158:894:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;27158:894:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27158:894:9;-1:-1:-1;;;;;27158:894:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27158:894:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19854:205;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19854:205:9;;;;;;;;;;;;;;;;25866:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25866:148:9;;;;;14001:745;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14001:745:9;-1:-1:-1;;;;;14001:745:9;;;;;;;20063:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20063:217:9;;;;;;;24988:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24988:139:9;;;;;655:90:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;655:90:11;;;;12168:990:9;;-1:-1:-1;;;;;12168:990:9;;;;;;;5281:522;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5281:522:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5281:522:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5281:522:9;;-1:-1:-1;;5281:522:9;;;-1:-1:-1;5281:522:9;;-1:-1:-1;;;;5281:522:9;238:20:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;238:20:10;;;;350:37:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;350:37:0;;;;;;;;;;;;;;;;;;;;;;;1715:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1715:129:0;-1:-1:-1;;;;;1715:129:0;;;;;;;;;1686:74:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1686:74:7;;;;1414:184:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1414:184:0;-1:-1:-1;;;;;1414:184:0;;;;;;;;;23941:655:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23941:655:9;;;;;-1:-1:-1;;;;;23941:655:9;;;;;391:43:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;391:43:0;;;;7597:623:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7597:623:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7597:623:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7597:623:9;;-1:-1:-1;;7597:623:9;;;-1:-1:-1;;;7597:623:9;;;;;;-1:-1:-1;7597:623:9;;-1:-1:-1;7597:623:9;1189:91:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1189:91:8;;;;3653:205:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3653:205:5;-1:-1:-1;;;;;3653:205:5;;;;;;;;;1511:35:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1511:35:9;;;;18720:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18720:191:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18720:191:9;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18720:191:9;;-1:-1:-1;18720:191:9;;-1:-1:-1;;;;;;;18720:191:9;6717:620;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6717:620:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6717:620:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6717:620:9;;-1:-1:-1;;6717:620:9;;;-1:-1:-1;;;6717:620:9;;;;;;-1:-1:-1;6717:620:9;;-1:-1:-1;6717:620:9;20505:932;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20505:932:9;;;-1:-1:-1;;;;;20505:932:9;;;;;28176:523;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;28176:523:9;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28176:523:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28176:523:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31745:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31745:219:9;;;;;6620:276:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6620:276:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6620:276:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6620:276:5;;-1:-1:-1;6620:276:5;;-1:-1:-1;;;;;;;6620:276:5;29012:222:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29012:222:9;;;;;31051:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31051:206:9;;;;;31261:251;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31261:251:9;;;;;22917:594;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22917:594:9;;;;;;;303:43:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;303:43:0;;;;26337:284:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26337:284:9;;;;;28703:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;28703:162:9;;;;;21441:898;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21441:898:9;;;;;;;26754:269;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26754:269:9;;;;;;;;;;;;-1:-1:-1;;;;;26754:269:9;;;;;;;;;;;;;;;;23732:205;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23732:205:9;;;;;;;5934:525;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5934:525:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5934:525:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5934:525:9;;-1:-1:-1;;5934:525:9;;;-1:-1:-1;5934:525:9;;-1:-1:-1;;;;5934:525:9;25294:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25294:138:9;;;;;4167:168:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4167:168:5;-1:-1:-1;;;;;4167:168:5;;;;;;;;;;11747:137:9;;;;;;1686:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1686:32:9;;;;1274:103:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1274:103:10;-1:-1:-1;;;;;1274:103:10;;;;;19117:190:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19117:190:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19117:190:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19117:190:9;;-1:-1:-1;19117:190:9;;-1:-1:-1;;;;;;;19117:190:9;22545:368;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22545:368:9;;;;;;;28869:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;28869:139:9;;;;;775:142:15;-1:-1:-1;;;;;;879:33:15;858:4;879:33;;;;;;;;;;;;;;775:142::o;22343:198:9:-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;22452:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;-1:-1:-1;22474:45:9;;;;:29;:45;;;;;;:52;;:62;;-1:-1:-1;;22474:62:9;;;;;;;;;;22343:198::o;1518:70:7:-;1578:5;1571:12;;;;;;;;-1:-1:-1;;1571:12:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1557:6;;1571:12;;1578:5;;1571:12;;1578:5;1571:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518:70;;:::o;3262:111:5:-;3322:7;3344:24;;;:14;:24;;;;;;-1:-1:-1;;;;;3344:24:5;;3262:111::o;2758:277::-;2819:13;2835:17;2843:8;2835:7;:17::i;:::-;2819:33;-1:-1:-1;;;;;;2866:12:5;;;;;;;;2858:21;;;;;;2893:10;-1:-1:-1;;;;;2893:19:5;;;;:58;;;2916:35;2933:5;2940:10;2916:16;:35::i;:::-;2885:67;;;;;;;;2959:24;;;;:14;:24;;;;;;:30;;-1:-1:-1;;;;;;2959:30:5;-1:-1:-1;;;;;2959:30:5;;;;;;;;;3000;;2959:24;;3000:30;;;;;;;2758:277;;;:::o;29238:199:9:-;29302:19;29354:32;;;:22;:32;;;;;;29399:33;29354:32;29399:17;:33::i;:::-;29392:40;;29238:199;;;;;:::o;24667:151::-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;24769:8:9;4593:16;4600:8;4593:6;:16::i;:::-;4585:52;;;;;;;-1:-1:-1;;;;;4585:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;24785:28;24798:8;24808:4;;24785:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24785:12:9;;-1:-1:-1;;;;;24785:28:9:i;:::-;739:1:0;24667:151:9;;;:::o;2787:87:7:-;2853:9;:16;2787:87;:::o;19560:217:9:-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;-1:-1:-1;;;;;19670:34:9;;;;19662:62;;;;;-1:-1:-1;;;;;19662:62:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;19730:19;:42;;-1:-1:-1;;;;;;19730:42:9;-1:-1:-1;;;;;19730:42:9;;;;;;;;;;19560:217::o;230:54:15:-;;;:::o;29529:212:9:-;29595:7;29651:45;;;:29;:45;;;;;29709:27;;;;29529:212::o;19375:181::-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;19468:30:9;;;19460:59;;;;;-1:-1:-1;;;;;19460:59:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;19525:26;:12;19540:11;;19525:26;:::i;:::-;;19375:181;;:::o;1602:109:0:-;1677:12;;;;;;;:5;:12;;;;;:29;;1696:9;1677:29;:18;:29;:::i;:::-;1602:109;;:::o;4753:370:5:-;4864:39;4882:10;4894:8;4864:17;:39::i;:::-;4856:48;;;;;;;;-1:-1:-1;;;;;4918:19:5;;;;4910:28;;;;;;-1:-1:-1;;;;;4952:17:5;;;;4944:26;;;;;;4977:30;4991:5;4998:8;4977:13;:30::i;:::-;5013:32;5029:5;5036:8;5013:15;:32::i;:::-;5051:25;5062:3;5067:8;5051:10;:25::i;:::-;5109:8;5104:3;-1:-1:-1;;;;;5088:30:5;5097:5;-1:-1:-1;;;;;5088:30:5;;;;;;;;;;;4753:370;;;:::o;1602:38:9:-;;;;:::o;2442:203:7:-;2548:7;2582:17;2592:6;2582:9;:17::i;:::-;2573:26;;2565:35;;;;;;-1:-1:-1;;;;;2613:19:7;;;;;;:11;:19;;;;;:27;;2633:6;;2613:27;;;;;;;;;;;;;;2606:34;;2442:203;;;;;:::o;23515:213:9:-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;23633:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;-1:-1:-1;23655:45:9;;;;:29;:45;;;;;;:55;;:68;23515:213::o;30254:311::-;30325:22;30423:45;;;:29;:45;;;;;30487:29;;;;30522:32;;;;;-1:-1:-1;;;;;30487:29:9;;;;30254:311::o;30802:245::-;30886:38;30927:45;;;:29;:45;;;;;;;;;31003:12;30985:57;;;;;;-1:-1:-1;;30985:57:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30872:6;;30927:45;;30985:57;;;31003:12;30985:57;;;31003:12;30985:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;31017:24:9;;;30985:57;;;;;;;;;;;;;-1:-1:-1;;30985:57:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30985:57:9;;;31017:24;30985:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:57::i;827:92:11:-;719:5:10;;-1:-1:-1;;;;;719:5:10;705:10;:19;697:28;;;;;;557:6:11;;-1:-1:-1;;;557:6:11;;;;549:15;;;;;;;;880:6;:14;;-1:-1:-1;;880:14:11;;;905:9;;;;889:5;;905:9;827:92::o;13275:494:9:-;801:5:0;;13434:7:9;;;;-1:-1:-1;;;;;801:5:0;787:10;:19;;:61;;;810:38;818:10;345:1;810:7;:38::i;:::-;787:97;;;;852:32;860:10;386:1;852:7;:32::i;:::-;779:106;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;13368:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;4096:45;;;;:29;:45;;;;;:60;;;;4036:57;;;;;13407:14;;-1:-1:-1;4028:166:9;;;;;-1:-1:-1;;;;;4028:166:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13562:28;13575:14;13562:12;:28::i;:::-;13663:45;;;;:29;:45;;;;;;;;;:54;;13621:97;;;;;;;;;;;-1:-1:-1;;13621:97:9;;;;;;;;;;;;;;;;;;;;;;;;;;13543:47;;-1:-1:-1;13621:97:9;;13632:3;;13543:47;;13663:45;;:54;13621:97;;;13663:54;13621:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:97::i;:::-;-1:-1:-1;13756:8:9;;13275:494;-1:-1:-1;;;;13275:494:9:o;5739:199:5:-;5891:42;5908:5;5915:3;5920:8;5891:42;;;;;;;;;;;;;:16;:42::i;17903:621:9:-;685:5:0;;18083:22:9;;;;;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;17993:40:9;18005:17;18013:8;18005:7;:17::i;:::-;18024:8;17993:11;:40::i;:::-;-1:-1:-1;;;18108:32:9;;;;:22;:32;;;;;;;;;;18178:39;;;;18355;;;:23;:39;;;;;18430:37;;;:27;:37;;;;;;18480:39;;18355;;18430:37;;18480:39;;;;;;;;;;;;;;18473:46;-1:-1:-1;;;;17903:621:9:o;1767:35::-;;;;:::o;1236:174:0:-;685:5;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;1340:12;;;;;;;:5;:12;;;;;:27;;1357:9;1340:27;:16;:27;:::i;:::-;1378;;;;;;;;;;-1:-1:-1;;;;;1378:27:0;;;;;;;;;;;;;1236:174;;:::o;30569:229:9:-;30641:19;30709:45;;;:29;:45;;;;;30767:26;;;;30569:229::o;1378:59::-;;;;;;;;;;;;;;;-1:-1:-1;;1378:59:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2213:140:5:-;2268:4;2296:20;;;:10;:20;;;;;;-1:-1:-1;;;;;2296:20:5;2329:19;;;2213:140::o;3198::7:-;3257:7;3289:13;:11;:13::i;:::-;3280:22;;3272:31;;;;;;3316:9;:17;;3326:6;;3316:17;;;;;;;;;;;;;;3309:24;;3198:140;;;:::o;20284:217:9:-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;20404:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;-1:-1:-1;20426:45:9;;;;:29;:45;;;;;;:62;;:70;20284:217::o;29745:212::-;29811:7;29867:45;;;:29;:45;;;;;29925:27;;;;29745:212::o;26126:113::-;-1:-1:-1;;;;;26215:19:9;;;;;;:11;:19;;;;;;;;;26208:26;;;;;;;;;;;;;;;;;26181:19;;26208:26;;;26215:19;26208:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26126:113;;;:::o;236:26:11:-;;;-1:-1:-1;;;236:26:11;;;;;:::o;1871:164:5:-;1927:7;1958:20;;;:10;:20;;;;;;-1:-1:-1;;;;;1958:20:5;1992:19;;;1984:28;;;;;29961:289:9;30036:18;30121:45;;;:29;:45;;;;;30185:25;;;;30216:23;;;;;30185:25;;29961:289::o;25549:155::-;-1:-1:-1;;;;;25660:39:9;;;;;;:22;:39;;;;;;;;;25653:46;;;;;;;;;;;;;;;;;25620:25;;25653:46;;;25660:39;25653:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25549:155;;;:::o;31516:225::-;31592:7;31648:45;;;:29;:45;;;;;31706:30;;;;31516:225::o;1856:34::-;;;-1:-1:-1;;;;;1856:34:9;;:::o;1516:142:5:-;1572:7;-1:-1:-1;;;;;1595:20:5;;;;1587:29;;;;;;-1:-1:-1;;;;;;1629:24:5;;;;;:16;:24;;;;;;;1516:142::o;1001:111:10:-;719:5;;-1:-1:-1;;;;;719:5:10;705:10;:19;697:28;;;;;;1077:5;;1058:25;;-1:-1:-1;;;;;1077:5:10;;;;1058:25;;1077:5;;1058:25;1089:5;:18;;-1:-1:-1;;;;;;1089:18:10;;;1001:111::o;27158:894:9:-;27270:20;27296;27322:18;27346:16;27368:22;27396:25;27427:19;27452:16;27474:20;27500:23;27529:12;27552:38;27239:13;4491:1;4429:29;:45;4459:14;4429:45;;;;;;;;;;;:59;;;:63;4421:98;;;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;27593:29;:44;27623:13;27593:44;;;;;;;;;;;27552:85;;27656:15;:27;;;27689:15;:27;;;27722:15;:25;;;27753:15;:23;;;27782:15;:29;;;;;;;;;;-1:-1:-1;;;;;27782:29:9;27817:15;:32;;;27855:15;:26;;;27887:57;27905:12;27887:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;27919:24:9;;;27887:57;;;;;;;;;;;;;-1:-1:-1;;27887:57:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27887:57:9;;;27919:24;27887:57;;;;;;;;;;;;;;;;;;;;;;;;;27950:15;:27;;;27983:15;:30;;;28019:15;:22;;;;;;;;;;;;27643:404;;;;;;;;;;;;;;;;;;;;;;27158:894;;;;;;;;;;;;;;;:::o;19854:205::-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;19971:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;19993:45;;;;:29;:45;;;;;:61;;:54;;20050:4;;19993:61;:::i;:::-;;739:1:0;19854:205:9;;;:::o;25866:148::-;25970:39;;;;:23;:39;;;;;;;;;25963:46;;;;;;;;;;;;;;;;;25936:19;;25963:46;;;25970:39;25963:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25866:148;;;:::o;14001:745::-;958:5:0;;14131:7:9;;;;-1:-1:-1;;;;;958:5:0;944:10;:19;;:61;;;967:38;975:10;345:1;967:7;:38::i;:::-;944:103;;;;1009:38;1017:10;433:1;1009:7;:38::i;:::-;936:112;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;14104:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;14241:37;14263:14;14241:21;:37::i;:::-;14434:45;;;;:29;:45;;;;;:60;;;14222:56;;-1:-1:-1;14415:80:9;;14464:14;;14415:80;:18;:80;:::i;:::-;14404:8;:91;14400:168;;;14505:56;;;-1:-1:-1;;;;;14505:56:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14400:168;14640:45;;;;:29;:45;;;;;;;;;:54;;14598:97;;;;;;-1:-1:-1;;14598:97:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14609:3;;14614:8;;14624:14;;14640:54;;14598:97;;14640:54;14598:97;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14733:8:9;14001:745;-1:-1:-1;;;14001:745:9:o;20063:217::-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;20183:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;-1:-1:-1;20205:45:9;;;;:29;:45;;;;;;:56;;:70;20063:217::o;24988:139::-;25053:22;25090:32;;;:22;:32;;;;;;;24988:139::o;655:90:11:-;719:5:10;;-1:-1:-1;;;;;719:5:10;705:10;:19;697:28;;;;;;405:6:11;;-1:-1:-1;;;405:6:11;;;;404:7;396:16;;;;;;709:6;:13;;-1:-1:-1;;709:13:11;-1:-1:-1;;;709:13:11;;;733:7;;;;709:13;;733:7;655:90::o;12168:990:9:-;405:6:11;;12423:7:9;;;;;;-1:-1:-1;;;405:6:11;;;;404:7;396:16;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;12278:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;4275:45;;;;:29;:45;;;;;:52;;;12314:14;;4275:52;;4267:83;;;;;;;-1:-1:-1;;;;;4267:83:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;4096:45;;;;:29;:45;;;;;:60;;;;4036:57;;;;;12353:14;;-1:-1:-1;4028:166:9;;;;;-1:-1:-1;;;;;4028:166:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4725:45;;;;:29;:45;;;;;:55;;;12396:14;;4784:15;-1:-1:-1;4725:74:9;4717:112;;;;;-1:-1:-1;;;;;4717:112:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;4843:45;;;;:29;:45;;;;;:53;;;4900:15;-1:-1:-1;4843:72:9;4835:112;;;;;-1:-1:-1;;;;;4835:112:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;12480:45;;;;:29;:45;;;;;12552:26;;;;12480:45;;-1:-1:-1;12539:9:9;:39;;12531:95;;;;;-1:-1:-1;;;;;12531:95:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:28;12759:14;12746:12;:28::i;:::-;12847:24;;;12805:67;;;;;;;;-1:-1:-1;;12805:67:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12727:47;;-1:-1:-1;12805:67:9;;12816:3;;12727:47;;12831:14;;12805:67;;12847:24;12805:67;;;;;;;;;;;;;;;;;;;;;;;;;12922:121;12935:14;12951:15;:26;;;12979:15;:29;;;;;;;;;;-1:-1:-1;;;;;12979:29:9;13010:15;:32;;;12922:12;:121::i;:::-;13116:3;-1:-1:-1;;;;;13081:50:9;13100:14;13090:8;13081:50;13121:9;13081:50;;;;;;;;;;;;;;;;;;-1:-1:-1;13145:8:9;;12168:990;-1:-1:-1;;;;;;;12168:990:9:o;5281:522::-;685:5:0;;5615:4:9;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;5636:162:9;5651:14;5667:12;5681;5695:10;5707:8;5717:14;5733:17;5752:11;5765:9;5776:15;5793:4;5636:14;:162::i;:::-;5629:169;5281:522;-1:-1:-1;;;;;;;;;;;5281:522:9:o;238:20:10:-;;;-1:-1:-1;;;;;238:20:10;;:::o;350:37:0:-;386:1;350:37;:::o;1715:129::-;1812:12;;;1791:4;1812:12;;;:5;:12;;;;;:27;;1829:9;1812:27;:16;:27;:::i;:::-;1805:34;1715:129;-1:-1:-1;;;1715:129:0:o;1686:74:7:-;1748:7;1741:14;;;;;;;;-1:-1:-1;;1741:14:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1727:6;;1741:14;;1748:7;;1741:14;;1748:7;1741:14;;;;;;;;;;;;;;;;;;;;;;;;1414:184:0;685:5;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;1523:12;;;;;;;:5;:12;;;;;:30;;1543:9;1523:30;:19;:30;:::i;:::-;1564:29;;;;;;;;;;-1:-1:-1;;;;;1564:29:0;;;;;;;;;;;;;1414:184;;:::o;23941:655:9:-;685:5:0;;24105:38:9;;;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;24083:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;24146:45;;;;:29;:45;;;;;24224:32;;;;24146:45;;-1:-1:-1;24224:32:9;-1:-1:-1;24267:9:9;;24263:120;;;-1:-1:-1;;;;;24294:24:9;;;;24286:90;;;;;-1:-1:-1;;;;;24286:90:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24427:3;24396:27;:16;24417:5;24396:27;:20;:27;:::i;:::-;:34;;24388:84;;;;;-1:-1:-1;;;;;24388:84:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24536:55:9;;;;;;;;;;;-1:-1:-1;;;;;24536:55:9;;;;;;;;;;-1:-1:-1;24479:54:9;;;:38;:54;;;;:112;;;;-1:-1:-1;24479:112:9;;;;;;;;-1:-1:-1;;;;;;24479:112:9;;;;;;;;23941:655::o;391:43:0:-;433:1;391:43;:::o;7597:623:9:-;685:5:0;;7968:4:9;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;7982:163:9;7997:14;8013:12;8027;8041:10;8053:8;8063:14;8079:17;8098:11;8111:9;8122:15;8139:5;7982:14;:163::i;:::-;;8151:47;8169:14;8185:12;8151:17;:47::i;:::-;-1:-1:-1;8211:4:9;7597:623;;;;;;;;;;;;;:::o;1189:91:8:-;719:5:10;;-1:-1:-1;;;;;719:5:10;705:10;:19;697:28;;;;;;1238:5:8;;:37;;-1:-1:-1;;;;;1238:5:8;;;;1261:4;1253:21;1238:37;;;;;:5;:37;:5;:37;1253:21;1238:5;:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1238:37:8;1189:91::o;3653:205:5:-;-1:-1:-1;;;;;3730:17:5;;3737:10;3730:17;;3722:26;;;;;;3772:10;3754:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;3754:34:5;;;;;;;;;;;;:46;;-1:-1:-1;;3754:46:5;;;;;;;;;;3811:42;;;;;;;3754:34;;3772:10;3811:42;;;;;;;;;;;3653:205;;:::o;1511:35:9:-;;;;:::o;18720:191::-;18795:6;18790:117;18811:9;:16;18807:1;:20;18790:117;;;18842:58;18859:21;18867:9;18877:1;18867:12;;;;;;;;;;;;;;;;;;18859:7;:21::i;:::-;18882:3;18887:9;18897:1;18887:12;;;;;;;;;;;;;;;;;;18842:16;:58::i;:::-;18829:3;;18790:117;;6717:620;685:5:0;;7086:4:9;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;7100:162:9;7115:14;7131:12;7145;7159:10;7171:8;7181:14;7197:17;7216:11;7229:9;7240:15;7257:4;7100:14;:162::i;20505:932::-;685:5:0;;20655:46:9;;;;;;;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;20632:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;20704:45;;;;:29;:45;;;;;;;;20785:26;:42;;;;;;20951:37;;;;-1:-1:-1;;;;;20951:37:9;20928:61;;:22;:61;;;;;21044:43;;20704:45;;-1:-1:-1;20785:42:9;;-1:-1:-1;20928:61:9;-1:-1:-1;20928:61:9;;20785:42;;21044:43;;;;;;;;;;;;;;;;;21037:50;;;-1:-1:-1;;;;;21162:38:9;;;;;;:22;:38;;;;;;:45;;39:1:-1;23:18;;45:23;;21213:59:9;;;;;;;;;;;21278:42;;;:26;:42;;;;;;:67;;;;-1:-1:-1;;;21378:37:9;;:54;;-1:-1:-1;;;;;;21378:54:9;;;;;;-1:-1:-1;20505:932:9:o;28176:523::-;28272:22;28300:20;28326;28352:16;28374:14;28399:21;28461:37;28246:8;4593:16;4600:8;4593:6;:16::i;:::-;4585:52;;;;;;;-1:-1:-1;;;;;4585:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;28423:32;;;;:22;:32;;;;;;;;;28501:44;;;:29;:44;;;;;;28583:26;;;;28615;;;;28423:32;;-1:-1:-1;28501:44:9;;-1:-1:-1;28423:32:9;;28647:18;28446:8;28647;:18::i;:::-;28671:17;28679:8;28671:7;:17::i;:::-;28551:143;;;;-1:-1:-1;28551:143:9;;-1:-1:-1;28551:143:9;-1:-1:-1;28551:143:9;;-1:-1:-1;28176:523:9;-1:-1:-1;;;;;28176:523:9:o;31745:219::-;31818:7;31874:45;;;:29;:45;;;;;31932:27;;;;31745:219::o;6620:276:5:-;6744:34;6757:5;6764:3;6769:8;6744:12;:34::i;:::-;6837:53;6862:5;6869:3;6874:8;6884:5;6837:24;:53::i;:::-;6829:62;;;;;;;29012:222:9;29079:18;29148:32;;;:22;:32;;;;;;29079:18;;29193:36;29148:32;29193:20;:36::i;:::-;29186:43;;;;29012:222;;;;:::o;31051:206::-;31119:4;31172:45;;;:29;:45;;;;;31230:22;;;;;;31051:206::o;31261:251::-;31330:7;31386:45;;;:29;:45;;;;;31479:27;;;;31444:30;;;;:63;;;:34;:63;:::i;22917:594::-;685:5:0;;23067:38:9;;;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;23045:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;23108:45;;;;:29;:45;;;;;23168:27;;;;23108:45;;-1:-1:-1;23168:46:9;-1:-1:-1;23168:46:9;23160:128;;;;;-1:-1:-1;;;;;23160:128:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23326:30;;;;;23362:48;;;;23439:20;;23326:30;;-1:-1:-1;23439:67:9;;23395:15;;23439:46;;23326:30;23439:46;:24;:46;:::i;:::-;:50;:67;:50;:67;:::i;:::-;23416:20;:90;-1:-1:-1;;;;;22917:594:9:o;303:43:0:-;345:1;303:43;:::o;26337:284:9:-;26405:4;;26421:19;;26417:52;;;26457:5;26450:12;;;;26417:52;-1:-1:-1;;26513:45:9;;;;:29;:45;;;;;26571:27;:45;;26337:284::o;28703:162::-;28787:6;28768:8;4593:16;4600:8;4593:6;:16::i;:::-;4585:52;;;;;;;-1:-1:-1;;;;;4585:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;28826:12;28808:52;;;;;;;;-1:-1:-1;;28808:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28826:12;;28808:52;;28826:12;28808:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28840:19:9;;;;:9;:19;;;;;;;;;28808:52;;;;;;;;;;;-1:-1:-1;;28808:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28840:19:9;-1:-1:-1;28808:52:9;;28840:19;28808:52;;;;;;;;;;;;;;;;;;;;;;;;21441:898;685:5:0;;21586:46:9;;;;;;;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;21563:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;21635:45;;;;:29;:45;;;;;;;;21797:35;;;;21770:63;;:26;:63;;;;;21908:40;;;:24;:40;;;;;;21961:39;;21635:45;;-1:-1:-1;21770:63:9;;-1:-1:-1;21908:40:9;-1:-1:-1;21770:63:9;;21908:40;;21961:39;;;;;;;;;;;;;;;;;21954:46;;;22069:40;;;:26;:40;;;;;;:47;;39:1:-1;23:18;;45:23;;22122:61:9;;;;;;;;;;;22189:40;;;:24;:40;;;;;:62;;;;-1:-1:-1;;;22284:35:9;;:50;-1:-1:-1;21441:898:9:o;26754:269::-;26834:13;26912:54;;;:38;:54;;;;;26980:15;;26997:20;;;;;26980:15;;-1:-1:-1;;;;;26997:20:9;;;;26754:269::o;23732:205::-;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;23846:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;-1:-1:-1;23868:45:9;;;;:29;:45;;;;;;:53;;:64;23732:205::o;5934:525::-;685:5:0;;6270:4:9;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;6291:163:9;6306:14;6322:12;6336;6350:10;6362:8;6372:14;6388:17;6407:11;6420:9;6431:15;6448:5;6291:14;:163::i;25294:138::-;25394:33;;;;:26;:33;;;;;;;;;25387:40;;;;;;;;;;;;;;;;;25354:25;;25387:40;;;25394:33;25387:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25294:138;;;:::o;4167:168:5:-;-1:-1:-1;;;;;4294:25:5;;;4273:4;4294:25;;;:17;:25;;;;;;;;:36;;;;;;;;;;;;;;;4167:168::o;11747:137:9:-;11819:7;11841:38;11852:10;11864:14;11841:10;:38::i;1686:32::-;;;;:::o;1274:103:10:-;719:5;;-1:-1:-1;;;;;719:5:10;705:10;:19;697:28;;;;;;1343:29;1362:9;1343:18;:29::i;19117:190:9:-;19211:6;19206:97;19227:9;:16;19223:1;:20;19206:97;;;19258:38;19271:5;19278:3;19283:9;19293:1;19283:12;;;;;;;;;;;;;;;;;;19258;:38::i;:::-;19245:3;;19206:97;;22545:368;685:5:0;;-1:-1:-1;;;;;685:5:0;671:10;:19;;:61;;;694:38;702:10;345:1;694:7;:38::i;:::-;663:70;;;;;;;;4491:1:9;4429:45;;;:29;:45;;;;;:59;22665:14;;-1:-1:-1;4421:98:9;;;;;-1:-1:-1;;;;;4421:98:9;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4421:98:9;;;;;;;;;;;;;;;22737:12;22695:31;22711:14;22695:15;:31::i;:::-;:38;:54;;22687:143;;;;;-1:-1:-1;;;;;22687:143:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22836:45:9;;;;:29;:45;;;;;;:57;;:72;22545:368::o;28869:139::-;28969:12;28951:52;;;;;;;;;;;;;-1:-1:-1;;28951:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;28930:6;;28951:52;;;;28969:12;;28951:52;;28969:12;28951:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28983:19:9;;;;:9;:19;;;;;;;;;28951:52;;;;;;;;;;;-1:-1:-1;;28951:52:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28983:19:9;-1:-1:-1;28951:52:9;;28983:19;28951:52;;;;;;;;;;;;;;;;;;;;;;;;3563:130:7;3639:16;3646:8;3639:6;:16::i;:::-;3631:25;;;;;;;;3662:19;;;;:9;:19;;;;;;;;:26;;;;;;;;:::i;666:111:12:-;754:17;758:5;765;754:3;:17::i;:::-;746:26;;;;;;;7243:438:5;7353:4;7367:13;7383:17;7391:8;7383:7;:17::i;:::-;7367:33;;7579:5;-1:-1:-1;;;;;7567:17:5;:8;-1:-1:-1;;;;;7567:17:5;;:60;;;;7619:8;-1:-1:-1;;;;;7594:33:5;:21;7606:8;7594:11;:21::i;:::-;-1:-1:-1;;;;;7594:33:5;;7567:60;:103;;;;7637:33;7654:5;7661:8;7637:16;:33::i;:::-;7552:124;7243:438;-1:-1:-1;;;;7243:438:5:o;8735:214::-;8836:6;-1:-1:-1;;;;;8815:27:5;:17;8823:8;8815:7;:17::i;:::-;-1:-1:-1;;;;;8815:27:5;;8807:36;;;;;;8889:1;8853:24;;;:14;:24;;;;;;-1:-1:-1;;;;;8853:24:5;:38;8849:96;;8936:1;8901:24;;;:14;:24;;;;;:37;;-1:-1:-1;;;;;;8901:37:5;;;-1:-1:-1;8735:214:5:o;4461:1022:7:-;4716:18;4769:22;4832:17;4534:38;4556:5;4563:8;4534:21;:38::i;:::-;4737:26;;;;:16;:26;;;;;;;;;-1:-1:-1;;;;;4794:18:7;;;;:11;:18;;;;;;:25;4737:26;;-1:-1:-1;4794:32:7;;4824:1;4794:32;:29;:32;:::i;:::-;-1:-1:-1;;;;;4852:18:7;;;;;;:11;:18;;;;;:34;;4769:57;;-1:-1:-1;4852:18:7;4769:57;;4852:34;;;;;;;;;;;;;;4832:54;;4926:9;4893:11;:18;4905:5;-1:-1:-1;;;;;4893:18:7;-1:-1:-1;;;;;4893:18:7;;;;;;;;;;;;4912:10;4893:30;;;;;;;;;;;;;;;;;;;;;:42;;;;-1:-1:-1;;;;;5013:18:7;;;;:11;:18;;;;;;:27;;;;;-1:-1:-1;;5013:27:7;;;:::i;:::-;-1:-1:-1;5431:1:7;5402:26;;;:16;:26;;;;;;:30;;;5438:27;;;;;;:40;-1:-1:-1;;4461:1022:7:o;3956:226::-;4059:14;4022:31;4039:3;4044:8;4022:16;:31::i;:::-;-1:-1:-1;;;;;;4076:16:7;;;;;;;:11;:16;;;;;;;;:23;;39:1:-1;23:18;;45:23;;4105:31:7;;;;;;;;;;;4142:26;;;:16;:26;;;;;:35;3956:226::o;897:119:14:-;982:29;;;;;;;;;-1:-1:-1;982:29:14;;;;;;;;;;;;;;;;;;;;;;;961:6;;982:29;;992:2;;996;;982:29;:9;:29::i;14750:442:9:-;14814:7;14870:45;;;:29;:45;;;;;14983:27;;;;:34;;15015:1;14983:34;:31;:34;:::i;:::-;14953:27;;;:64;;;15125:29;;:62;;;:33;:62;:::i;15904:952::-;16296:29;16040:26;16052:3;16057:8;16040:11;:26::i;:::-;16072:39;16091:8;16101:9;16072:18;:39::i;:::-;-1:-1:-1;16176:32:9;;;;:22;:32;;;;;;;;:49;;;16328:39;;;:23;:39;;;;;:46;;39:1:-1;23:18;;;45:23;;16459:54:9;;;;;;;;;;;16639:37;;;:27;:37;;;;;:61;;;16753:17;;16328:46;;16753:24;;:17;:24;:21;:24;:::i;:::-;16733:17;:44;16814:37;;-1:-1:-1;;;;;16814:37:9;;;16831:14;;16821:8;;16814:37;;;;;15904:952;;;;;:::o;6148:585:7:-;6400:18;6451:22;6505:17;6212:29;6224:6;6232:8;6212:11;:29::i;:::-;6289:19;;;;:9;:19;;;;;6283:33;;-1:-1:-1;;6283:33:7;;;;;;;;;;;:38;6279:85;;6338:19;;;;:9;:19;;;;;6331:26;;;:::i;:::-;6421:24;;;;:14;:24;;;;;;6476:9;:16;6421:24;;-1:-1:-1;6476:23:7;;6497:1;6476:23;:20;:23;:::i;:::-;6451:48;;6525:9;6535:14;6525:25;;;;;;;;;;;;;;;;;;6505:45;;6581:9;6557;6567:10;6557:21;;;;;;;;;;;;;;;;;;:33;;;;6596:9;:25;;6606:14;;6596:25;;;;;;;;;;;;;;;:29;6632:9;:18;;;;;-1:-1:-1;;6632:18:7;;;:::i;:::-;-1:-1:-1;6683:1:7;6656:24;;;:14;:24;;;;;;:28;;;6690:25;;;;;;:38;-1:-1:-1;;6148:585:7:o;321:100:12:-;-1:-1:-1;;;;;390:19:12;:12;:19;;;;;;;;;;;:26;;-1:-1:-1;;390:26:12;412:4;390:26;;;321:100::o;15196:704:9:-;15269:7;15325:45;;;:29;:45;;;;;15453:29;;15269:7;;15453:36;;15487:1;15453:36;:33;:36;:::i;:::-;15434:55;;15575:66;15582:16;15589:8;15582:6;:16::i;:::-;15575:66;;;15619:15;:8;15632:1;15619:15;:12;:15;:::i;:::-;15608:26;;15575:66;;;15765:27;;;;15731:29;;:62;;;:33;:62;:::i;:::-;15720:8;:73;15716:158;;;15833:27;;;;:34;;15865:1;15833:34;:31;:34;:::i;:::-;15803:27;;;:64;15887:8;15196:704;-1:-1:-1;;;15196:704:9:o;1238:128:13:-;1319:7;;;1339;;;;1332:15;;;16860:937:9;17044:21;;;;17068:43;17093:17;17068:20;:11;17084:3;17068:20;:15;:20;:::i;:::-;:24;:43;:24;:43;:::i;:::-;17044:67;;17137:1;17121:13;:17;17117:76;;;17148:38;;-1:-1:-1;;;;;17148:23:9;;;:38;;;;;17172:13;;17148:38;;;;17172:13;17148:23;:38;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17148:38:9;17117:76;17273:54;;;;:38;:54;;;;;17381:15;;17273:54;;-1:-1:-1;17381:19:9;17377:149;;;17455:15;;17430:41;;:20;:11;17446:3;17430:20;:15;:20;:::i;:41::-;17479:20;;;;:40;;17410:61;;-1:-1:-1;;;;;;17479:20:9;;:40;;;;;17410:61;;17479:20;:40;:20;:40;17410:61;17479:20;:40;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17479:40:9;17377:149;17594:43;17627:9;17594:28;:9;17608:13;17594:28;:13;:28;:::i;:::-;:32;:43;:32;:43;:::i;:::-;17643:19;;:49;;17564:73;;-1:-1:-1;;;;;;17643:19:9;;:49;;;;;17564:73;;17643:19;:49;:19;:49;17564:73;17643:19;:49;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;17754:23:9;;:38;;17782:9;17754:38;:27;:38;:::i;:::-;17728:23;:64;-1:-1:-1;;;;;;;;16860:937:9:o;8292:2570::-;8621:4;;8681:19;;;8673:59;;;;;-1:-1:-1;;;;;8673:59:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;8819:20;;8802:37;;8794:101;;;;;-1:-1:-1;;;;;8794:101:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9050:20;;9020:51;;;;:29;:51;;;;;:66;;;9090:14;;8995:92;;;:24;:92;:::i;:::-;:109;8987:194;;;;;-1:-1:-1;;;;;8987:194:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9225:17;;;9217:55;;;;;-1:-1:-1;;;;;9217:55:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;9320:23;;:28;;9312:61;;;;;-1:-1:-1;;;;;9312:61:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9425:28:9;;;;9417:68;;;;;-1:-1:-1;;;;;9417:68:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;9556:3;9535:17;:24;;:50;;;;;9584:1;9563:17;:22;;9535:50;9527:122;;;;;;;-1:-1:-1;;;;;9527:122:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9698:45;;;;:29;:45;;;;;:59;:64;9690:105;;;;;-1:-1:-1;;;;;9690:105:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9859:8:9;9877:13;;9873:54;;;-1:-1:-1;9910:10:9;9873:54;9981:442;;;;;;;;;10020:14;9981:442;;;;10056:12;9981:442;;;;;;;10090:12;9981:442;;;;10122:10;9981:442;;;;10150:7;9981:442;;;;10181:14;-1:-1:-1;;;;;9981:442:9;;;;;10222:17;9981:442;;;;10260:11;9981:442;;;;10290:9;9981:442;;;;10407:7;9981:442;;;;;;10321:1;9981:442;;;;10375:15;9981:442;;;9933:29;:45;9963:14;9933:45;;;;;;;;;;;:490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9933:490:9;;;;;-1:-1:-1;;;;;9933:490:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;9933:490:9;;;;;;;;;-1:-1:-1;;9933:490:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;10489:20;;:41;;10514:15;10489:24;:41::i;:::-;10466:20;:64;10560:55;10584:14;10600;10560:23;:55::i;:::-;10621:58;10650:12;10664:14;10621:28;:58::i;:::-;10691;;10736:12;;10722;;10706:14;;10691:58;;;;;-1:-1:-1;;;10802:20:9;:37;;;;-1:-1:-1;10853:4:9;;8292:2570;-1:-1:-1;;;;;;;;8292:2570:9:o;855:128:12:-;-1:-1:-1;;;;;959:19:12;938:4;959:19;;;;;;;;;;;;;;;855:128::o;486:104::-;-1:-1:-1;;;;;558:19:12;580:5;558:19;;;;;;;;;;;:27;;-1:-1:-1;;558:27:12;;;486:104::o;10415:347:5:-;10554:4;10622:13;10573:16;:3;-1:-1:-1;;;;;10573:14:5;;:16::i;:::-;10572:17;10568:49;;;10606:4;10599:11;;;;10568:49;10638:79;;;;;10682:10;10638:79;;;;;;-1:-1:-1;;;;;10638:79:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;;10682:10;10694:5;;10701:8;;10711:5;;10638:79;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10638:79:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10638:79:5;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10638:79:5;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10638:79:5;-1:-1:-1;;;;;;10731:25:5;;10741:15;10731:25;;-1:-1:-1;10638:79:5;-1:-1:-1;10415:347:5;;;;;;;;:::o;1060:116:13:-;1120:7;1142:8;;;;1135:16;;;;-1:-1:-1;1164:7:13;;;1060:116::o;1512:171:10:-;-1:-1:-1;;;;;1582:23:10;;;;1574:32;;;;;;1638:5;;1617:38;;-1:-1:-1;;;;;1617:38:10;;;;1638:5;;1617:38;;1638:5;;1617:38;1661:5;:17;;-1:-1:-1;;;;;;1661:17:10;-1:-1:-1;;;;;1661:17:10;;;;;;;;;;1512:171::o;9695:214:5:-;9797:5;-1:-1:-1;;;;;9776:26:5;:17;9784:8;9776:7;:17::i;:::-;-1:-1:-1;;;;;9776:26:5;;9768:35;;;;;;-1:-1:-1;;;;;9835:23:5;;;;;;:16;:23;;;;;;:30;;9863:1;9835:30;:27;:30;:::i;:::-;-1:-1:-1;;;;;9809:23:5;;;;;;;:16;:23;;;;;;;;:56;;;;9871:20;;;:10;:20;;;;:33;;-1:-1:-1;;;;;;9871:33:5;;;9695:214::o;9212:204::-;9318:1;9286:20;;;:10;:20;;;;;;-1:-1:-1;;;;;9286:20:5;:34;9278:43;;;;;;9327:20;;;;:10;:20;;;;;;;;:26;;-1:-1:-1;;;;;;9327:26:5;-1:-1:-1;;;;;9327:26:5;;;;;;;;9383:21;;:16;:21;;;;;;;:28;;:25;:28::i;:::-;-1:-1:-1;;;;;9359:21:5;;;;;;;:16;:21;;;;;:52;;;;-1:-1:-1;9212:204:5:o;128:765:14:-;225:6;239:16;273;307;341;375;409:19;511;551:6;572;264:2;239:28;;298:2;273:28;;332:2;307:28;;366:2;341:28;;400:2;375:28;;494:3;:10;481:3;:10;468:3;:10;455:3;:10;442:3;:10;:23;:36;:49;:62;431:74;;;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;431:74:14;;409:96;;539:5;511:34;;560:1;551:10;;581:1;572:10;;567:58;588:3;:10;584:1;:14;567:58;;;619:3;623:1;619:6;;;;;;;;;;;;;;;-1:-1:-1;;;619:6:14;;-1:-1:-1;;;619:6:14;605;612:3;;;;;;605:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;605:20:14;;;;;;;;-1:-1:-1;600:3:14;;567:58;;;-1:-1:-1;640:1:14;631:53;647:3;:10;643:1;:14;631:53;;;678:3;682:1;678:6;;;;;;;;;;;;;;;-1:-1:-1;;;678:6:14;;-1:-1:-1;;;678:6:14;664;671:3;;;;;;664:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;664:20:14;;;;;;;;-1:-1:-1;659:3:14;;631:53;;;-1:-1:-1;699:1:14;690:53;706:3;:10;702:1;:14;690:53;;;737:3;741:1;737:6;;;;;;;;;;;;;;;-1:-1:-1;;;737:6:14;;-1:-1:-1;;;737:6:14;723;730:3;;;;;;723:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;723:20:14;;;;;;;;-1:-1:-1;718:3:14;;690:53;;;-1:-1:-1;758:1:14;749:53;765:3;:10;761:1;:14;749:53;;;796:3;800:1;796:6;;;;;;;;;;;;;;;-1:-1:-1;;;796:6:14;;-1:-1:-1;;;796:6:14;782;789:3;;;;;;782:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;782:20:14;;;;;;;;-1:-1:-1;777:3:14;;749:53;;;-1:-1:-1;817:1:14;808:53;824:3;:10;820:1;:14;808:53;;;855:3;859:1;855:6;;;;;;;;;;;;;;;-1:-1:-1;;;855:6:14;;-1:-1:-1;;;855:6:14;841;848:3;;;;;;841:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;841:20:14;;;;;;;;-1:-1:-1;836:3:14;;808:53;;;-1:-1:-1;881:6:14;;128:765;-1:-1:-1;;;;;;;;;;;;;128:765:14:o;5744:172:7:-;5805:26;5817:3;5822:8;5805:11;:26::i;:::-;5865:9;:16;;5838:24;;;;:14;:24;;;;;:43;;;39:1:-1;23:18;;45:23;;5887:24:7;;;;;;;-1:-1:-1;5744:172:7:o;8285:188:5:-;8349:31;8363:6;8371:8;8349:13;:31::i;:::-;8386:33;8402:6;8410:8;8386:15;:33::i;:::-;8430:38;;8459:8;;8455:1;;-1:-1:-1;;;;;8430:38:5;;;;;8455:1;;8430:38;8285:188;;:::o;665:283:13:-;725:7;941:2;936;:7;;;;;;;;;665:283;-1:-1:-1;;;665:283:13:o;203:380::-;263:9;489:7;;485:36;;;-1:-1:-1;513:1:13;506:8;;485:36;-1:-1:-1;531:7:13;;;536:2;531;:7;551:6;;;;;;;;:12;544:20;;;11180:309:9;-1:-1:-1;;;;;11305:38:9;;;11276:26;11305:38;;;:22;:38;;;;;;;;:45;;39:1:-1;23:18;;45:23;;11356:59:9;;;;;;;;;;;11421:42;;;:26;:42;;;;;:63;11180:309::o;10866:310::-;10965:24;10992:40;;;:26;:40;;;;;;;;:47;;39:1:-1;23:18;;45:23;;11045:61:9;;;;;;;;;;;11112:40;;;:24;:40;;;;;;:59;10866:310::o;438:578:1:-;496:4;971:18;;1003:8;;438:578::o;7930:169:5:-;-1:-1:-1;;;;;7999:17:5;;;;7991:26;;;;;;8023:25;8034:3;8039:8;8023:10;:25::i;:::-;8059:35;;8085:8;;-1:-1:-1;;;;;8059:35:5;;;8076:1;;8059:35;;8076:1;;8059:35;7930:169;;:::o;591:31376:9:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;591:31376:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;591:31376:9;;;-1:-1:-1;591:31376:9;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://03976a3c6ca10cfc2fabb53c6ddf1af7b77438184a021940ba58db7e2c0637b7
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.