ETH Price: $2,608.55 (-2.29%)
Gas: 1 Gwei

Token

MoriaToken (MOR)
 

Overview

Max Total Supply

51,551,578.99996 MOR

Holders

1,503

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5 MOR

Value
$0.00
0x0D7F2d6152ff8fcF432114B389954663926aAe46
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MoriaToken

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 7 of 12: MoriaToken.sol
pragma solidity ^0.4.24;

import './DividendTokenStore.sol';
import './Administratable.sol';
import './StandardToken.sol';

contract MoriaToken is StandardToken, Administratable {
  
  string public constant name = "MoriaToken";
  string public constant symbol = "MOR";
  uint8 public constant decimals = 18;

  DividendTokenStore public store;
  bool public canDestroy = true;
  bool public minting = true;

  modifier isDestroyable() {
    require(canDestroy);
    _;
  }

  modifier canMint() {
    require(minting);
    _;
  }

  constructor() public {
  }

  function () public payable {
    require(store.payIn.value(msg.value)());
  }

  function totalSupply() public view returns (uint256) {
    return store.totalSupply();
  }

  function balanceOf(address _owner) public view returns (uint256 balance) {
    return store.balanceOf(_owner);
  }

  function transfer(address _to, uint256 _value) public returns (bool) {
    store.transfer(msg.sender, _to, _value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_value <= allowed[_from][msg.sender]);
    store.transfer(_from, _to, _value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  function pause() public onlyOwner {
    store.pause();
  }

  function unpause() public onlyOwner {
    store.unpause();
  }

  function addLock(address _address) onlyAdmin public returns (bool) {
    return store.addLock(_address);
  }

  function revokeLock(address _address) onlyAdmin public returns (bool) {
    return store.revokeLock(_address);
  }

  function claimDividends() public returns (uint256 amount) {
    return store.claimDividendsFor(msg.sender);
  }

  function claimDividendsFor(address _address) public onlyAdmin returns (uint256 amount) {
    return store.claimDividendsFor(_address);
  }

  function buyBack() public onlyAdmin payable returns (bool) {
    require(store.buyBack.value(msg.value)());
    return true;
  }

  function claimBuyBack() public returns (bool) {
    return claimBuyBackFor(msg.sender);
  }

  function claimBuyBackFor(address _address) public onlyAdmin returns (bool) {
    return claimBuyBackFor(_address);
  }
 
  // admin

  function mint(address _from, address _to, uint256 _amount) public onlyOwner canMint returns (bool) {
    store.mint(_to, _amount);
    emit Transfer(_from, _to, _amount);
  }

  function endMinting() public onlyOwner canMint returns (bool) {
    minting = false;
  }

  function upgradeEvent(address _from, address _to) public onlyAdmin {
    emit Transfer(_from, _to,  store.balanceOf(_to));
  }

  function changeStore(DividendTokenStore _store) public onlyOwner returns (bool) {
    store = _store;
    emit StoreChanged(address(store));
    return true;
  }

  function transferStoreOwnership() public onlyOwner {
    store.transferOwnership(owner);
  }

  function destroyToken() public onlyOwner isDestroyable {
    transferStoreOwnership();
    selfdestruct(owner);
  }

  function disableSelfDestruct() public onlyOwner isDestroyable {
    canDestroy = false;
  } 

  event StoreChanged(address indexed _newStore);
  
}

File 1 of 12: Administratable.sol
pragma solidity ^0.4.24;

import './Ownable.sol';

contract Administratable is Ownable {
  mapping (address => bool) admins;

  modifier onlyAdmin() {
    require(msg.sender == owner || admins[msg.sender]);
    _;
  }
  
  function addAdmin(address _adminAddr) onlyAdmin public returns (bool success) {
    admins[_adminAddr] = true;
    emit AdminAdded(_adminAddr, msg.sender);
    return true;
  }

  function revokeAdmin(address _adminAddr) onlyAdmin public returns (bool success) {
    require(msg.sender != _adminAddr);
    admins[_adminAddr] = false;
    emit AdminRevoked(_adminAddr, msg.sender);
    return true;
  }
  
  event AdminAdded(address indexed _admin, address indexed _by);
  event AdminRevoked(address indexed _admin, address indexed _by);
}

File 2 of 12: BasicToken.sol
pragma solidity ^0.4.23;


import "./ERC20Basic.sol";
import "./SafeMath.sol";


/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}

File 3 of 12: DividendToken.sol
pragma solidity ^0.4.24;

import './Administratable.sol';
import './Pausable.sol';
import './StandardToken.sol';
import './SafeMath.sol';

contract DividendToken is StandardToken, Pausable, Administratable {
  using SafeMath for uint256;

  uint256 public period = 0;
  uint256 public buyBackTime;
  bool public ended = false;
  
  mapping (uint256 => uint256) public dividends;
  mapping (uint256 => uint256) public dividendDates;
  uint256 public buyBackTotal;
  mapping (address => bool) public boughtBack;
  
  mapping (address => mapping (uint256 => uint256)) internal holdings;
  mapping (address => uint256) internal last;
  mapping (address => uint256) public claimedTo;
  mapping (address => bool) beenDivLocked;
  mapping (address => uint256[]) divLocks;

  mapping(uint256 => uint256) totalAt;

  modifier canBuyBack() {
    require(now > buyBackTime);
    _;
  }

  modifier onlyLive() {
    require(!ended);
    _;
  }

  function updateHoldings(address _holder) internal returns (bool success) {
    uint256 lastPeriod = last[_holder];
    uint256 lastAmount = holdings[_holder][lastPeriod];
    if(lastAmount != 0) {
      for (uint i = lastPeriod + 1; i <= period; i++) {
        holdings[_holder][i] = lastAmount;
      }
    }
    last[_holder] = period;
    return true;
  }

  function updateHoldingsTo(address _holder, uint256 _to) public onlyAdmin returns (bool success){
    require(_to > last[_holder]);
    require(_to <= period);
    uint256 lastPeriod = last[_holder];
    uint256 lastAmount = holdings[_holder][lastPeriod];
    if(lastAmount != 0) {
      for (uint i = lastPeriod + 1; i <= _to; i++) {
        holdings[_holder][i] = lastAmount;
      }
    }
    last[_holder] = _to;
    return true;
  }
  
  function lockedAt(address _address, uint256 _period) public view returns (bool) {
    if(!beenDivLocked[_address]) {
      return false;
    }
    bool locked = false;
    for(uint i = 0; i < divLocks[_address].length; i++) {
      if(divLocks[_address][i] > _period) {
        break;
      } 
      locked = !locked;
    }
    return locked;
  }

  function addLock(address _locked) onlyOwner public returns (bool success) {
    require(!lockedAt(_locked, period));
    if (last[_locked] < period) {
      updateHoldings(_locked);
    }
    totalAt[period] = totalAt[period].sub(balanceOf(_locked));
    beenDivLocked[_locked] = true;
    divLocks[_locked].push(period);
    emit Locked(_locked, period);
    return true;
  }

  function revokeLock(address _unlocked) onlyOwner public returns (bool success) {
    require(lockedAt(_unlocked, period));
    if (last[_unlocked] < period) {
      updateHoldings(_unlocked);
    }
    totalAt[period] = totalAt[period].add(balanceOf(_unlocked));
    divLocks[_unlocked].push(period);
    emit Unlocked(_unlocked, period);
    return true;
  }

  function balanceOf(address _owner) public view returns (uint256 balance) {
    if(ended) {
      return 0;
    }
    return holdings[_owner][last[_owner]];
  }

  function transfer(address _to, uint256 _value) onlyLive whenNotPaused public returns (bool) {
    require(_to != address(0));
    uint256 senderLastPeriod = last[msg.sender];
    require(_value <= holdings[msg.sender][senderLastPeriod]);

    if (senderLastPeriod < period) {
      updateHoldings(msg.sender);
    }

    if (last[_to] < period) {
      updateHoldings(_to);
    }

    holdings[msg.sender][period] = holdings[msg.sender][period].sub(_value);
    holdings[_to][period] = holdings[_to][period].add(_value);
    bool fromLocked = lockedAt(msg.sender, period);
    bool toLocked = lockedAt(_to, period);
    if(fromLocked && !toLocked) {
      totalAt[period] = totalAt[period].add(_value);
    } else if(!fromLocked && toLocked) {
      totalAt[period] = totalAt[period].sub(_value);
    }
    emit Transfer(msg.sender, _to, _value);

    return true;
  }

  function transferFrom(address _from, address _to, uint256 _value) onlyLive whenNotPaused public returns (bool) {
    require(_to != address(0));
    uint256 senderLastPeriod = last[_from];
    require(_value <= holdings[_from][senderLastPeriod]);
    require(_value <= allowed[_from][msg.sender]);

     if (senderLastPeriod < period) {
       updateHoldings(_from);
    }

    if (last[_to] < period) {
      updateHoldings(_to);
    }

    holdings[_from][period] = holdings[_from][period].sub(_value);
    holdings[_to][period] = holdings[_to][period].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    bool fromLocked = lockedAt(_from, period);
    bool toLocked = lockedAt(_to, period);
    if(fromLocked && !toLocked) {
      totalAt[period] = totalAt[period].add(_value);
    } else if(!fromLocked && toLocked) {
      totalAt[period] = totalAt[period].sub(_value);
    }
    emit Transfer(_from, _to, _value);

    return true;
  }

  function () public onlyAdmin onlyLive payable {
    payIn();
  }

  function payIn() public onlyLive onlyAdmin payable returns (bool) {
    dividends[period] = msg.value;
    dividendDates[period] = now;
    period = period.add(1);
    totalAt[period] = totalAt[period.sub(1)];
    emit Paid(msg.sender, period.sub(1), msg.value);
    return true;
  }
  
  function claimDividends() whenNotPaused public returns (uint256 amount) {
    require(claimedTo[msg.sender] < period);
    uint256 total = 0;
    if (last[msg.sender] < period) {
      updateHoldings(msg.sender);
    }
    for (uint i = claimedTo[msg.sender]; i < period; i++) {
      if (holdings[msg.sender][i] > 0 && !lockedAt(msg.sender, i)) {
        uint256 multiplier = dividends[i].mul(holdings[msg.sender][i]);
        total += multiplier.div(totalAt[i]);
      }
    }
    claimedTo[msg.sender] = period;
    if(total > 0) {
      msg.sender.transfer(total);
      emit Claimed(msg.sender, i, total);
    }
    return total;
  }

  function claimDividendsFor(address _address) onlyAdmin public returns (uint256 amount) {
    require(claimedTo[_address] < period);
    uint256 total = 0;
    if (last[_address] < period) {
      updateHoldings(_address);
    }
    for (uint i = claimedTo[_address]; i < period; i++) {
      if (holdings[_address][i] > 0 && !lockedAt(_address, i)) {
        uint256 multiplier = dividends[i].mul(holdings[_address][i]);
        total += multiplier.div(totalAt[i]);
      }
    }
    claimedTo[_address] = period;
    if(total > 0) {
      _address.transfer(total);
      emit Claimed(_address, i, total);
    }
    return total;
  }
  
  function outstandingFor(address _address) public view returns (uint256 amount) {
    uint256 total = 0;
    uint256 holds = 0;
    for (uint i = claimedTo[_address]; i < period; i++) {
      if(last[_address] < i) {
        holds = holdings[_address][last[_address]];
      } else {
        holds = holdings[_address][i];
      }
      if (holds > 0 && !lockedAt(_address, i)) {
        uint256 multiplier = dividends[i].mul(holds);
        uint256 owed = multiplier.div(totalAt[i]);
        total += owed;
      }
    }
    return total;
  }

  function outstanding() public view returns (uint256 amount) {
    uint256 total = 0;
    uint256 holds = 0;
    for (uint i = claimedTo[msg.sender]; i < period; i++) {
       if(last[msg.sender] < i) {
        holds = holdings[msg.sender][last[msg.sender]];
      } else {
        holds = holdings[msg.sender][i];
      }
      if (holds > 0 && !lockedAt(msg.sender, i)) {
        uint256 multiplier = dividends[i].mul(holds);
        uint256 owed = multiplier.div(totalAt[i]);
        total += owed;
      }      
    }
    return total;
  }
  
  function buyBack() public onlyAdmin onlyLive canBuyBack payable returns (bool) {
    buyBackTotal = msg.value;
    period += 1;
    emit Paid(msg.sender, period - 1, msg.value);
    ended = true;
  }

  function claimBuyBack() public returns (bool) {
    require(ended);
    require(!boughtBack[msg.sender]);
    if (last[msg.sender] < period) {
      updateHoldings(msg.sender);
    }
    uint256 multiplier = buyBackTotal.mul(holdings[msg.sender][period]);    
    uint256 owed = multiplier.div(totalAt[period.sub(1)]);
    boughtBack[msg.sender] = true;
    msg.sender.transfer(owed);
  }

  function claimBuyBackFor(address _address) onlyAdmin public returns (bool) {
    require(ended);
    require(!boughtBack[_address]);
    if (last[_address] < period) {
      updateHoldings(_address);
    }
    uint256 multiplier = buyBackTotal.mul(holdings[_address][period]);    
    uint256 owed = multiplier.div(totalAt[period.sub(1)]);
    boughtBack[_address] = true;
    _address.transfer(owed);
  }

  function dividendDateHistory() public view returns (uint256[]) {
    uint256[] memory dates = new uint[](period);
    for(uint i = 0; i < period; i++) {
      dates[i] = dividendDates[i];
    }
    return dates;
  }

  function dividendHistory() public view returns (uint256[]) {
    uint256[] memory divs = new uint[](period);
    for(uint i = 0; i < period; i++) {
      divs[i] = dividends[i];
    }
    return divs;
  }

  function dividendHistoryFor(address _address) public view returns (uint256[]) {
    uint256[] memory divs = new uint[](period);
    for(uint i = 0; i < period; i++) {
      uint256 multiplier;
      if(last[_address] < i) {
        multiplier = dividends[i].mul(holdings[_address][i]);
      } else {
        multiplier = dividends[i].mul(holdings[_address][last[_address]]);
      }
      if(lockedAt(_address, i)) {
        divs[i] = 0;
      } else {
        divs[i] = multiplier.div(totalAt[i]);
      }
    }
    return divs;
  }

  event Paid(address indexed _sender, uint256 indexed _period, uint256 amount);

  event Claimed(address indexed _recipient, uint256 indexed _period, uint256 _amount);

  event Locked(address indexed _locked, uint256 indexed _at);

  event Unlocked(address indexed _unlocked, uint256 indexed _at);
}

File 4 of 12: DividendTokenStore.sol
pragma solidity ^0.4.24;

import './Pausable.sol';

contract DividendTokenStore is Pausable {

  function totalSupply() public view returns (uint256);

  function addLock(address _locked) public returns (bool);

  function revokeLock(address _unlocked) public returns (bool);
  
  function balanceOf(address _owner) public view returns (uint256);

  function transfer(address _from, address _to, uint256 _value) public returns (bool);
  
  function () public payable {
    payIn();
  }

  function payIn() public payable returns (bool);
  
  function claimDividends() public returns (uint256);
  
  function claimDividendsFor(address _address) public returns (uint256);
    
  function buyBack() public payable returns (bool);

  function claimBuyBack() public returns (bool);

  function claimBuyBackFor(address _address) public returns (bool);

  function mint(address _to, uint256 _amount) public returns (bool);
  
  event Paid(address indexed _sender, uint256 indexed _period, uint256 amount);

  event Claimed(address indexed _recipient, uint256 indexed _period, uint256 _amount);

  event Locked(address indexed _locked, uint256 indexed _at);

  event Unlocked(address indexed _unlocked, uint256 indexed _at);
}

File 5 of 12: ERC20.sol
pragma solidity ^0.4.23;

import "./ERC20Basic.sol";


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

  function transferFrom(address from, address to, uint256 value)
    public returns (bool);

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

File 6 of 12: ERC20Basic.sol
pragma solidity ^0.4.23;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

File 8 of 12: Ownable.sol
pragma solidity ^0.4.23;


/**
 * @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.
   */
  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 9 of 12: Pausable.sol
pragma solidity ^0.4.23;


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() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

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

File 10 of 12: SafeMath.sol
pragma solidity ^0.4.23;


/**
 * @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 11 of 12: StandardDividendTokenStore.sol
pragma solidity ^0.4.24;

import './DividendTokenStore.sol';
import './SafeMath.sol';

contract StandardDividendTokenStore is DividendTokenStore {
  using SafeMath for uint256;

  uint256 public period = 0;
  uint256 public buyBackTime;
  bool public ended = false;
  
  mapping (uint256 => uint256) public dividends;
  mapping (uint256 => uint256) public dividendDates;
  uint256 public buyBackTotal;
  mapping (address => bool) public boughtBack;
  
  mapping (address => mapping (uint256 => uint256)) public holdings;
  mapping (address => uint256) public last;
  mapping (address => uint256) public claimedTo;
  mapping (address => bool) beenDivLocked;
  mapping (address => uint256[]) divLocks;

  mapping(uint256 => uint256) totalAt;
  uint256 public totalSupply_ = 0;

  modifier canBuyBack() {
    require(now > buyBackTime);
    _;
  }

  modifier onlyLive() {
    require(!ended);
    _;
  }

  constructor(uint256 _buyBackTime) public {
    buyBackTime = _buyBackTime;
  }

  function mint(address _to, uint256 _amount) public onlyOwner returns (bool) {
    require(period == 0);
    holdings[_to][0] = holdings[_to][0].add(_amount);
    totalAt[0] = totalAt[0].add(_amount);
    totalSupply_ = totalAt[0];
    return true;
  }

  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  function updateHoldings(address _holder) internal returns (bool success) {
    uint256 lastPeriod = last[_holder];
    uint256 lastAmount = holdings[_holder][lastPeriod];
    if(lastAmount != 0) {
      for (uint i = lastPeriod + 1; i <= period; i++) {
        holdings[_holder][i] = lastAmount;
      }
    }
    last[_holder] = period;
    return true;
  }

  function updateHoldingsTo(address _holder, uint256 _to) public whenNotPaused returns (bool success){
    require(_to > last[_holder]);
    require(_to <= period);
    uint256 lastPeriod = last[_holder];
    uint256 lastAmount = holdings[_holder][lastPeriod];
    if(lastAmount != 0) {
      for (uint i = lastPeriod + 1; i <= _to; i++) {
        holdings[_holder][i] = lastAmount;
      }
    }
    last[_holder] = _to;
    return true;
  }
  
  function lockedAt(address _address, uint256 _period) public view returns (bool) {
    if(!beenDivLocked[_address]) {
      return false;
    }
    bool locked = false;
    for(uint i = 0; i < divLocks[_address].length; i++) {
      if(divLocks[_address][i] > _period) {
        break;
      } 
      locked = !locked;
    }
    return locked;
  }

  function addLock(address _locked) onlyOwner public returns (bool success) {
    require(!lockedAt(_locked, period));
    if (last[_locked] < period) {
      updateHoldings(_locked);
    }
    totalAt[period] = totalAt[period].sub(balanceOf(_locked));
    beenDivLocked[_locked] = true;
    divLocks[_locked].push(period);
    emit Locked(_locked, period);
    return true;
  }

  function revokeLock(address _unlocked) onlyOwner public returns (bool success) {
    require(lockedAt(_unlocked, period));
    if (last[_unlocked] < period) {
      updateHoldings(_unlocked);
    }
    totalAt[period] = totalAt[period].add(balanceOf(_unlocked));
    divLocks[_unlocked].push(period);
    emit Unlocked(_unlocked, period);
    return true;
  }

  function balanceOf(address _owner) public view returns (uint256 balance) {
    if(ended) {
      return 0;
    }
    return holdings[_owner][last[_owner]];
  }

  function transfer(address _from, address _to, uint256 _value) onlyLive onlyOwner whenNotPaused public returns (bool) {
    require(_to != address(0));
    uint256 senderLastPeriod = last[_from];
    require(_value <= holdings[_from][senderLastPeriod]);

    if (senderLastPeriod < period) {
      updateHoldings(_from);
    }

    if (last[_to] < period) {
      updateHoldings(_to);
    }

    holdings[_from][period] = holdings[_from][period].sub(_value);
    holdings[_to][period] = holdings[_to][period].add(_value);
    bool fromLocked = lockedAt(_from, period);
    bool toLocked = lockedAt(_to, period);
    if(fromLocked && !toLocked) {
      totalAt[period] = totalAt[period].add(_value);
    } else if(!fromLocked && toLocked) {
      totalAt[period] = totalAt[period].sub(_value);
    }

    return true;
  }

  function () public payable {
    payIn();
  }

  function payIn() public payable onlyLive onlyOwner whenNotPaused returns (bool) {
    dividends[period] = msg.value;
    dividendDates[period] = now;
    period = period.add(1);
    totalAt[period] = totalAt[period.sub(1)];
    emit Paid(msg.sender, period.sub(1), msg.value);
    return true;
  }
  
  function claimDividends() whenNotPaused public returns (uint256 amount) {
    require(claimedTo[msg.sender] < period);
    uint256 total = 0;
    if (last[msg.sender] < period) {
      updateHoldings(msg.sender);
    }
    for (uint i = claimedTo[msg.sender]; i < period; i++) {
      if (holdings[msg.sender][i] > 0 && !lockedAt(msg.sender, i)) {
        uint256 multiplier = dividends[i].mul(holdings[msg.sender][i]);
        total += multiplier.div(totalAt[i]);
      }
    }
    claimedTo[msg.sender] = period;
    if(total > 0) {
      msg.sender.transfer(total);
      emit Claimed(msg.sender, i, total);
    }
    return total;
  }

  function claimDividendsFor(address _address) onlyOwner public returns (uint256 amount) {
    require(claimedTo[_address] < period);
    uint256 total = 0;
    if (last[_address] < period) {
      updateHoldings(_address);
    }
    for (uint i = claimedTo[_address]; i < period; i++) {
      if (holdings[_address][i] > 0 && !lockedAt(_address, i)) {
        uint256 multiplier = dividends[i].mul(holdings[_address][i]);
        total += multiplier.div(totalAt[i]);
      }
    }
    claimedTo[_address] = period;
    if(total > 0) {
      _address.transfer(total);
      emit Claimed(_address, i, total);
    }
    return total;
  }
  
  function outstandingFor(address _address) public view returns (uint256 amount) {
    uint256 total = 0;
    uint256 holds = 0;
    for (uint i = claimedTo[_address]; i < period; i++) {
      if(last[_address] < i) {
        holds = holdings[_address][last[_address]];
      } else {
        holds = holdings[_address][i];
      }
      if (holds > 0 && !lockedAt(_address, i)) {
        uint256 multiplier = dividends[i].mul(holds);
        uint256 owed = multiplier.div(totalAt[i]);
        total += owed;
      }
    }
    return total;
  }

  function outstanding() public view returns (uint256 amount) {
    uint256 total = 0;
    uint256 holds = 0;
    for (uint i = claimedTo[msg.sender]; i < period; i++) {
       if(last[msg.sender] < i) {
        holds = holdings[msg.sender][last[msg.sender]];
      } else {
        holds = holdings[msg.sender][i];
      }
      if (holds > 0 && !lockedAt(msg.sender, i)) {
        uint256 multiplier = dividends[i].mul(holds);
        uint256 owed = multiplier.div(totalAt[i]);
        total += owed;
      }      
    }
    return total;
  }
  
  function buyBack() public onlyOwner onlyLive canBuyBack payable returns (bool) {
    buyBackTotal = msg.value;
    period += 1;
    emit Paid(msg.sender, period - 1, msg.value);
    ended = true;
  }

  function claimBuyBack() public returns (bool) {
    require(ended);
    require(!boughtBack[msg.sender]);
    if (last[msg.sender] < period) {
      updateHoldings(msg.sender);
    }
    uint256 multiplier = buyBackTotal.mul(holdings[msg.sender][period]);    
    uint256 owed = multiplier.div(totalAt[period.sub(1)]);
    boughtBack[msg.sender] = true;
    msg.sender.transfer(owed);
  }

  function claimBuyBackFor(address _address) onlyOwner public returns (bool) {
    require(ended);
    require(!boughtBack[_address]);
    if (last[_address] < period) {
      updateHoldings(_address);
    }
    uint256 multiplier = buyBackTotal.mul(holdings[_address][period]);    
    uint256 owed = multiplier.div(totalAt[period.sub(1)]);
    boughtBack[_address] = true;
    _address.transfer(owed);
  }

  function dividendDateHistory() public view returns (uint256[]) {
    uint256[] memory dates = new uint[](period);
    for(uint i = 0; i < period; i++) {
      dates[i] = dividendDates[i];
    }
    return dates;
  }

  function dividendHistory() public view returns (uint256[]) {
    uint256[] memory divs = new uint[](period);
    for(uint i = 0; i < period; i++) {
      divs[i] = dividends[i];
    }
    return divs;
  }

  function dividendHistoryFor(address _address) public view returns (uint256[]) {
    uint256[] memory divs = new uint[](period);
    for(uint i = 0; i < period; i++) {
      uint256 multiplier;
      if(last[_address] < i) {
        multiplier = dividends[i].mul(holdings[_address][i]);
      } else {
        multiplier = dividends[i].mul(holdings[_address][last[_address]]);
      }
      if(lockedAt(_address, i)) {
        divs[i] = 0;
      } else {
        divs[i] = multiplier.div(totalAt[i]);
      }
    }
    return divs;
  }

  event Paid(address indexed _sender, uint256 indexed _period, uint256 amount);

  event Claimed(address indexed _recipient, uint256 indexed _period, uint256 _amount);

  event Locked(address indexed _locked, uint256 indexed _at);

  event Unlocked(address indexed _unlocked, uint256 indexed _at);
}

File 12 of 12: StandardToken.sol
pragma solidity ^0.4.23;

import "./BasicToken.sol";
import "./ERC20.sol";


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"transferStoreOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"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":"claimBuyBack","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_adminAddr","type":"address"}],"name":"revokeAdmin","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"destroyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableSelfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimDividends","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"upgradeEvent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_adminAddr","type":"address"}],"name":"addAdmin","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addLock","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":false,"inputs":[{"name":"_address","type":"address"}],"name":"claimDividendsFor","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"store","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buyBack","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"revokeLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"canDestroy","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_store","type":"address"}],"name":"changeStore","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"endMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"claimBuyBackFor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_newStore","type":"address"}],"name":"StoreChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_admin","type":"address"},{"indexed":true,"name":"_by","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_admin","type":"address"},{"indexed":true,"name":"_by","type":"address"}],"name":"AdminRevoked","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526005805460a860020a60ff021960a060020a60ff0219909116740100000000000000000000000000000000000000001716750100000000000000000000000000000000000000000017905534801561005b57600080fd5b5060038054600160a060020a031916331790556118218061007d6000396000f30060806040526004361061019d5763ffffffff60e060020a60003504166302e7798f811461022a57806306fdde031461023f578063095ea7b3146102c957806318160ddd146103015780631dae27b31461032857806323b872dd1461033d5780632d345670146103675780632e4eaa1514610388578063313ce5671461039d5780633f4ba83a146103c857806355ea9b08146103dd57806366188463146103f2578063668038e0146104165780636b46ef1a1461042b578063704802751461045257806370a0823114610473578063715018a6146104945780637dc2268c146104a95780638456cb59146104be578063882f327b146104d35780638da5cb5b146104f457806391cb866b1461052557806395d89b4114610546578063975057e71461055b578063a9059cbb14610570578063acdf4f1814610594578063b8d488351461059c578063c6c3bbe6146105bd578063d310d4ae146105e7578063d73dd623146105fc578063dd62ed3e14610620578063dfc783f714610647578063ef70aebf14610668578063f2fde38b1461067d578063fcf4c2971461069e575b600560009054906101000a9004600160a060020a0316600160a060020a031663fcddd056346040518263ffffffff1660e060020a0281526004016020604051808303818588803b1580156101f057600080fd5b505af1158015610204573d6000803e3d6000fd5b50505050506040513d602081101561021b57600080fd5b5051151561022857600080fd5b005b34801561023657600080fd5b506102286106bf565b34801561024b57600080fd5b5061025461075a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028e578181015183820152602001610276565b50505050905090810190601f1680156102bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d557600080fd5b506102ed600160a060020a0360043516602435610791565b604080519115158252519081900360200190f35b34801561030d57600080fd5b506103166107f7565b60408051918252519081900360200190f35b34801561033457600080fd5b506102ed610887565b34801561034957600080fd5b506102ed600160a060020a0360043581169060243516604435610897565b34801561037357600080fd5b506102ed600160a060020a03600435166109f7565b34801561039457600080fd5b50610228610a93565b3480156103a957600080fd5b506103b2610ae9565b6040805160ff9092168252519081900360200190f35b3480156103d457600080fd5b50610228610aee565b3480156103e957600080fd5b50610228610b58565b3480156103fe57600080fd5b506102ed600160a060020a0360043516602435610bb8565b34801561042257600080fd5b50610316610ca8565b34801561043757600080fd5b50610228600160a060020a0360043581169060243516610d0d565b34801561045e57600080fd5b506102ed600160a060020a0360043516610e01565b34801561047f57600080fd5b50610316600160a060020a0360043516610e8a565b3480156104a057600080fd5b50610228610f27565b3480156104b557600080fd5b506102ed610f95565b3480156104ca57600080fd5b50610228610fb7565b3480156104df57600080fd5b506102ed600160a060020a0360043516611021565b34801561050057600080fd5b506105096110bf565b60408051600160a060020a039092168252519081900360200190f35b34801561053157600080fd5b50610316600160a060020a03600435166110ce565b34801561055257600080fd5b5061025461116c565b34801561056757600080fd5b506105096111a3565b34801561057c57600080fd5b506102ed600160a060020a03600435166024356111b2565b6102ed61128d565b3480156105a857600080fd5b506102ed600160a060020a0360043516611354565b3480156105c957600080fd5b506102ed600160a060020a03600435811690602435166044356113f2565b3480156105f357600080fd5b506102ed611509565b34801561060857600080fd5b506102ed600160a060020a036004351660243561152a565b34801561062c57600080fd5b50610316600160a060020a03600435811690602435166115c3565b34801561065357600080fd5b506102ed600160a060020a03600435166115ee565b34801561067457600080fd5b506102ed61166a565b34801561068957600080fd5b50610228600160a060020a03600435166116d0565b3480156106aa57600080fd5b506102ed600160a060020a03600435166116f3565b600354600160a060020a031633146106d657600080fd5b600554600354604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201529051919092169163f2fde38b91602480830192600092919082900301818387803b15801561074057600080fd5b505af1158015610754573d6000803e3d6000fd5b50505050565b60408051808201909152600a81527f4d6f726961546f6b656e00000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600554604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd91600480830192602092919082900301818787803b15801561085657600080fd5b505af115801561086a573d6000803e3d6000fd5b505050506040513d602081101561088057600080fd5b5051905090565b6000610892336116f3565b905090565b600160a060020a03831660009081526002602090815260408083203384529091528120548211156108c757600080fd5b600554604080517fbeabacc8000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152604482018690529151919092169163beabacc89160648083019260209291908290030181600087803b15801561093e57600080fd5b505af1158015610952573d6000803e3d6000fd5b505050506040513d602081101561096857600080fd5b5050600160a060020a038416600090815260026020908152604080832033845290915290205461099e908363ffffffff61173816565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206117d6833981519152929181900390910190a35060019392505050565b600354600090600160a060020a0316331480610a2257503360009081526004602052604090205460ff165b1515610a2d57600080fd5b33600160a060020a0383161415610a4357600080fd5b600160a060020a038216600081815260046020526040808220805460ff19169055513392917f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d591a3506001919050565b600354600160a060020a03163314610aaa57600080fd5b60055474010000000000000000000000000000000000000000900460ff161515610ad357600080fd5b610adb6106bf565b600354600160a060020a0316ff5b601281565b600354600160a060020a03163314610b0557600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561074057600080fd5b600354600160a060020a03163314610b6f57600080fd5b60055474010000000000000000000000000000000000000000900460ff161515610b9857600080fd5b6005805474ff000000000000000000000000000000000000000019169055565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610c0d57336000908152600260209081526040808320600160a060020a0388168452909152812055610c42565b610c1d818463ffffffff61173816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600554604080517f91cb866b0000000000000000000000000000000000000000000000000000000081523360048201529051600092600160a060020a0316916391cb866b91602480830192602092919082900301818787803b15801561085657600080fd5b600354600160a060020a0316331480610d3557503360009081526004602052604090205460ff165b1515610d4057600080fd5b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830181905292519293868216936000805160206117d68339815191529392909116916370a082319160248083019260209291908290030181600087803b158015610dc057600080fd5b505af1158015610dd4573d6000803e3d6000fd5b505050506040513d6020811015610dea57600080fd5b505160408051918252519081900360200190a35050565b600354600090600160a060020a0316331480610e2c57503360009081526004602052604090205460ff165b1515610e3757600080fd5b600160a060020a038216600081815260046020526040808220805460ff19166001179055513392917fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b91a3506001919050565b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152915160009392909216916370a082319160248082019260209290919082900301818787803b158015610ef557600080fd5b505af1158015610f09573d6000803e3d6000fd5b505050506040513d6020811015610f1f57600080fd5b505192915050565b600354600160a060020a03163314610f3e57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6005547501000000000000000000000000000000000000000000900460ff1681565b600354600160a060020a03163314610fce57600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a0316638456cb596040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561074057600080fd5b600354600090600160a060020a031633148061104c57503360009081526004602052604090205460ff165b151561105757600080fd5b600554604080517f882f327b000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163882f327b9160248083019260209291908290030181600087803b158015610ef557600080fd5b600354600160a060020a031681565b600354600090600160a060020a03163314806110f957503360009081526004602052604090205460ff165b151561110457600080fd5b600554604080517f91cb866b000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916391cb866b9160248083019260209291908290030181600087803b158015610ef557600080fd5b60408051808201909152600381527f4d4f520000000000000000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b600554604080517fbeabacc8000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038581166024830152604482018590529151600093929092169163beabacc89160648082019260209290919082900301818787803b15801561122a57600080fd5b505af115801561123e573d6000803e3d6000fd5b505050506040513d602081101561125457600080fd5b5050604080518381529051600160a060020a0385169133916000805160206117d68339815191529181900360200190a350600192915050565b600354600090600160a060020a03163314806112b857503360009081526004602052604090205460ff165b15156112c357600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a031663acdf4f18346040518263ffffffff1660e060020a0281526004016020604051808303818588803b15801561131657600080fd5b505af115801561132a573d6000803e3d6000fd5b50505050506040513d602081101561134157600080fd5b5051151561134e57600080fd5b50600190565b600354600090600160a060020a031633148061137f57503360009081526004602052604090205460ff165b151561138a57600080fd5b600554604080517fb8d48835000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163b8d488359160248083019260209291908290030181600087803b158015610ef557600080fd5b600354600090600160a060020a0316331461140c57600080fd5b6005547501000000000000000000000000000000000000000000900460ff16151561143657600080fd5b600554604080517f40c10f19000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201869052915191909216916340c10f199160448083019260209291908290030181600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b505050506040513d60208110156114cf57600080fd5b5050604080518381529051600160a060020a0380861692908716916000805160206117d68339815191529181900360200190a39392505050565b60055474010000000000000000000000000000000000000000900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205461155e908363ffffffff61174a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461160857600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907ff686f7dd62d0eba08e0a836ed78aac51f795cd215a0286632834128004a476f290600090a2506001919050565b600354600090600160a060020a0316331461168457600080fd5b6005547501000000000000000000000000000000000000000000900460ff1615156116ae57600080fd5b6005805475ff0000000000000000000000000000000000000000001916905590565b600354600160a060020a031633146116e757600080fd5b6116f081611757565b50565b600354600090600160a060020a031633148061171e57503360009081526004602052604090205460ff165b151561172957600080fd5b611732826116f3565b92915050565b60008282111561174457fe5b50900390565b8181018281101561173257fe5b600160a060020a038116151561176c57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582014c3d6935a6afa2003b7aeead208a88fc95aa5cabe806f38d2cf2ca229cc7d1e0029

Deployed Bytecode

0x60806040526004361061019d5763ffffffff60e060020a60003504166302e7798f811461022a57806306fdde031461023f578063095ea7b3146102c957806318160ddd146103015780631dae27b31461032857806323b872dd1461033d5780632d345670146103675780632e4eaa1514610388578063313ce5671461039d5780633f4ba83a146103c857806355ea9b08146103dd57806366188463146103f2578063668038e0146104165780636b46ef1a1461042b578063704802751461045257806370a0823114610473578063715018a6146104945780637dc2268c146104a95780638456cb59146104be578063882f327b146104d35780638da5cb5b146104f457806391cb866b1461052557806395d89b4114610546578063975057e71461055b578063a9059cbb14610570578063acdf4f1814610594578063b8d488351461059c578063c6c3bbe6146105bd578063d310d4ae146105e7578063d73dd623146105fc578063dd62ed3e14610620578063dfc783f714610647578063ef70aebf14610668578063f2fde38b1461067d578063fcf4c2971461069e575b600560009054906101000a9004600160a060020a0316600160a060020a031663fcddd056346040518263ffffffff1660e060020a0281526004016020604051808303818588803b1580156101f057600080fd5b505af1158015610204573d6000803e3d6000fd5b50505050506040513d602081101561021b57600080fd5b5051151561022857600080fd5b005b34801561023657600080fd5b506102286106bf565b34801561024b57600080fd5b5061025461075a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028e578181015183820152602001610276565b50505050905090810190601f1680156102bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d557600080fd5b506102ed600160a060020a0360043516602435610791565b604080519115158252519081900360200190f35b34801561030d57600080fd5b506103166107f7565b60408051918252519081900360200190f35b34801561033457600080fd5b506102ed610887565b34801561034957600080fd5b506102ed600160a060020a0360043581169060243516604435610897565b34801561037357600080fd5b506102ed600160a060020a03600435166109f7565b34801561039457600080fd5b50610228610a93565b3480156103a957600080fd5b506103b2610ae9565b6040805160ff9092168252519081900360200190f35b3480156103d457600080fd5b50610228610aee565b3480156103e957600080fd5b50610228610b58565b3480156103fe57600080fd5b506102ed600160a060020a0360043516602435610bb8565b34801561042257600080fd5b50610316610ca8565b34801561043757600080fd5b50610228600160a060020a0360043581169060243516610d0d565b34801561045e57600080fd5b506102ed600160a060020a0360043516610e01565b34801561047f57600080fd5b50610316600160a060020a0360043516610e8a565b3480156104a057600080fd5b50610228610f27565b3480156104b557600080fd5b506102ed610f95565b3480156104ca57600080fd5b50610228610fb7565b3480156104df57600080fd5b506102ed600160a060020a0360043516611021565b34801561050057600080fd5b506105096110bf565b60408051600160a060020a039092168252519081900360200190f35b34801561053157600080fd5b50610316600160a060020a03600435166110ce565b34801561055257600080fd5b5061025461116c565b34801561056757600080fd5b506105096111a3565b34801561057c57600080fd5b506102ed600160a060020a03600435166024356111b2565b6102ed61128d565b3480156105a857600080fd5b506102ed600160a060020a0360043516611354565b3480156105c957600080fd5b506102ed600160a060020a03600435811690602435166044356113f2565b3480156105f357600080fd5b506102ed611509565b34801561060857600080fd5b506102ed600160a060020a036004351660243561152a565b34801561062c57600080fd5b50610316600160a060020a03600435811690602435166115c3565b34801561065357600080fd5b506102ed600160a060020a03600435166115ee565b34801561067457600080fd5b506102ed61166a565b34801561068957600080fd5b50610228600160a060020a03600435166116d0565b3480156106aa57600080fd5b506102ed600160a060020a03600435166116f3565b600354600160a060020a031633146106d657600080fd5b600554600354604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201529051919092169163f2fde38b91602480830192600092919082900301818387803b15801561074057600080fd5b505af1158015610754573d6000803e3d6000fd5b50505050565b60408051808201909152600a81527f4d6f726961546f6b656e00000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600554604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd91600480830192602092919082900301818787803b15801561085657600080fd5b505af115801561086a573d6000803e3d6000fd5b505050506040513d602081101561088057600080fd5b5051905090565b6000610892336116f3565b905090565b600160a060020a03831660009081526002602090815260408083203384529091528120548211156108c757600080fd5b600554604080517fbeabacc8000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152604482018690529151919092169163beabacc89160648083019260209291908290030181600087803b15801561093e57600080fd5b505af1158015610952573d6000803e3d6000fd5b505050506040513d602081101561096857600080fd5b5050600160a060020a038416600090815260026020908152604080832033845290915290205461099e908363ffffffff61173816565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206117d6833981519152929181900390910190a35060019392505050565b600354600090600160a060020a0316331480610a2257503360009081526004602052604090205460ff165b1515610a2d57600080fd5b33600160a060020a0383161415610a4357600080fd5b600160a060020a038216600081815260046020526040808220805460ff19169055513392917f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d591a3506001919050565b600354600160a060020a03163314610aaa57600080fd5b60055474010000000000000000000000000000000000000000900460ff161515610ad357600080fd5b610adb6106bf565b600354600160a060020a0316ff5b601281565b600354600160a060020a03163314610b0557600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561074057600080fd5b600354600160a060020a03163314610b6f57600080fd5b60055474010000000000000000000000000000000000000000900460ff161515610b9857600080fd5b6005805474ff000000000000000000000000000000000000000019169055565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610c0d57336000908152600260209081526040808320600160a060020a0388168452909152812055610c42565b610c1d818463ffffffff61173816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600554604080517f91cb866b0000000000000000000000000000000000000000000000000000000081523360048201529051600092600160a060020a0316916391cb866b91602480830192602092919082900301818787803b15801561085657600080fd5b600354600160a060020a0316331480610d3557503360009081526004602052604090205460ff165b1515610d4057600080fd5b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830181905292519293868216936000805160206117d68339815191529392909116916370a082319160248083019260209291908290030181600087803b158015610dc057600080fd5b505af1158015610dd4573d6000803e3d6000fd5b505050506040513d6020811015610dea57600080fd5b505160408051918252519081900360200190a35050565b600354600090600160a060020a0316331480610e2c57503360009081526004602052604090205460ff165b1515610e3757600080fd5b600160a060020a038216600081815260046020526040808220805460ff19166001179055513392917fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b91a3506001919050565b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152915160009392909216916370a082319160248082019260209290919082900301818787803b158015610ef557600080fd5b505af1158015610f09573d6000803e3d6000fd5b505050506040513d6020811015610f1f57600080fd5b505192915050565b600354600160a060020a03163314610f3e57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6005547501000000000000000000000000000000000000000000900460ff1681565b600354600160a060020a03163314610fce57600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a0316638456cb596040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561074057600080fd5b600354600090600160a060020a031633148061104c57503360009081526004602052604090205460ff165b151561105757600080fd5b600554604080517f882f327b000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163882f327b9160248083019260209291908290030181600087803b158015610ef557600080fd5b600354600160a060020a031681565b600354600090600160a060020a03163314806110f957503360009081526004602052604090205460ff165b151561110457600080fd5b600554604080517f91cb866b000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916391cb866b9160248083019260209291908290030181600087803b158015610ef557600080fd5b60408051808201909152600381527f4d4f520000000000000000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b600554604080517fbeabacc8000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038581166024830152604482018590529151600093929092169163beabacc89160648082019260209290919082900301818787803b15801561122a57600080fd5b505af115801561123e573d6000803e3d6000fd5b505050506040513d602081101561125457600080fd5b5050604080518381529051600160a060020a0385169133916000805160206117d68339815191529181900360200190a350600192915050565b600354600090600160a060020a03163314806112b857503360009081526004602052604090205460ff165b15156112c357600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a031663acdf4f18346040518263ffffffff1660e060020a0281526004016020604051808303818588803b15801561131657600080fd5b505af115801561132a573d6000803e3d6000fd5b50505050506040513d602081101561134157600080fd5b5051151561134e57600080fd5b50600190565b600354600090600160a060020a031633148061137f57503360009081526004602052604090205460ff165b151561138a57600080fd5b600554604080517fb8d48835000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163b8d488359160248083019260209291908290030181600087803b158015610ef557600080fd5b600354600090600160a060020a0316331461140c57600080fd5b6005547501000000000000000000000000000000000000000000900460ff16151561143657600080fd5b600554604080517f40c10f19000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201869052915191909216916340c10f199160448083019260209291908290030181600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b505050506040513d60208110156114cf57600080fd5b5050604080518381529051600160a060020a0380861692908716916000805160206117d68339815191529181900360200190a39392505050565b60055474010000000000000000000000000000000000000000900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205461155e908363ffffffff61174a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461160857600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907ff686f7dd62d0eba08e0a836ed78aac51f795cd215a0286632834128004a476f290600090a2506001919050565b600354600090600160a060020a0316331461168457600080fd5b6005547501000000000000000000000000000000000000000000900460ff1615156116ae57600080fd5b6005805475ff0000000000000000000000000000000000000000001916905590565b600354600160a060020a031633146116e757600080fd5b6116f081611757565b50565b600354600090600160a060020a031633148061171e57503360009081526004602052604090205460ff165b151561172957600080fd5b611732826116f3565b92915050565b60008282111561174457fe5b50900390565b8181018281101561173257fe5b600160a060020a038116151561176c57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582014c3d6935a6afa2003b7aeead208a88fc95aa5cabe806f38d2cf2ca229cc7d1e0029

Deployed Bytecode Sourcemap

124:3138:6:-;;;;;;;;;-1:-1:-1;;;124:3138:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605:5;;;;;;;;;-1:-1:-1;;;;;605:5:6;-1:-1:-1;;;;;605:11:6;;623:9;605:30;;;;;-1:-1:-1;;;605:30:6;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;605:30:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;605:30:6;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;605:30:6;597:39;;;;;;;;124:3138;2900:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2900:92:6;;;;185:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;185:42:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;185:42:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829:188:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1829:188:11;-1:-1:-1;;;;;1829:188:11;;;;;;;;;;;;;;;;;;;;;;;;;645:90:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;645:90:6;;;;;;;;;;;;;;;;;;;;2105:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2105:91:6;;;;1041:313;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1041:313:6;-1:-1:-1;;;;;1041:313:6;;;;;;;;;;;;403:221:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;403:221:0;-1:-1:-1;;;;;403:221:0;;;;;2996:115:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2996:115:6;;;;272:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;272:35:6;;;;;;;;;;;;;;;;;;;;;;;1420:62;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1420:62:6;;;;3115:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3115:91:6;;;;3701:425:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3701:425:11;-1:-1:-1;;;;;3701:425:11;;;;;;;1716:111:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1716:111:6;;;;2605:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2605:126:6;-1:-1:-1;;;;;2605:126:6;;;;;;;;;;223:176:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;223:176:0;-1:-1:-1;;;;;223:176:0;;;;;739:114:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;739:114:6;-1:-1:-1;;;;;739:114:6;;;;;827:111:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;827:111:7;;;;380:26:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;380:26:6;;;;1358:58;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1358:58:6;;;;1486:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1486:108:6;-1:-1:-1;;;;;1486:108:6;;;;;238:20:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;238:20:7;;;;;;;;-1:-1:-1;;;;;238:20:7;;;;;;;;;;;;;;1831:138:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1831:138:6;-1:-1:-1;;;;;1831:138:6;;;;;231:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;231:37:6;;;;312:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;312:31:6;;;;857:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;857:180:6;-1:-1:-1;;;;;857:180:6;;;;;;;1973:128;;;;1598:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1598:114:6;-1:-1:-1;;;;;1598:114:6;;;;;2335:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2335:174:6;-1:-1:-1;;;;;2335:174:6;;;;;;;;;;;;347:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;347:29:6;;;;2946:293:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2946:293:11;-1:-1:-1;;;;;2946:293:11;;;;;;;2336:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2336:153:11;-1:-1:-1;;;;;2336:153:11;;;;;;;;;;2735:161:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2735:161:6;-1:-1:-1;;;;;2735:161:6;;;;;2513:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2513:88:6;;;;1100:103:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1100:103:7;-1:-1:-1;;;;;1100:103:7;;;;;2200:118:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2200:118:6;-1:-1:-1;;;;;2200:118:6;;;;;2900:92;719:5:7;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;2957:5:6;;2981;;2957:30;;;;;;-1:-1:-1;;;;;2981:5:6;;;2957:30;;;;;;:5;;;;;:23;;:30;;;;;:5;;:30;;;;;;;:5;;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;2957:30:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2957:30:6;;;;2900:92::o;185:42::-;;;;;;;;;;;;;;;;;;;:::o;1829:188:11:-;1916:10;1896:4;1908:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1908:29:11;;;;;;;;;;;:38;;;1957;;;;;;;1896:4;;1908:29;;1916:10;;1957:38;;;;;;;;-1:-1:-1;2008:4:11;1829:188;;;;:::o;645:90:6:-;711:5;;:19;;;;;;;;689:7;;-1:-1:-1;;;;;711:5:6;;:17;;:19;;;;;;;;;;;;;;689:7;711:5;:19;;;5:2:-1;;;;30:1;27;20:12;5:2;711:19:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;711:19:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;711:19:6;;-1:-1:-1;645:90:6;:::o;2105:91::-;2145:4;2164:27;2180:10;2164:15;:27::i;:::-;2157:34;;2105:91;:::o;1041:313::-;-1:-1:-1;;;;;1153:14:6;;1123:4;1153:14;;;:7;:14;;;;;;;;1168:10;1153:26;;;;;;;;1143:36;;;1135:45;;;;;;1186:5;;:34;;;;;;-1:-1:-1;;;;;1186:34:6;;;;;;;;;;;;;;;;;;;;;;:5;;;;;:14;;:34;;;;;;;;;;;;;;:5;;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;1186:34:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1186:34:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;1255:14:6;;;;;;:7;1186:34;1255:14;;;;;;;1270:10;1255:26;;;;;;;;:38;;1286:6;1255:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;1226:14:6;;;;;;;:7;:14;;;;;;;;1241:10;1226:26;;;;;;;;:67;;;;1304:28;;;;;;;;;;;1226:14;;-1:-1:-1;;;;;;;;;;;1304:28:6;;;;;;;;;;-1:-1:-1;1345:4:6;1041:313;;;;;:::o;403:221:0:-;177:5;;470:12;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;498:10;-1:-1:-1;;;;;498:24:0;;;;490:33;;;;;;-1:-1:-1;;;;;529:18:0;;550:5;529:18;;;:6;:18;;;;;;:26;;-1:-1:-1;;529:26:0;;;566:36;591:10;;529:18;566:36;;;-1:-1:-1;615:4:0;403:221;;;:::o;2996:115:6:-;719:5:7;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;450:10:6;;;;;;;442:19;;;;;;;;3057:24;:22;:24::i;:::-;3100:5;;-1:-1:-1;;;;;3100:5:6;3087:19;272:35;305:2;272:35;:::o;1420:62::-;719:5:7;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;1462:5:6;;;;;;;;;-1:-1:-1;;;;;1462:5:6;-1:-1:-1;;;;;1462:13:6;;:15;;;;;-1:-1:-1;;;1462:15:6;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;3115:91:6;719:5:7;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;450:10:6;;;;;;;442:19;;;;;;;;3183:10;:18;;-1:-1:-1;;3183:18:6;;;3115:91::o;3701:425:11:-;3842:10;3804:4;3834:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3834:29:11;;;;;;;;;;3873:27;;;3869:164;;;3918:10;3942:1;3910:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3910:29:11;;;;;;;;;:33;3869:164;;;3996:30;:8;4009:16;3996:30;:12;:30;:::i;:::-;3972:10;3964:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3964:29:11;;;;;;;;;:62;3869:164;4052:10;4074:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4043:61:11;;4074:29;;;;;;;;;;;4043:61;;;;;;;;;4052:10;4043:61;;;;;;;;;;;-1:-1:-1;4117:4:11;;3701:425;-1:-1:-1;;;3701:425:11:o;1716:111:6:-;1787:5;;:35;;;;;;1811:10;1787:35;;;;;;1758:14;;-1:-1:-1;;;;;1787:5:6;;:23;;:35;;;;;;;;;;;;;;1758:14;1787:5;:35;;;5:2:-1;;;;30:1;27;20:12;2605:126:6;177:5:0;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;2705:5:6;;:20;;;;;;-1:-1:-1;;;;;2683:43:6;;;2705:20;;;;;;;;2683:43;;;;;;-1:-1:-1;;;;;;;;;;;2683:43:6;2705:5;;;;;:15;;:20;;;;;;;;;;;;;;-1:-1:-1;2705:5:6;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;2705:20:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2705:20:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2705:20:6;2683:43;;;;;;;;;;;2705:20;2683:43;;;2605:126;;:::o;223:176:0:-;177:5;;287:12;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;-1:-1:-1;;;;;307:18:0;;;;;;:6;:18;;;;;;:25;;-1:-1:-1;;307:25:0;328:4;307:25;;;343:34;366:10;;307:18;343:34;;;-1:-1:-1;390:4:0;223:176;;;:::o;739:114:6:-;825:5;;:23;;;;;;-1:-1:-1;;;;;825:23:6;;;;;;;;;795:15;;825:5;;;;;:15;;:23;;;;;;;;;;;;;;;795:15;825:5;:23;;;5:2:-1;;;;30:1;27;20:12;5:2;825:23:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;825:23:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;825:23:6;;739:114;-1:-1:-1;;739:114:6:o;827:111:7:-;719:5;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;903:5;;884:25;;-1:-1:-1;;;;;903:5:7;;;;884:25;;903:5;;884:25;915:5;:18;;-1:-1:-1;;915:18:7;;;827:111::o;380:26:6:-;;;;;;;;;:::o;1358:58::-;719:5:7;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;1398:5:6;;;;;;;;;-1:-1:-1;;;;;1398:5:6;-1:-1:-1;;;;;1398:11:6;;:13;;;;;-1:-1:-1;;;1398:13:6;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;1486:108:6;177:5:0;;1547:4:6;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;1566:5:6;;:23;;;;;;-1:-1:-1;;;;;1566:23:6;;;;;;;;;:5;;;;;:13;;:23;;;;;;;;;;;;;;:5;;:23;;;5:2:-1;;;;30:1;27;20:12;238:20:7;;;-1:-1:-1;;;;;238:20:7;;:::o;1831:138:6:-;177:5:0;;1902:14:6;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;1931:5:6;;:33;;;;;;-1:-1:-1;;;;;1931:33:6;;;;;;;;;:5;;;;;:23;;:33;;;;;;;;;;;;;;:5;;:33;;;5:2:-1;;;;30:1;27;20:12;231:37:6;;;;;;;;;;;;;;;;;;;:::o;312:31::-;;;-1:-1:-1;;;;;312:31:6;;:::o;857:180::-;932:5;;:39;;;;;;947:10;932:39;;;;-1:-1:-1;;;;;932:39:6;;;;;;;;;;;;;;;920:4;;932:5;;;;;:14;;:39;;;;;;;;;;;;;;;920:4;932:5;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;932:39:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;932:39:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;982:33:6;;;;;;;;-1:-1:-1;;;;;982:33:6;;;991:10;;-1:-1:-1;;;;;;;;;;;982:33:6;;;;932:39;982:33;;;-1:-1:-1;1028:4:6;857:180;;;;:::o;1973:128::-;177:5:0;;2026:4:6;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;2046:5:6;;;;;;;;;-1:-1:-1;;;;;2046:5:6;-1:-1:-1;;;;;2046:13:6;;2066:9;2046:32;;;;;-1:-1:-1;;;2046:32:6;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2046:32:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2046:32:6;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2046:32:6;2038:41;;;;;;;;-1:-1:-1;2092:4:6;1973:128;:::o;1598:114::-;177:5:0;;1662:4:6;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;1681:5:6;;:26;;;;;;-1:-1:-1;;;;;1681:26:6;;;;;;;;;:5;;;;;:16;;:26;;;;;;;;;;;;;;:5;;:26;;;5:2:-1;;;;30:1;27;20:12;2335:174:6;719:5:7;;2428:4:6;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;510:7:6;;;;;;;502:16;;;;;;;;2440:5;;:24;;;;;;-1:-1:-1;;;;;2440:24:6;;;;;;;;;;;;;;;:5;;;;;:10;;:24;;;;;;;;;;;;;;:5;;:24;;;5:2:-1;;;;30:1;27;20:12;5:2;2440:24:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2440:24:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;2475:29:6;;;;;;;;-1:-1:-1;;;;;2475:29:6;;;;;;;;-1:-1:-1;;;;;;;;;;;2475:29:6;;;;2440:24;2475:29;;;2335:174;;;;;:::o;347:29::-;;;;;;;;;:::o;2946:293:11:-;3106:10;3044:4;3098:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3098:29:11;;;;;;;;;;:46;;3132:11;3098:46;:33;:46;:::i;:::-;3066:10;3058:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3058:29:11;;;;;;;;;;;;:87;;;3156:61;;;;;;3058:29;;3156:61;;;;;;;;;;;-1:-1:-1;3230:4:11;2946:293;;;;:::o;2336:153::-;-1:-1:-1;;;;;2459:15:11;;;2435:7;2459:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2336:153::o;2735:161:6:-;719:5:7;;2809:4:6;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;2821:5:6;:14;;-1:-1:-1;;2821:14:6;-1:-1:-1;;;;;2821:14:6;;;;;;;;;;;2846:28;;2867:5;;;2846:28;;-1:-1:-1;;2846:28:6;-1:-1:-1;2887:4:6;2735:161;;;:::o;2513:88::-;719:5:7;;2569:4:6;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;510:7:6;;;;;;;502:16;;;;;;;;2581:7;:15;;-1:-1:-1;;2581:15:6;;;2513:88;:::o;1100:103:7:-;719:5;;-1:-1:-1;;;;;719:5:7;705:10;:19;697:28;;;;;;1169:29;1188:9;1169:18;:29::i;:::-;1100:103;:::o;2200:118:6:-;177:5:0;;2269:4:6;;-1:-1:-1;;;;;177:5:0;163:10;:19;;:41;;-1:-1:-1;193:10:0;186:18;;;;:6;:18;;;;;;;;163:41;155:50;;;;;;;;2288:25:6;2304:8;2288:15;:25::i;:::-;2281:32;2200:118;-1:-1:-1;;2200:118:6:o;1042:110:9:-;1100:7;1122:6;;;;1115:14;;;;-1:-1:-1;1142:5:9;;;1042:110::o;1214:123::-;1293:5;;;1311:6;;;;1304:14;;;1338:171:7;-1:-1:-1;;;;;1408:23:7;;;;1400:32;;;;;;1464:5;;1443:38;;-1:-1:-1;;;;;1443:38:7;;;;1464:5;;1443:38;;1464:5;;1443:38;1487:5;:17;;-1:-1:-1;;1487:17:7;-1:-1:-1;;;;;1487:17:7;;;;;;;;;;1338:171::o

Swarm Source

bzzr://14c3d6935a6afa2003b7aeead208a88fc95aa5cabe806f38d2cf2ca229cc7d1e
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.